feat(graphite): add Graphite
This commit is contained in:
parent
6d9e428987
commit
3cc8919e6d
5 changed files with 37 additions and 1 deletions
|
@ -178,7 +178,7 @@ that I intend to add to this repository. It is still growing, and I welcome
|
|||
- [x] [Glances](https://nicolargo.github.io/glances/)
|
||||
- [x] [glueforward](https://github.com/GeoffreyCoulaud/glueforward)
|
||||
- [x] [gluetun](https://github.com/qdm12/gluetun)
|
||||
- [ ] [Graphite](https://graphiteapp.org/)
|
||||
- [x] [Graphite](https://graphiteapp.org/)
|
||||
- [x] [Graylog](https://graylog.org)
|
||||
- [x] [Healthchecks](https://healthchecks.io/)
|
||||
- [x] [hoarder](https://hoarder.app/)
|
||||
|
|
26
quadlets/graphite/graphite.container
Normal file
26
quadlets/graphite/graphite.container
Normal file
|
@ -0,0 +1,26 @@
|
|||
[Unit]
|
||||
Description=Graphite monitoring
|
||||
|
||||
[Service]
|
||||
Restart=on-failure
|
||||
TimeoutStartSec=900
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
||||
|
||||
[Container]
|
||||
Image=docker.io/graphiteapp/graphite-statsd
|
||||
ContainerName=graphite
|
||||
AutoUpdate=registry
|
||||
|
||||
Network=graphite.network
|
||||
HostName=graphite
|
||||
PublishPort=80:80
|
||||
PublishPort=2003-2004:2003-2004
|
||||
PublishPort=2023-2024:2023-2024
|
||||
PublishPort=8125:8125/udp
|
||||
PublishPort=8125:8125
|
||||
|
||||
Volume=graphite-conf:/opt/graphite/conf
|
||||
|
||||
EnvironmentFile=graphite.env
|
1
quadlets/graphite/graphite.env
Normal file
1
quadlets/graphite/graphite.env
Normal file
|
@ -0,0 +1 @@
|
|||
EXAMPLE=value
|
6
quadlets/graphite/graphite.network
Normal file
6
quadlets/graphite/graphite.network
Normal file
|
@ -0,0 +1,6 @@
|
|||
[Unit]
|
||||
Description=Graphite network
|
||||
|
||||
[Network]
|
||||
NetworkName=graphite
|
||||
|
3
quadlets/graphite/graphite.volume
Normal file
3
quadlets/graphite/graphite.volume
Normal file
|
@ -0,0 +1,3 @@
|
|||
[Volume]
|
||||
VolumeName=graphite-conf
|
||||
|
Loading…
Add table
Reference in a new issue