91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Prometheus監控 Redis , redis-cli_exporter

發布時間:2020-06-19 13:38:33 來源:網絡 閱讀:2773 作者:霍帥兵 欄目:編程語言

用Prometheus監控Redis 的時候,發現redis_exporter不能對redis里面的隊列(list)長度進行監控,Google了一下,發現官網也沒有redis-cli_exporter。
索性就自己用Python寫了一個Rediscli_exporter.

#!/usr/bin/env python
#coding:utf-8
#Author: shuaibing.huo@gmail.com
import prometheus_client
import redis
from prometheus_client import Gauge
from flask import Response,Flask

app = Flask(__name__)
queue_len = Gauge("www_site_queue_len","the len of redis_queue")

@app.route("/metrics")
def redis_conn():
    pool = redis.ConnectionPool(host="xxxxxxxx.redis.rds.aliyuncs.com",port=6379,db=0,password="avavavav")
    conn = redis.Redis(connection_pool=pool)
    queue_len_data = conn.llen("www_site")
    queue_len.set(queue_len_data)
    return Response(prometheus_client.generate_latest(queue_len),mimetype="text/plain")

if __name__ == "__main__":
    app.run(host="0.0.0.0",port=9101)
                       **如果有幫到你的話,歡迎微信贊賞**

Prometheus監控 Redis , redis-cli_exporter

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

临颍县| 太保市| 安阳县| 进贤县| 嘉鱼县| 潮安县| 彭泽县| 郎溪县| 马边| 毕节市| 通山县| 辽阳县| 凤冈县| 胶南市| 鄂温| 洞口县| 洛南县| 石首市| 正安县| 邵武市| 潼南县| 根河市| 绥棱县| 龙岩市| 顺昌县| 洛宁县| 南平市| 湖北省| 平阴县| 高唐县| 濉溪县| 富裕县| 梨树县| 女性| 文安县| 高雄市| 洛川县| 锦屏县| 永兴县| 朝阳区| 西华县|