问题标签 [prometheus-python-client]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
prometheus - 在普罗米修斯仪器的上下文中,我应该在更新指标值时使用所有普罗米修斯标签吗
我有一个普罗米修斯指标,其标签声明为
当我在受监控代码中发生错误的位置增加指标时,我可以将其用作:
或者
我的问题是我可以在增加指标时只使用一个标签吗?
prometheus-pushgateway - Prometheus 推送网关如何增加消息请求
我有一个用例,我们需要增加在 Nuclio 无服务器服务上收到的请求数。每次调用服务时都会重新创建 Pod。按照 Prometheus-client 库中的示例,我无法使用 Counter() 或 Gauge() 对象和 inc() 方法增加请求编号,这是我尝试过的代码。
我尝试了 push_to_gateway 和 pushadd_to_gateway 都导致 my_requests 的计数器值保持为 1。
问题 - 通过每次创建 Counter 对象,它会将增量值重置回 0,如果是这样,我们如何处理临时作业?任何代码示例都会有所帮助。