-
Notifications
You must be signed in to change notification settings - Fork 707
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jan-Otto Kröpke <[email protected]>
- Loading branch information
Showing
9 changed files
with
138 additions
and
125 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package system | ||
|
||
const ( | ||
ContextSwitchesPersec = "Context Switches/sec" | ||
ExceptionDispatchesPersec = "Exception Dispatches/sec" | ||
ProcessorQueueLength = "Processor Queue Length" | ||
SystemCallsPersec = "System Calls/sec" | ||
SystemUpTime = "System Up Time" | ||
Processes = "Processes" | ||
Threads = "Threads" | ||
) |
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 |
---|---|---|
@@ -1,23 +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" | ||
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" | ||
successfulConnections = "Successful Connections" | ||
pendingConnections = "Pending Connections" | ||
failedConnections = "Failed Connections" | ||
) |
Oops, something went wrong.