用Prometheus監(jiān)控redis 的時候,發(fā)現(xiàn)redis_exporter不能對redis里面的隊列(list)長度進行監(jiān)控,Google了一下,發(fā)現(xiàn)官網(wǎng)也沒有redis-cli_exporter。
索性就自己用Python寫了一個Rediscli_exporter.
莆田ssl適用于網(wǎng)站、小程序/APP、API接口等需要進行數(shù)據(jù)傳輸應用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:028-86922220(備注:SSL證書合作)期待與您的合作!
#!/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)
**如果有幫到你的話,歡迎微信贊賞**