使用 Python 和 Prometheus 跟蹤天氣
| 2019-05-03 13:16
建立自定義 Prometheus 整合以跟蹤最大的雲端提供商:地球母親。
開源監控系統 Prometheus 整合了跟蹤多種型別的時間序列資料,但如果沒有整合你想要的資料,那麼很容易構建一個。一個經常使用的例子使用雲端提供商的自定義整合,它使用提供商的 API 抓取特定的指標。但是,在這個例子中,我們將與最大雲端提供商整合:地球。
幸運的是,美國政府已經測量了天氣併為整合提供了一個簡單的 API。獲取紅帽總部下一個小時的天氣預報很簡單。
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 建立一個註冊項:紅帽總部的溫度。
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 伺服器。
from pyramid.config import Configurator
from pyramid.response import Response
from prometheus_client import generate_latest, CONTENT_TYPE_LATEST
def 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 閘道器介面(WSGI)伺服器執行。例如,假設我們將程式碼放在 earth.py
中,我們可以使用 python -m twisted web --wsgi earth.app
來執行它。
或者,如果我們的程式碼連線到 Prometheus 更容易,我們可以定期將其推送到 Prometheus 的推送閘道器。
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 整合成功,以便跟蹤一切!
via: https://opensource.com/article/19/4/weather-python-prometheus
作者:Moshe Zadka 選題:lujun9972 譯者:geekpi 校對:wxy
相關文章
- 使用和風天氣介面獲取天氣資訊
- SQL跟蹤工具和TKPROF使用SQL
- oracle跟蹤檔案和跟蹤事件(zt)Oracle事件
- 用 Python 和 OpenCV 檢測和跟蹤運動物件PythonOpenCV物件
- Oracle跟蹤事件和dumpOracle事件
- python天氣查詢Python
- Python 獲取當地未來五天天氣 天氣預報 獲取天氣Python
- git的跟蹤分支和遠端跟蹤分支學習筆記Git筆記
- Oracle 跟蹤全部使用者Oracle
- oracle 跟蹤其他使用者Oracle
- 跟蹤使用者的SQLSQL
- 過年想有人跟著回家?Python智慧化“天氣提醒”幫你搞定小姐姐Python
- [zt] oracle跟蹤檔案與跟蹤事件Oracle事件
- oracle跟蹤檔案與跟蹤事件(zt)Oracle事件
- sql_trace 和 events 跟蹤事件SQL事件
- 如何使用iPhone限制IP地址跟蹤iPhone
- 使用TKPROF檢視跟蹤檔案
- 使用 Tkprof 分析 ORACLE 跟蹤檔案Oracle
- Oracle 10046跟蹤的使用Oracle
- 啟用使用者程式跟蹤
- 幻影使用的反跟蹤技術
- 使用dtrace跟蹤oracle函式呼叫Oracle函式
- 使用Spring Cloud Sleuth和OpenTelemetry實現分散式跟蹤SpringCloud分散式
- 用雅虎天氣介面和AutoCompleteTextView開發天氣應用(1)TextView
- session跟蹤失效的問題和原因Session
- 轉:使用 Tkprof 分析 ORACLE 跟蹤檔案Oracle
- 使用sqltrace跟蹤session執行的sqlSQLSession
- 使用10046跟蹤sql語句SQL
- sqlnet跟蹤SQL
- ORACLE 跟蹤工具Oracle
- iOS仿照Yahoo天氣:油條天氣iOS
- Spring Cloud Sleuth 和 Zipkin 進行分散式跟蹤使用指南SpringCloud分散式
- 使用WebService獲取天氣實況Web
- 如何分配和跟蹤專案工作量?
- Ftrace使用指南及跟蹤系統呼叫
- oracle 跟蹤當前使用者會話Oracle會話
- 基於行跟蹤的ROWDEPENDENCIES實現資訊變化跟蹤
- 【Longkin】ASP.NET應用程式跟蹤---(一)跟蹤頁面ASP.NET