Browse Source

push gateway

master
gsd 3 weeks ago
parent
commit
7411a3739b
  1. 7
      pushgateway/check.sh
  2. 4
      pushgateway/docker-compose.yaml

7
pushgateway/check.sh

@ -1,8 +1,13 @@
#!/bin/sh
#http://<IP-адрес сервера pushgateway>:9091/metrics/job/<Тег для job>/instance/<Тег для instance>
#*/1 * * * * /bin/sh /services/NodeExporterRelay/pushgateway/check.sh
BASIC_U=
BASIC_P=
JOB=
INSTANCE=
SOURCE=http://localhost:9101/metrics
DEST=http://localhost:9100/metrics
DEST=http://localhost:9100/metrics/job/$JOB/instance/$INSTANCE
IWANNASLEEP=15
alias pushmetrics="curl -s \"${SOURCE}\" | curl -u \"${BASIC_U}:${BASIC_P}\" --data-binary @- \"${DEST}\" >> /dev/null"

4
pushgateway/docker-compose.yaml

@ -14,8 +14,8 @@ services:
container_name: p_gw_nginx
restart: unless-stopped
volumes:
- ./srv.conf:/etc/nginx/conf.d/srv.conf:ro
- ./.htpasswd:/etc/nginx/.htpasswd:ro
- $PWD/srv.conf:/etc/nginx/conf.d/srv.conf:ro
- $PWD/.htpasswd:/etc/nginx/.htpasswd:ro
ports:
- 9091:9091
deploy:

Loading…
Cancel
Save