Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
docker-elk
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
段孔乐
docker-elk
Commits
8f55c5a9
Unverified
Commit
8f55c5a9
authored
Dec 05, 2019
by
Antoine Cotten
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clarify usage of netcat commands
Closes #452
parent
7591ea2f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
README.md
README.md
+8
-1
No files found.
README.md
View file @
8f55c5a9
...
...
@@ -181,8 +181,15 @@ Give Kibana about a minute to initialize, then access the Kibana web UI by hitti
Now that the stack is running, you can go ahead and inject some log entries. The shipped Logstash configuration allows
you to send content via TCP:
```console
# Using BSD netcat (Debian, Ubuntu, MacOS system, ...)
$ cat /path/to/logfile.log | nc -q0 localhost 5000
```
```
console
$
nc localhost 5000 < /path/to/logfile.log
#
Using GNU netcat
(
CentOS, Fedora, MacOS Homebrew, ...
)
$
cat
/path/to/logfile.log | nc
-c
localhost 5000
```
You can also load the sample data provided by your Kibana installation.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment