diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..539916d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +pushgateway/.htpasswd \ No newline at end of file diff --git a/pushgateway/check.sh b/pushgateway/check.sh new file mode 100644 index 0000000..5831d1c --- /dev/null +++ b/pushgateway/check.sh @@ -0,0 +1,14 @@ +#!/bin/sh +BASIC_U= +BASIC_P= +SOURCE=http://localhost:9101/metrics +DEST=http://localhost:9100/metrics +IWANNASLEEP=15 + +alias pushmetrics="curl -s \"${SOURCE}\" | curl -u \"${BASIC_U}:${BASIC_P}\" --data-binary @- \"${DEST}\" >> /dev/null" + +pushmetrics +sleep $IWANNASLEEP +pushmetrics +sleep $IWANNASLEEP +pushmetrics diff --git a/pushgateway/docker-compose.yaml b/pushgateway/docker-compose.yaml new file mode 100644 index 0000000..d2dc710 --- /dev/null +++ b/pushgateway/docker-compose.yaml @@ -0,0 +1,25 @@ +#curl -s http://localhost:9100/metrics | curl --data-binary @- http://pushgateway.example.org:9091/metrics/job/some_job/instance/some_instance +services: + pushgateway: + image: docker.pblr-nyk.pro/prom/pushgateway:latest + container_name: p_gw + restart: unless-stopped + deploy: + resources: + limits: + cpus: "0.1" + memory: 128M + pushgateway_nginx: + image: docker.pblr-nyk.pro/nginx:1.27.4-alpine + container_name: p_gw_nginx + restart: unless-stopped + volumes: + - ./srv.conf:/etc/nginx/conf.d/srv.conf:ro + - ./.htpasswd:/etc/nginx/.htpasswd:ro + ports: + - 9091:9091 + deploy: + resources: + limits: + cpus: "0.1" + memory: 128M \ No newline at end of file diff --git a/pushgateway/srv.conf b/pushgateway/srv.conf new file mode 100644 index 0000000..9914f94 --- /dev/null +++ b/pushgateway/srv.conf @@ -0,0 +1,13 @@ +upstream pushgateway { + server p_gw:9091; +} + +server { + listen 0.0.0.0:9091; + server_name __; + location / { + auth_basic "Pushgateway server authentication"; + auth_basic_user_file /etc/nginx/.htpasswd; + proxy_pass http://pushgateway; + } +} \ No newline at end of file