使用Python和Prometheus跟踪天气的使用方法

时间:2022-08-23 08:28:14

开源监控系统 prometheus 集成了跟踪多种类型的时间序列数据,但如果没有集成你想要的数据,那么很容易构建一个。一个经常使用的例子使用云端提供商的自定义集成,它使用提供商的 api 抓取特定的指标。

创建自定义 prometheus 集成以跟踪最大的云端提供商:地球母亲。

开源监控系统 prometheus 集成了跟踪多种类型的时间序列数据,但如果没有集成你想要的数据,那么很容易构建一个。一个经常使用的例子使用云端提供商的自定义集成,它使用提供商的 api 抓取特定的指标。但是,在这个例子中,我们将与最大云端提供商集成:地球。

幸运的是,美国*已经测量了天气并为集成提供了一个简单的 api。获取红帽总部下一个小时的天气预报很简单。

?
1
2
3
4
5
import requests
hourly_red_hat = "<https://api.weather.gov/gridpoints/rah/73,57/forecast/hourly>"
def get_temperature():
  result = requests.get(hourly_red_hat)
  return result.json()["properties"]["periods"][0]["temperature"]

现在我们已经完成了与地球的集成,现在是确保 prometheus 能够理解我们想要内容的时候了。我们可以使用 prometheus python 库中的 gauge 创建一个注册项:红帽总部的温度。

?
1
2
3
4
5
6
from prometheus_client import collectorregistry, gauge
def prometheus_temperature(num):
  registry = collectorregistry()
  g = gauge("red_hat_temp", "temperature at red hat hq", registry=registry)
  g.set(num)
  return registry

最后,我们需要以某种方式将它连接到 prometheus。这有点依赖 prometheus 的网络拓扑:是 prometheus 与我们的服务通信更容易,还是反向更容易。

第一种是通常建议的情况,如果可能的话,我们需要构建一个公开注册入口的 web 服务器,并配置 prometheus 收刮(scrape)它。

我们可以使用 pyramid 构建一个简单的 web 服务器。

这可以使用任何 web 网关接口(wsgi)服务器运行。例如,假设我们将代码放在 earth.py 中,我们可以使用 python -m twisted web --wsgi earth.app 来运行它。

或者,如果我们的代码连接到 prometheus 更容易,我们可以定期将其推送到 prometheus 的推送网关

?
1
2
3
4
5
6
7
import time
from prometheus_client import push_to_gateway
def push_temperature(url):
  while true:
    registry = prometheus_temperature(get_temperature())
    push_to_gateway(url, "temperature collector", registry)
    time.sleep(60*60)

这里的 url 是推送网关的 url。它通常以 :9091 结尾。

祝你构建自定义 prometheus 集成成功,以便跟踪一切!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://developer.51cto.com/art/201905/595900.htm