摘要:
docker安装google/cadvisor [root@VM-24-9-centos ~]# docker pull google/cadvisor Using default tag: latest latest: Pulling from google/cadvisor ff3a5c916c 阅读全文
摘要:
Grafana官网 下载Grafana [root@VM-24-9-centos Prometheus_server]# wget https://dl.grafana.com/oss/release/grafana-9.3.2.linux-amd64.tar.gz 安装Grafana [root@ 阅读全文
摘要:
Node_exporter是可以在* Nix和Linux系统上运行的计算机度量标准的导出器。 Node_exporter 主要用于暴露 metrics 给 Prometheus,其中 metrics 包括:cpu 的负载,内存的使用情况,网络等。 配置文件 修改主配置文件 [root@VM-24-9 阅读全文
摘要:
全局配置注解 global: # 默认情况抓取目标的频率,默认1分钟 [ scrape_interval: <duration> | default = 1m ] # 抓取请求超时的时间,默认10S [ scrape_timeout: <duration> | default = 10s ] # 评 阅读全文
摘要:
一般一个job作为一个业务服务,它下面的监控的机器/节点都是这个服务的节点,为了方便管理,我们可以按照job划分,为每个job创建一个子配置文件,这样方便管理 配置文件 # my global config global: scrape_interval: 15s # #每15s采集一次数据 eva 阅读全文
摘要:
Label Lable是为了方便管理及查询监控目标,在后续写promtheus查询语法的时候需要使用标签作为查询条件 配置文件 # A scrape configuration containing exactly one endpoint to scrape: # Here it's Promet 阅读全文
摘要:
官网 https://prometheus.io/docs/introduction/overview/ 下载Prometheus https://prometheus.io/download/ 安装Prometheus 配置文件 # my global config global: scrape_ 阅读全文
摘要:
CGO是什么 cgo 是在 Android 和 iOS 上运行 Go 程序的关键,它允许GO程序与C语言库相互操作 未用到CGO的时候,建议编译的时候禁用CGO,比如编译ARM架构的时候就需要打开该选项,该选项默认情况下为1 编译为exe可执行文件 go env -w CGO_ENABLED=0 # 阅读全文