溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何使用Python和Prometheus跟蹤天氣

發(fā)布時(shí)間:2021-10-26 18:07:08 來(lái)源:億速云 閱讀:133 作者:柒染 欄目:編程語(yǔ)言

如何使用Python和Prometheus跟蹤天氣,很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。

創(chuàng)建自定義 Prometheus 集成以跟蹤***的云端提供商:地球母親。

開(kāi)源監(jiān)控系統(tǒng) Prometheus 集成了跟蹤多種類型的時(shí)間序列數(shù)據(jù),但如果沒(méi)有集成你想要的數(shù)據(jù),那么很容易構(gòu)建一個(gè)。一個(gè)經(jīng)常使用的例子使用云端提供商的自定義集成,它使用提供商的 API 抓取特定的指標(biāo)。但是,在這個(gè)例子中,我們將與***云端提供商集成:地球。

幸運(yùn)的是,美國(guó)政府已經(jīng)測(cè)量了天氣并為集成提供了一個(gè)簡(jiǎn)單的 API。獲取紅帽總部下一個(gè)小時(shí)的天氣預(yù)報(bào)很簡(jiǎn)單。

import requestsHOURLY_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"]

現(xiàn)在我們已經(jīng)完成了與地球的集成,現(xiàn)在是確保 Prometheus 能夠理解我們想要內(nèi)容的時(shí)候了。我們可以使用 Prometheus Python 庫(kù)中的 gauge 創(chuàng)建一個(gè)注冊(cè)項(xiàng):紅帽總部的溫度。

from prometheus_client import CollectorRegistry, Gaugedef prometheus_temperature(num):    registry = CollectorRegistry()    g = Gauge("red_hat_temp", "Temperature at Red Hat HQ", registry=registry)    g.set(num)    return registry

***,我們需要以某種方式將它連接到 Prometheus。這有點(diǎn)依賴 Prometheus 的網(wǎng)絡(luò)拓?fù)洌菏?Prometheus 與我們的服務(wù)通信更容易,還是反向更容易。

***種是通常建議的情況,如果可能的話,我們需要構(gòu)建一個(gè)公開(kāi)注冊(cè)入口的 Web 服務(wù)器,并配置 Prometheus 收刮(scrape)它。

我們可以使用 Pyramid 構(gòu)建一個(gè)簡(jiǎn)單的 Web 服務(wù)器。

from pyramid.config import Configuratorfrom pyramid.response import Responsefrom prometheus_client import generate_latest, CONTENT_TYPE_LATESTdef metrics_web(request):    registry = prometheus_temperature(get_temperature())    return Response(generate_latest(registry),                               content_type=CONTENT_TYPE_LATEST)config = Configurator()config.add_route('metrics', '/metrics')config.add_view(metrics_web, route_name='metrics')app = config.make_wsgi_app()

這可以使用任何 Web 網(wǎng)關(guān)接口(WSGI)服務(wù)器運(yùn)行。例如,假設(shè)我們將代碼放在 earth.py 中,我們可以使用 python -m twisted web --wsgi earth.app 來(lái)運(yùn)行它。

或者,如果我們的代碼連接到 Prometheus 更容易,我們可以定期將其推送到 Prometheus 的推送網(wǎng)關(guān)。

import timefrom prometheus_client import push_to_gatewaydef push_temperature(url):    while True:        registry = prometheus_temperature(get_temperature())        push_to_gateway(url, "temperature collector", registry)        time.sleep(60*60)

這里的 URL 是推送網(wǎng)關(guān)的 URL。它通常以 :9091 結(jié)尾。

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI