Ah right.  Because you had "probe" in the metric name I thought you were 
using blackbox_exporter.  That isn't going to help you here, because each 
probe only make one request.  To make 500 requests in 5 minutes, you would 
need to be scraping nearly two times per second!

It sounds like rather what you want to do is read your webserver log files 
and turn them into statistics.  You'll need to look at tools like mtail or 
grok_exporter to do that.

In order to answer "how many queries took more than 3 seconds to respond?" 
you will need to generate histogram buckets at whatever intervals are of 
interest, e.g.

http_request_duration_seconds_sum{le="0.5"}
http_request_duration_seconds_sum{le="1.0"}
http_request_duration_seconds_sum{le="3.0"}

-- 
You received this message because you are subscribed to the Google Groups 
"Prometheus Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/prometheus-users/e9a9bac6-e91e-4d39-a0a5-3a323abc3909%40googlegroups.com.

Reply via email to