暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

Elasticsearch之Metricbeat

运维技术经验分享 2020-12-11
1181

没有合格的黑夜,也就无所谓真正的黎明。





Metricbeat+Filebeats 基本监控机器运行一举一动。



01



简介




Metricbeat是一种轻量级的托运人,您可以将其安装在服务器上,以定期从操作系统和服务器上运行的服务收集指标。Metricbeat会收集它收集的度量标准和统计信息,并将其运送到您指定的输出,例如Elasticsearch或LogstashMetricbeat是一种轻量级的托运人,您可以将其安装在服务器上,以定期从操作系统和服务器上运行的服务收集指标。Metricbeat会收集它收集的度量标准和统计信息,并将其运送到您指定的输出,例如Elasticsearch或Logstash。

Metricbeat通过从服务器上运行的系统和服务收集指标来帮助您监视服务器,例如:

      • Apache

      • HAPorxy

      • MongoDB

      • MySQL

      • Nginx

      • PostgreSQL

      • Redis

      • System

      • Zookerper



02




安装



Windows:

#浏览器下载
https://artifacts.elastic.co/downloads/beats/metricbeat/metricbeat-7.3.0-windows-x86_64.zip
#解压后存放在c:\Program Files\并把解压出来的目录名字重命名为Metricbeat,如下
c:\Program Files\Metricbeat
#进入目录
cd C:\Program Files\Metricbeat
#注册系统服务
powershell -c "Get-Location"
powershell -c ".\install-service-metricbeat.ps1"
#开启监控模块
powershell -c ".\metricbeat.exe modules enable windows"
#关闭监控模块
powershell -c ".\metricbeat.exe modules disable windows"
#启动系统服务
timeout /T 10
powershell -c "Start-Service metricbeat"
复制


Linux:

wget https://artifacts.elastic.co/downloads/beats/metricbeat/metricbeat-7.3.0-linux-x86_64.tar.gz
tar -xf metricbeat-7.3.0-linux-x86_64.tar.gz
mv metricbeat-7.3.0-linux-x86_64 metricbeat
复制


#配置
metricbeat.config.modules:
path: ${path.config}/modules.d/*.yml
reload.enabled: false

setup.template.settings:
index.number_of_shards: 1
index.codec: best_compression
setup.kibana:
host: "http://10.0.0.1:5601"
output.elasticsearch:
hosts: ["http://10.0.0.2:80"]
processors:
- add_host_metadata:
netinfo.enabled : true
- add_cloud_metadata: ~
复制


#开启仪表盘
./metricbeat setup --dashboards
#开启监控模块
./metricbeat modules enable system mysql redis nginx php_fpm
复制


#支持监控的模块(disabled是没开启的模块)
aerospike.yml.disabled
beat.yml.disabled
coredns.yml.disabled
dropwizard.yml.disabled
etcd.yml.disabled
http.yml.disabled
kibana.yml.disabled
logstash.yml.disabled
munin.yml.disabled
oracle.yml.disabled
rabbitmq.yml.disabled
uwsgi.yml.disabled
apache.yml.disabled
ceph.yml.disabled
couchbase.yml.disabled
elasticsearch-xpack.yml.disabled
golang.yml.disabled
jolokia.yml.disabled
kubernetes.yml.disabled
memcached.yml.disabled
mysql.yml
php_fpm.yml
redis.yml
vsphere.yml.disabled
aws.yml.disabled
cockroachdb.yml.disabled
couchdb.yml.disabled
elasticsearch.yml.disabled
graphite.yml.disabled
kafka.yml.disabled
kvm.yml.disabled
mongodb.yml.disabled
nats.yml.disabled
postgresql.yml.disabled
system.yml
windows.yml.disabled
beat-xpack.yml.disabled
consul.yml.disabled
docker.yml.disabled
envoyproxy.yml.disabled
haproxy.yml.disabled
kibana-xpack.yml.disabled
logstash-xpack.yml.disabled
mssql.yml.disabled
nginx.yml
prometheus.yml.disabled
traefik.yml.disabled
zookeeper.yml.disabled
复制

system.yml



# Module: system
# Docs: https://www.elastic.co/guide/en/beats/metricbeat/7.3/metricbeat-module-system.html


- module: system
period: 10s
metricsets:
- cpu
- load
- memory
- network
- process
- process_summary
- socket_summary
- entropy
- core
- diskio
#- socket
process.include_top_n:
by_cpu: 5 # include top 5 processes by CPU
by_memory: 5 # include top 5 processes by memory


- module: system
period: 10s
metricsets:
- filesystem
- fsstat
processors:
- drop_event.when.regexp:
system.filesystem.mount_point: '^/(sys|cgroup|proc|dev|etc|host|lib)($|/)'


- module: system
period: 15m
metricsets:
- uptime


#- module: system
# period: 5m
# metricsets:
# - raid
# raid.mount_point: '/'
复制

nginx.yml

# Module: nginx
# Docs: https://www.elastic.co/guide/en/beats/metricbeat/7.3/metricbeat-module-nginx.html


- module: nginx
#metricsets:
# - stubstatus
period: 10s


# Nginx hosts
hosts: ["http://127.0.0.1:9080"]


# Path to server status. Default server-status
server_status_path: "status"


#username: "user"
#password: "secret"
复制

mysql.yml

# Module: mysql
# Docs: https://www.elastic.co/guide/en/beats/metricbeat/7.3/metricbeat-module-mysql.html


- module: mysql
#metricsets:
# - status
# - galera_status
period: 10s


# Host DSN should be defined as "user:pass@tcp(127.0.0.1:3306)/"
# The username and password can either be set in the DSN or using the username
# and password config options. Those specified in the DSN take precedence.
hosts: ["mysql_exporter:mysql_exporter_2020@tcp(localhost:3306)/"]
# Username of hosts. Empty by default.
#username: root


# Password of hosts. Empty by default.
  #password: secret
复制

 redis.yml

[root@Lan-Kvm-20058-GuangSql modules.d]# vim redis.yml.disabled 


# Module: redis
# Docs: https://www.elastic.co/guide/en/beats/metricbeat/7.3/metricbeat-module-redis.html


- module: redis
#metricsets:
# - info
# - keyspace
period: 10s


# Redis hosts
hosts: ["127.0.0.1:6379"]


# Network type to be used for redis connection. Default: tcp
#network: tcp


# Max number of concurrent connections. Default: 10
#maxconn: 10


# Redis AUTH password. Empty by default.
  #password: foobared
复制

php_fpm.yml

# Module: php_fpm
# Docs: https://www.elastic.co/guide/en/beats/metricbeat/7.3/metricbeat-module-php_fpm.html


- module: php_fpm
#metricsets:
# - pool
# - process
period: 10s
hosts: ["127.0.0.1:9080"]
status_path: "/dalan-status"
#username: "user"
#password: "secret
复制
#配置系统服务化
[Unit]
Description=Node Exporter
Wants=network-online.target
After=network-online.target

[Service]
User=root
ExecStart=/metricbeat/metricbeat --path.config /metricbeat

[Install]
WantedBy=default.target
复制


#启动
systemctl daemon-reload
systemctl start metricbeat
复制





文章转载自运维技术经验分享,如果涉嫌侵权,请发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论