Windows exporter configuration file (jpc_windows_exporter.yml)
The following shows a sample code for adding IM Exporter-supported process monitoring, and content description changes made for process monitoring in the Windows exporter configuration file (jpc_windows_exporter.yml) for JP1/IM - Agent. No further changes to other specifications have been made with IM Exporter.
- Organization of this page
Syntax
The following shows a YAML-format sample for adding process monitoring.
collectors:
enabled: cache,cpu,logical_disk,memory,net,system,cs,process
collector:
logical_disk:
volume-whitelist: ".+"
volume-blacklist: ""
net:
nic-whitelist: ".+"
nic-blacklist: ""
process:
process-whitelist: ""
process-blacklist: ""
scrape:
timeout-margin: 0.5
Content description
The following shows content description changes made in process monitoring.
|
Item |
Description |
Modifiable |
Content set by the user in JP1/IM - Agent |
Default value in JP1/IM - Agent |
|
|---|---|---|---|---|---|
|
collectors |
-- |
-- |
-- |
-- |
|
|
enabled |
Comma-separated list of collectors to use. |
N |
-- |
collectors: enabled: cache,cpu,logical_disk,memory,net,system,cs,process |
|
The following shows content description of the items added in process monitoring.
|
Item |
Description |
Modifiable |
Content set by the user in JP1/IM - Agent |
Default value in JP1/IM - Agent |
||
|---|---|---|---|---|---|---|
|
collector |
-- |
-- |
-- |
-- |
||
|
process |
-- |
-- |
-- |
-- |
||
|
whitelist |
Regexp of volumes to whitelist. Volume name must both match whitelist and not match blacklist to be included. If omitted, this is specified as ".+". |
Y |
-- |
collector: process: whitelist: "" |
||
|
blacklist |
Regexp of volumes to blacklist. Volume name must both match whitelist and not match blacklist to be included. If omitted, this is specified as "". |
Y |
-- |
collector: process: blacklist: "" |
||