-
Notifications
You must be signed in to change notification settings - Fork 708
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
terminal_services: refactor collector (#1729)
- Loading branch information
Showing
5 changed files
with
158 additions
and
111 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package terminal_services | ||
|
||
const ( | ||
HandleCount = "Handle Count" | ||
PageFaultsPersec = "Page Faults/sec" | ||
PageFileBytes = "Page File Bytes" | ||
PageFileBytesPeak = "Page File Bytes Peak" | ||
PercentPrivilegedTime = "% Privileged Time" | ||
PercentProcessorTime = "% Processor Time" | ||
PercentUserTime = "% User Time" | ||
PoolNonpagedBytes = "Pool Nonpaged Bytes" | ||
PoolPagedBytes = "Pool Paged Bytes" | ||
PrivateBytes = "Private Bytes" | ||
ThreadCount = "Thread Count" | ||
VirtualBytes = "Virtual Bytes" | ||
VirtualBytesPeak = "Virtual Bytes Peak" | ||
WorkingSet = "Working Set" | ||
WorkingSetPeak = "Working Set Peak" | ||
|
||
SuccessfulConnections = "Successful Connections" | ||
PendingConnections = "Pending Connections" | ||
FailedConnections = "Failed Connections" | ||
) |
Oops, something went wrong.