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 使用 elasticsearch_exporter 监控 ElasticSearch

Prometheus Exporters:https://prometheus.io/docs/instrumenting/exporters/
elasticsearch_exporter:https://github.com/justwatchcom/elasticsearch_exporter
Grafana Dashboard:https://grafana.com/grafana/dashboards/2322

创建 Elasticsearch Data Sources

No date field named @timestamp found

版本问题:Version改为7.0+即可

elasticsearch_exporter部署

# tar -zxf elasticsearch_exporter-1.1.0rc1.linux-amd64.tar.gz -C /usr/local/
# mv /usr/local/elasticsearch_exporter-1.1.0rc1.linux-amd64 /usr/local/elasticsearch_exporter
# cd /usr/local/elasticsearch_exporter/
# nohup ./elasticsearch_exporter --web.listen-address "0.0.0.0:9108" --es.uri http://192.168.165.239:9200 &
# nohup ./elasticsearch_exporter --web.listen-address "0.0.0.0:9108" --es.uri http://elastic:******@192.168.165.239:9200 &
# curl localhost:9108/metrics

Prometheus配置

- job_name: elasticsearch
  metrics_path: "/metrics"
  static_configs:
    - targets: ['192.168.165.239:9108']
      labels:
        instance: elasticsearch
        group: inner
上一篇 Prometheus + Grafana 使用 redis_exporter 监控 Redis
下一篇 Prometheus + Grafana 使用 mysqld_exporter 监控 MySQL