Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
docker-elk
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
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
Hiep Nguyen
docker-elk
Commits
29e8e84e
Unverified
Commit
29e8e84e
authored
Feb 07, 2018
by
Antoine Cotten
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update to 6.1.3
Closes #244
parent
bf25425f
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
8 deletions
+9
-8
.travis.yml
.travis.yml
+1
-1
README.md
README.md
+2
-2
Dockerfile
elasticsearch/Dockerfile
+1
-1
Dockerfile
kibana/Dockerfile
+1
-1
kibana.yml
kibana/config/kibana.yml
+1
-1
Dockerfile
logstash/Dockerfile
+1
-1
logstash.yml
logstash/config/logstash.yml
+2
-1
No files found.
.travis.yml
View file @
29e8e84e
...
...
@@ -31,4 +31,4 @@ script:
-
sleep 90
-
docker-compose logs
-
curl --retry 10 --retry-delay 5 -D- http://localhost:9200/ -u elastic:changeme
-
curl --retry 10 --retry-delay 5 -D- http://localhost:5601/api/status -u
kibana
:changeme
-
curl --retry 10 --retry-delay 5 -D- http://localhost:5601/api/status -u
elastic
:changeme
README.md
View file @
29e8e84e
# Docker ELK stack
[

](https://gitter.im/deviantony/docker-elk?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[

](https://github.com/deviantony/docker-elk/issues/212
)
[

](https://github.com/deviantony/docker-elk/issues/244
)
[

](https://travis-ci.org/deviantony/docker-elk)
Run the latest version of the ELK (Elasticsearch, Logstash, Kibana) stack with Docker and Docker Compose.
...
...
@@ -122,7 +122,7 @@ Create an index pattern via the Kibana API:
```
console
$
curl
-XPOST
-D-
'http://localhost:5601/api/saved_objects/index-pattern'
\
-H
'Content-Type: application/json'
\
-H
'kbn-version: 6.1.
0
'
\
-H
'kbn-version: 6.1.
3
'
\
-u
kibana:changeme
\
-d
'{"attributes":{"title":"logstash-*","timeFieldName":"@timestamp"}}'
```
...
...
elasticsearch/Dockerfile
View file @
29e8e84e
# https://github.com/elastic/elasticsearch-docker
FROM
docker.elastic.co/elasticsearch/elasticsearch-basic:6.1.
0
FROM
docker.elastic.co/elasticsearch/elasticsearch-basic:6.1.
3
# Add your elasticsearch plugins setup here
# Example: RUN elasticsearch-plugin install analysis-icu
kibana/Dockerfile
View file @
29e8e84e
# https://github.com/elastic/kibana-docker
FROM
docker.elastic.co/kibana/kibana-x-pack:6.1.
0
FROM
docker.elastic.co/kibana/kibana-x-pack:6.1.
3
# Add your kibana plugins setup here
# Example: RUN kibana-plugin install <name|url>
kibana/config/kibana.yml
View file @
29e8e84e
...
...
@@ -5,6 +5,6 @@
server.name
:
kibana
server.host
:
"
0"
elasticsearch.url
:
http://elasticsearch:9200
elasticsearch.username
:
kibana
elasticsearch.username
:
elastic
elasticsearch.password
:
changeme
xpack.monitoring.ui.container.elasticsearch.enabled
:
true
logstash/Dockerfile
View file @
29e8e84e
# https://github.com/elastic/logstash-docker
FROM
docker.elastic.co/logstash/logstash-x-pack:6.1.
0
FROM
docker.elastic.co/logstash/logstash-x-pack:6.1.
3
# Add your logstash plugins setup here
# Example: RUN logstash-plugin install logstash-filter-json
logstash/config/logstash.yml
View file @
29e8e84e
...
...
@@ -6,4 +6,5 @@ http.host: "0.0.0.0"
path.config
:
/usr/share/logstash/pipeline
xpack.monitoring.elasticsearch.url
:
http://elasticsearch:9200
xpack.monitoring.elasticsearch.username
:
logstash_system
xpack.monitoring.elasticsearch.password
:
changeme
xpack.monitoring.elasticsearch.password
:
changeme
# unset by default. see:
# https://www.elastic.co/guide/en/logstash/current/ls-security.html#ls-monitoring-user
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