-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add newline to end of windows perfmon config (#3829)
* Add newline to end of windows perfmon config This is to fix the docs builds. * Basic edits to perfmon docs Fixed capitalization and formatting
- Loading branch information
1 parent
3d2b0fa
commit e41868b
Showing
6 changed files
with
21 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
# metricsets: ["perfmon"] | ||
# enabled: true | ||
# period: 10s | ||
# perfmon.counters: | ||
# perfmon.counters: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
== windows Module | ||
== Windows Module | ||
|
||
This is the windows Module. | ||
This is the Windows module. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,26 @@ | ||
=== windows perfmon MetricSet | ||
=== Windows Perfmon MetricSet | ||
|
||
This is the perfmon metricset of the module windows. | ||
This is the perfmon metricset of the Windows module. It reads Windows | ||
performance counters. | ||
|
||
[float] | ||
=== Features and configuration | ||
=== Configuration | ||
|
||
Metricset to collect performance counters. | ||
Example configuration: | ||
``` | ||
You must configure queries for the Windows performance counters that you wish | ||
to collect. The example below collects processor time and disk writes. | ||
|
||
[source,yaml] | ||
---- | ||
- module: windows | ||
metricsets: ["perfmon"] | ||
enabled: true | ||
period: 10s | ||
perfmon.counters: | ||
- group: "processor" | ||
collectors: | ||
- group: "processor" | ||
collectors: | ||
- alias: "processor_time" | ||
query: '\Processor Information(_Total)\% Processor Time' | ||
- group: "disk" | ||
collectors: | ||
- alias: "bytes_written" | ||
query: '\PhysicalDisk(_Total)\Disk Writes/sec' | ||
``` | ||
---- |