摘要:
第一次安装以后 添加upstream_check补丁 cd /home/appadmin/soft/openresty-1.13.6.2/bundle/nginx-1.13.6 patch -p0</home/appadmin/soft/nginx_upstream_check_module-mas 阅读全文
摘要:
import requests from prometheus_client import Gauge,Counter, generate_latest from prometheus_client.core import CollectorRegistry from flask import Re 阅读全文
摘要:
安装参考连接:https://blog.csdn.net/Empty_city_dreams/article/details/87912970 安装好以后powerdns配置详解:https://blog.ityuan.com/1305 彩色版pdns: https://wiki2.xbits.ne 阅读全文
摘要:
在grafana中prometheus作为数据源时,变量和查询语句如何编写 grafana中定义变量 例1 Query: netdata_apps_cpu_system_percentage_average Regex: /.*,group="(.*)",host/ table表格中的查询语句 10 阅读全文
摘要:
https://blog.csdn.net/lihao21/article/details/106988390/ 阅读全文
摘要:
maven常用命令参数 1,maven 本地默认的仓库地址 像常用的公共库common,执行mvn install 以后,就会安装到下面的目录中 cd ~/.m2/repository/com/wonder/server/ 2, mvn clean 递归删除上次打包时生成的target目录,此目录下 阅读全文
只有注册用户登录后才能阅读该文。 阅读全文
摘要:
from flask import Flask, render_template, jsonify, request # import flask import requests import json import config import paramiko from functools imp 阅读全文
摘要:
''' def decorator(f1): def f2(): ####内部的这个函数就是包裹函数,也就是装饰器函数 #### return f2 ''' def log(func): def wrapper(): print('call %s():' % func.__name__) # pri 阅读全文