Notice: 函数 WP_Scripts::localize 的调用方法不正确$l10n 参数必须是一个数组。若要将任意数据传递给脚本,请改用 wp_add_inline_script() 函数。 请查阅调试 WordPress来获取更多信息。 (这个消息是在 5.7.0 版本添加的。) in /data/www/appblog/wp-includes/functions.php on line 6131

Prometheus + Grafana 使用 Node Exporter 监控主机

参考:https://songjiayang.gitbooks.io/prometheus/content/exporter/nodeexporter.html
官方下载:https://prometheus.io/download/
Grafana Dashboard:https://grafana.com/grafana/dashboards/8919

Node Exporter部署

# tar -zxf node_exporter-0.18.1.linux-amd64.tar.gz -C /usr/local/
# mv /usr/local/node_exporter-0.18.1.linux-amd64 /usr/local/node_exporter
# cd /usr/local/node_exporter/
# nohup ./node_exporter &
# firewall-cmd --permanent --add-port=9100/tcp
# firewall-cmd --reload

Prometheus配置

- job_name: linux
  static_configs:
    - targets: ['192.168.16.80:9100']
      labels:
        instance: node-80
        group: inner
    - targets: ['192.168.16.82:9100']
      labels:
        instance: node-82
        group: inner
    - targets: ['192.168.16.86:9100']
      labels:
        instance: node-86
        group: inner
    - targets: ['192.168.16.87:9100']
      labels:
        instance: node-87
        group: inner
    - targets: ['192.168.16.88:9100']
      labels:
        instance: node-88
        group: inner
上一篇 CentOS下部署Prometheus
下一篇 Prometheus + Grafana 使用 redis_exporter 监控 Redis