From f818f4469382ed1100e6806e34ae86e439fb4eb4 Mon Sep 17 00:00:00 2001 From: Martin Gehrke Date: Thu, 21 Apr 2016 09:26:46 -0400 Subject: [PATCH] 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 --- plugins/inputs/win_perf_counters/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/plugins/inputs/win_perf_counters/README.md b/plugins/inputs/win_perf_counters/README.md index 7a2b87a61..967714b48 100644 --- a/plugins/inputs/win_perf_counters/README.md +++ b/plugins/inputs/win_perf_counters/README.md @@ -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. Measurement = "win_mem" #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