Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stellar-deprecated/docker-heka
DEPRECATED
https://github.com/stellar-deprecated/docker-heka
Last synced: about 1 month ago
JSON representation
DEPRECATED
- Host: GitHub
- URL: https://github.com/stellar-deprecated/docker-heka
- Owner: stellar-deprecated
- License: apache-2.0
- Archived: true
- Created: 2015-06-05T04:21:16.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-25T20:58:09.000Z (over 9 years ago)
- Last Synced: 2024-08-02T12:51:00.691Z (4 months ago)
- Language: Shell
- Homepage: http://hekad.readthedocs.org/
- Size: 143 KB
- Stars: 1
- Watchers: 8
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-starred - stellar-deprecated/docker-heka - DEPRECATED (others)
README
# docker-heka
Our simple heka container.
## Usage
The way to run this is to have your app container generate all the necesary config as a /heka volume.
Then you run this container with something like the following (assuming the container to be monitored is `scc-node1`:
```console
$ docker run --name scc-node1-heka \
--net container:scc-node1 \
--volumes-from scc-node1 \
-d stellar/heka
```This will start a heka process using `/heka/hekad.toml` from the app container's exported volume, as well as the same networking stack as the container. The allows the app and hekad to communicate with eachother freely.
Any logs that need to be monitored will also need to be exported as volumes from the app container so that the heka container can see them.