mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-08 04:04:42 +02:00
add logstash
This commit is contained in:
parent
73aab34fe8
commit
3bd949af5d
@ -75,6 +75,7 @@ A collection of delicious docker recipes.
|
|||||||
- [x] h2o
|
- [x] h2o
|
||||||
- [x] httpbin :+1:
|
- [x] httpbin :+1:
|
||||||
- [x] influxdb
|
- [x] influxdb
|
||||||
|
- [x] logstash
|
||||||
- [x] luigi
|
- [x] luigi
|
||||||
- [x] mariadb
|
- [x] mariadb
|
||||||
- [x] mariadb-arm
|
- [x] mariadb-arm
|
||||||
|
81
logstash/README.md
Normal file
81
logstash/README.md
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
logstash
|
||||||
|
========
|
||||||
|
|
||||||
|
## How It Works
|
||||||
|
|
||||||
|
![](https://www.elastic.co/assets/blt203883a0718cdc5a/filebeat-diagram.png)
|
||||||
|
|
||||||
|
```
|
||||||
|
log files ---> filebeat agent --+
|
||||||
|
... |
|
||||||
|
log files ---> filebeat agent --+> logstash container ---> aliyun™ log service
|
||||||
|
... |
|
||||||
|
log files ---> filebeat agent --+
|
||||||
|
```
|
||||||
|
|
||||||
|
## docker-compose.yml
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
logstash:
|
||||||
|
image: docker.elastic.co/logstash/logstash:6.1.1
|
||||||
|
ports:
|
||||||
|
- "5044:5044"
|
||||||
|
- "9600:9600"
|
||||||
|
volumes:
|
||||||
|
- ./data/logstash.yml:/usr/share/logstash/config/logstash.yml
|
||||||
|
- ./data/pipeline:/usr/share/logstash/pipeline
|
||||||
|
environment:
|
||||||
|
LS_JAVA_OPTS: "-Xms1g -Xmx1g"
|
||||||
|
restart: always
|
||||||
|
```
|
||||||
|
|
||||||
|
## Up and Running
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ docker-compose up -d
|
||||||
|
$ docker-compose exec logstash bash
|
||||||
|
>>> logstash-plugin install logstash-output-logservice
|
||||||
|
Validating logstash-output-logservice
|
||||||
|
Installing logstash-output-logservice
|
||||||
|
Installation successful
|
||||||
|
>>> logstash-plugin list
|
||||||
|
logstash-output-logservice
|
||||||
|
>>> exit
|
||||||
|
$ vim data/pipeline/logstash.conf
|
||||||
|
$ docker-compose restart
|
||||||
|
$ docker-compose logs -f
|
||||||
|
$ curl http://localhost:9600
|
||||||
|
{
|
||||||
|
"host": "easypi",
|
||||||
|
"version": "6.1.1",
|
||||||
|
"http_address": "0.0.0.0:9600",
|
||||||
|
"id": "c7c4f9d7-5621-4375-bfc9-96abb0f1b4c3",
|
||||||
|
"name": "6848fe4c533f",
|
||||||
|
"build_date": "2017-12-17T21:51:17+00:00",
|
||||||
|
"build_sha": "d46ca0de31662d29b8c5c94d4162e4c760d3f8fb",
|
||||||
|
"build_snapshot": false
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Setup Filebeat
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# https://www.elastic.co/downloads/beats/filebeat
|
||||||
|
$ wget https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-6.1.1-amd64.deb
|
||||||
|
$ dpkg -i filebeat-6.1.1-amd64.deb
|
||||||
|
$ vim /etc/filebeat/filebeat.yml
|
||||||
|
#output.elasticsearch:
|
||||||
|
# Array of hosts to connect to.
|
||||||
|
#hosts: ["localhost:9200"]
|
||||||
|
output.logstash:
|
||||||
|
# The Logstash hosts
|
||||||
|
hosts: ["1.2.3.4:5044"]
|
||||||
|
$ systemctl start filebeat
|
||||||
|
$ systemctl enable filebeat
|
||||||
|
```
|
||||||
|
|
||||||
|
## References
|
||||||
|
|
||||||
|
- https://www.elastic.co/guide/en/logstash/current/getting-started-with-logstash.html
|
||||||
|
- https://www.elastic.co/guide/en/beats/filebeat/current/filebeat-getting-started.html
|
||||||
|
- https://www.alibabacloud.com/help/zh/doc-detail/28984.htm
|
6
logstash/data/logstash.yml
Normal file
6
logstash/data/logstash.yml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
http.host: "0.0.0.0"
|
||||||
|
path.config: /usr/share/logstash/pipeline
|
||||||
|
xpack.monitoring.enabled: false
|
||||||
|
#xpack.monitoring.elasticsearch.url: http://elasticsearch:9200
|
||||||
|
#xpack.monitoring.elasticsearch.username: logstash_system
|
||||||
|
#xpack.monitoring.elasticsearch.password: changeme
|
21
logstash/data/pipeline/logstash.conf
Normal file
21
logstash/data/pipeline/logstash.conf
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
input {
|
||||||
|
beats {
|
||||||
|
port => 5044
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
output {
|
||||||
|
stdout {
|
||||||
|
codec => rubydebug
|
||||||
|
}
|
||||||
|
# logservice {
|
||||||
|
# endpoint => "cn-shanghai.log.aliyuncs.com"
|
||||||
|
# project => "logging"
|
||||||
|
# logstore => "logstore"
|
||||||
|
# source => "default"
|
||||||
|
# topic => "default"
|
||||||
|
# access_key_id => "XXXXXXXXXXXXXXXX"
|
||||||
|
# access_key_secret => "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
|
||||||
|
# max_send_retry => 3
|
||||||
|
# }
|
||||||
|
}
|
11
logstash/docker-compose.yml
Normal file
11
logstash/docker-compose.yml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
logstash:
|
||||||
|
image: docker.elastic.co/logstash/logstash:6.1.1
|
||||||
|
ports:
|
||||||
|
- "5044:5044"
|
||||||
|
- "9600:9600"
|
||||||
|
volumes:
|
||||||
|
- ./data/logstash.yml:/usr/share/logstash/config/logstash.yml
|
||||||
|
- ./data/pipeline:/usr/share/logstash/pipeline
|
||||||
|
environment:
|
||||||
|
LS_JAVA_OPTS: "-Xms1g -Xmx1g"
|
||||||
|
restart: always
|
Loading…
Reference in New Issue
Block a user