feat(prometheus): add prometheus monitoring
This commit is contained in:
parent
c072dde506
commit
ba86a4cb2a
3 changed files with 24 additions and 0 deletions
|
@ -203,6 +203,7 @@ that I intend to add to this repository. It is still growing, and I welcome
|
|||
- [ ] [Pocket ID](https://github.com/stonith404/pocket-id)
|
||||
- [ ] [Pod Arcade](https://www.pod-arcade.com/)
|
||||
- [ ] [Postiz](https://postiz.com/)
|
||||
- [x] [Prometheus](https://prometheus.io)
|
||||
- [x] [protonmail-bridge-docker](https://github.com/shenxn/protonmail-bridge-docker)
|
||||
- [x] [Prowlarr](https://prowlarr.com)
|
||||
- [x] [qbit_manage](https://github.com/StuffAnThings/qbit_manage)
|
||||
|
|
3
quadlets/prometheus/data.volume
Normal file
3
quadlets/prometheus/data.volume
Normal file
|
@ -0,0 +1,3 @@
|
|||
[Volume]
|
||||
VolumeName=prometheus-data
|
||||
|
20
quadlets/prometheus/prometheus.container
Normal file
20
quadlets/prometheus/prometheus.container
Normal file
|
@ -0,0 +1,20 @@
|
|||
[Unit]
|
||||
Description=Prometheus monitoring
|
||||
|
||||
[Service]
|
||||
Restart=on-failure
|
||||
TimeoutStartSec=900
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
||||
|
||||
[Container]
|
||||
Image=docker.io/prom/prometheus
|
||||
ContainerName=prometheus
|
||||
|
||||
HostName=prometheus
|
||||
PublishPort=9090:9090
|
||||
|
||||
Volume=prometheus-data:/prometheus
|
||||
Volume=./prometheus.yml:/etc/prometheus/prometheus.yml
|
||||
|
Loading…
Add table
Reference in a new issue