Prometheus only scrapes one pod
问题 I'm using Prometheus to scrape metrics from my pods. The application I'm interested in is replicated a couple of times with one service providing access. Prometheus uses this service to scrape the metrics. In my app the metrics are setup as follows: import * as Prometheus from 'prom-client'; const httpRequestDurationMicroseconds = new Prometheus.Histogram({ name: 'transaction_amounts', help: 'Amount', labelNames: ['amount'], buckets: [0, 5, 15, 50, 100, 200, 300, 400, 500, 10000], }); const