https://github.com/sky-uk/fluentd-docker
Fluentd docker image with plugins : prometheus, rewrite-tag and elasticsearch
https://github.com/sky-uk/fluentd-docker
Last synced: 6 months ago
JSON representation
Fluentd docker image with plugins : prometheus, rewrite-tag and elasticsearch
- Host: GitHub
- URL: https://github.com/sky-uk/fluentd-docker
- Owner: sky-uk
- License: bsd-3-clause
- Created: 2018-06-18T15:40:54.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-11-05T16:32:49.000Z (over 6 years ago)
- Last Synced: 2024-06-20T16:46:06.336Z (almost 2 years ago)
- Language: Go
- Size: 31.3 KB
- Stars: 1
- Watchers: 28
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Fluentd-docker
Fluentd-docker is a project to build a custom docker image containing fluentd and several plugins.
Fluentd image with plugin installed:
- https://github.com/fluent/fluent-plugin-prometheus
- https://github.com/fluent/fluent-plugin-rewrite-tag-filter
- https://github.com/uken/fluent-plugin-elasticsearch
This image is base on https://hub.docker.com/r/fluent/fluentd/.
You can define your own config by mounting your fluentd config :
`docker run -ti -v $PWD/fluent.conf:/fluentd.conf -e FLUENTD_CONF=yours.conf`
# Release
To release a new docker image on docker hub https://hub.docker.com/r/skycirrus/fluentd-docker/, we need to create a tag on master:
```
git checkout master
git tag v0.0.x
git push origin v0.0.x
```