真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何使用Python和Prometheus跟蹤天氣

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

成都創(chuàng)新互聯(lián)主營武宣網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,重慶APP開發(fā),武宣h5成都小程序開發(fā)搭建,武宣網(wǎng)站營銷推廣歡迎武宣等地區(qū)企業(yè)咨詢

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

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

幸運的是,美國政府已經(jīng)測量了天氣并為集成提供了一個簡單的 API。獲取紅帽總部下一個小時的天氣預(yù)報很簡單。

import requestsHOURLY_RED_HAT = ""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)容的時候了。我們可以使用 Prometheus Python 庫中的 gauge 創(chuà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。這有點依賴 Prometheus 的網(wǎng)絡(luò)拓撲:是 Prometheus 與我們的服務(wù)通信更容易,還是反向更容易。

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

我們可以使用 Pyramid 構(gòu)建一個簡單的 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ù)器運行。例如,假設(shè)我們將代碼放在 earth.py 中,我們可以使用 python -m twisted web --wsgi earth.app 來運行它。

或者,如果我們的代碼連接到 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)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)的支持。


新聞標題:如何使用Python和Prometheus跟蹤天氣
網(wǎng)站地址:http://weahome.cn/article/pegdpo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部