Skip to content
Snippets Groups Projects
Commit f818f446 authored by Martin Gehrke's avatar Martin Gehrke
Browse files

Added Network Interface Object block to Generic Queries examples in win_perf_counters/README.md

Network metrics are pretty important and the block adds a couple with a link to the names for more. This adds a block with a few counters to the Generic Queries examples in plugins/inputs/win_perf_counters/README.md
parent 8a395fdb
No related branches found
No related tags found
No related merge requests found
...@@ -156,6 +156,15 @@ if any of the combinations of ObjectName/Instances/Counters are invalid. ...@@ -156,6 +156,15 @@ if any of the combinations of ObjectName/Instances/Counters are invalid.
Instances = ["------"] # Use 6 x - to remove the Instance bit from the query. Instances = ["------"] # Use 6 x - to remove the Instance bit from the query.
Measurement = "win_mem" Measurement = "win_mem"
#IncludeTotal=false #Set to true to include _Total instance when querying for all (*). #IncludeTotal=false #Set to true to include _Total instance when querying for all (*).
[[inputs.win_perf_counters.object]]
# more counters for the Network Interface Object can be found at
# https://msdn.microsoft.com/en-us/library/ms803962.aspx
ObjectName = "Network Interface"
Counters = ["Bytes Received/sec","Bytes Sent/sec","Packets Received/sec","Packets Sent/sec"]
Instances = ["*"] # Use 6 x - to remove the Instance bit from the query.
Measurement = "win_net"
#IncludeTotal=false #Set to true to include _Total instance when querying for all (*).
``` ```
### Active Directory Domain Controller ### Active Directory Domain Controller
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment