【发布时间】:2020-11-08 01:01:36
【问题描述】:
我正在尝试使用 prometheus 进行探索,而无需在目标服务器中安装导出器(在 Prometheus 服务器之外)
所以这个想法是 Prometheus 将监视某个应用程序的 SOAP API,其中需要在请求参数中传递一些有效负载。
据我了解,prometheus 抓取以下细节如下
promhttp_metric_handler_requests_total{code="200"} 7096
promhttp_metric_handler_requests_total{code="500"} 0
promhttp_metric_handler_requests_total{code="503"} 0
我有什么方法可以监控该特定 API 的运行状况。 我希望监控来自 API 的响应代码及其延迟。
寻找想法和建议
【问题讨论】:
标签: prometheus prometheus-blackbox-exporter