You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JSON format is matching with the Metricbeat version stored in ELKMonitoringVersion
Should not be changed until metraixbeat is tested for different ELK versions
"ELKMonitoringVersion": "7.10.1"
JSON format is matching with the Metricbeat version stored in ECSVersion
Should not be changed until metraixbeat is tested for different ECS versions
"ECSVersion": "1.5.0"
Set variable for ElasticSearch server Hostname running Metricbeat config
Can add multiple servers for HA
Exemple:
"ElasticServers": ["server00042.example.com", "server00052.example.com", "server00050.example.com", "server00053.example.com"]
"ElasticServers": ["server00042.example.com"]
"ElasticServers": ["ELKServers"]
Set variable for ELK TCP port
"ElasticPort": "9200"
You will have the same configuration items for filebeat and logstash
Set variable for ELK username
"ELKUsername": "elastic"
Set variable for ELK password
"ELKPassword": "elastic"
Set variable for ELK HTTP protocol used
"ELKWebProtocol": "http"
or
"ELKWebProtocol": "https"
Set variable for SSL certificate (ROOT CA) path to file (.pem was working for me) only if HTTPS is used. Can be concatenation of ROOT CA and INTERMEDIATE
"ELKCertificate": ""
Set variable for the Metrics index name
ex: 'metricbeat' will create metricbeat-7.10.1. Write alias should make the rest if configured
"ElasticIndexName": "metricbeat"
Set variable for the Logs index name
ex: 'filebeat' will create filebeat-7.10.1. Write alias should make the rest if configured
"FilebeatIndexName": "filebeat"
Request to bypass the proxy configured in OS (http_proxy and https_proxy vars)
"yes" will bypass all proxies configured on OS side
"no" will keep proxies configured on OS side enabled
Number of ping requests to send to each PingPlotter targets at each check
"PingSamples": "5"
Amout of time to wait before exiting ping test if no answer received
Number of seconds, followed by "s"
"PingTimeout": "1s"
Enable System.Hypervisor custom metricset for Hypervisor values
"yes" or "no"
"IfSystemHypervisorEnable": "yes"
Enable System.HPMStat custom metricset for HPM monitoring values
"yes" or "no"
"IfSystemHPMStatEnable": "yes"
Limit the number of monitored network adapters to the given list. Sort and separate them by comma
Exemple for all interfaces: "EntRestricted": "all" (all adapters are monitored)
Exemple for all ent interfaces: "EntRestricted": "ent16,ent17,ent18" (only specified adapters are monitored)
Exemple for all en interfaces: "EntRestricted": "en16,en17,en18" (only specified adapters are monitored)
"EntRestricted": "all"
Limit the number of monitored fiber channel adapters to the given list. Sort and separate them by comma
Exemple for all interfaces: "FcsRestricted": "all" (all adapters are monitored)
Exemple for all interfaces: "FcsRestricted": "fcs16,fcs17,fcs18" (only specified adapters are monitored)
"FcsRestricted": "all"
Limit the number of monitored HDISK devices to the given list. Sort and separate them by comma
Exemple for all interfaces: "HdiskRestricted": "all" (all disks are monitored)
Exemple for all interfaces: "HdiskRestricted": "hdisk16,hdisk17,hdisk18" (only specified adapters are monitored)
"HdiskRestricted": "all"
Topic timers variables (in seconds). Time to wait before sending new metric values to ELK server
For now, default value are good for my case but up to you to play with all metricset depending of your needs
Some metricset take more CPU than others so make carefull testing to reach your balance point :-)
"SystemSocketWaitValue": "1000000000",
"PingPlotterWaitValue": "300"
"SystemHypervisorWaitValue": "300"
"SystemProcessWaitValue": "300"
"SystemSocketSummaryWaitValue": "300"
"SystemFilesystemAndFstatWaitValue": "240"
"SystemDiskIOWaitValue": "180"
"SystemProcessSummaryWaitValue": "120"
"SystemHPMStatWaitValue": "60"
"SystemLoadWaitValue": "60"
"SystemMemoryWaitValue": "30"
"SystemFcWaitValue": "20"
"SystemNetworkWaitValue": "20"
"SystemCoreAndCpuWaitValue": "15"