From 7411a3739bc261640dacb29fd877b5e9e8d68e0a Mon Sep 17 00:00:00 2001 From: gsd Date: Tue, 11 Mar 2025 23:57:26 +0300 Subject: [PATCH] push gateway --- pushgateway/check.sh | 7 ++++++- pushgateway/docker-compose.yaml | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) 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: