You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# set proxy_pass argument as variable, this makes sure nginx will still start even if this hostname is unresolvable due to monitoring profile being disabled
331
+
set $node_exporter http://node-exporter:9100;
332
+
proxy_pass $node_exporter;
333
+
}
334
+
location /postgresql-exporter {
335
+
include http.headers;
336
+
include hsts_h3.headers;
337
+
auth_basic "Please enter your monitoring username and password";
# set proxy_pass argument as variable, this makes sure nginx will still start even if this hostname is unresolvable due to monitoring profile being disabled
340
+
set $postgresql_exporter http://postgresql-exporter:9187/metrics;
341
+
proxy_pass $postgresql_exporter;
342
+
}
343
+
location /redis-exporter {
344
+
include http.headers;
345
+
include hsts_h3.headers;
346
+
auth_basic "Please enter your monitoring username and password";
# set proxy_pass argument as variable, this makes sure nginx will still start even if this hostname is unresolvable due to monitoring profile being disabled
349
+
set $redis_exporter http://redis-exporter:9121/metrics;
350
+
proxy_pass $redis_exporter;
351
+
}
352
+
location /rabbitmq-exporter {
353
+
include http.headers;
354
+
include hsts_h3.headers;
355
+
auth_basic "Please enter your monitoring username and password";
# set proxy_pass argument as variable, this makes sure nginx will still start even if this hostname is unresolvable due to monitoring profile being disabled
358
+
set $rabbitmq_exporter http://rabbitmq:15692/metrics;
359
+
proxy_pass $rabbitmq_exporter;
360
+
}
361
+
location /statsd-exporter {
362
+
include http.headers;
363
+
include hsts_h3.headers;
364
+
auth_basic "Please enter your monitoring username and password";
# set proxy_pass argument as variable, this makes sure nginx will still start even if this hostname is unresolvable due to monitoring profile being disabled
367
+
set $statsd_exporter http://statsd-exporter:9102/metrics;
368
+
proxy_pass $statsd_exporter;
369
+
}
370
+
location /celery-exporter {
371
+
include http.headers;
372
+
include hsts_h3.headers;
373
+
auth_basic "Please enter your monitoring username and password";
# set proxy_pass argument as variable, this makes sure nginx will still start even if this hostname is unresolvable due to monitoring profile being disabled
376
+
set $celery_exporter http://celery-exporter:9808/metrics;
377
+
proxy_pass $celery_exporter;
378
+
}
379
+
location /docker-stats-exporter {
380
+
include http.headers;
381
+
include hsts_h3.headers;
382
+
auth_basic "Please enter your monitoring username and password";
# set proxy_pass argument as variable, this makes sure nginx will still start even if this hostname is unresolvable due to monitoring profile being disabled
385
+
set $docker_stats_exporter http://docker_stats_exporter:9338/metrics;
386
+
proxy_pass $docker_stats_exporter;
387
+
}
388
+
location /nginx-logs-exporter {
389
+
include http.headers;
390
+
include hsts_h3.headers;
391
+
auth_basic "Please enter your monitoring username and password";
# set proxy_pass argument as variable, this makes sure nginx will still start even if this hostname is unresolvable due to monitoring profile being disabled
394
+
set $nginx_logs_exporter http://nginx_logs_exporter:4040/metrics;
395
+
proxy_pass $nginx_logs_exporter;
396
+
}
397
+
324
398
# routinator proxy for internal use on multi instance setups
0 commit comments