diff --git a/pushgateway/check.sh b/pushgateway/check.sh index 5831d1c..9b496c6 100644 --- a/pushgateway/check.sh +++ b/pushgateway/check.sh @@ -1,8 +1,13 @@ #!/bin/sh +#http://: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" diff --git a/pushgateway/docker-compose.yaml b/pushgateway/docker-compose.yaml index d2dc710..69eeb87 100644 --- a/pushgateway/docker-compose.yaml +++ b/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: