-
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
4 changed files
with
146 additions
and
135 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,6 @@ | ||
package smb | ||
|
||
const ( | ||
currentOpenFileCount = "Current Open File Count" | ||
treeConnectCount = "Tree Connect Count" | ||
) |
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,25 @@ | ||
package smbclient | ||
|
||
const ( | ||
AvgDataQueueLength = "Avg. Data Queue Length" | ||
AvgReadQueueLength = "Avg. Read Queue Length" | ||
AvgSecPerRead = "Avg. sec/Read" | ||
AvgSecPerWrite = "Avg. sec/Write" | ||
AvgSecPerDataRequest = "Avg. sec/Data Request" | ||
AvgWriteQueueLength = "Avg. Write Queue Length" | ||
CreditStallsPerSec = "Credit Stalls/sec" | ||
CurrentDataQueueLength = "Current Data Queue Length" | ||
DataBytesPerSec = "Data Bytes/sec" | ||
DataRequestsPerSec = "Data Requests/sec" | ||
MetadataRequestsPerSec = "Metadata Requests/sec" | ||
ReadBytesTransmittedViaSMBDirectPerSec = "Read Bytes transmitted via SMB Direct/sec" | ||
ReadBytesPerSec = "Read Bytes/sec" | ||
ReadRequestsTransmittedViaSMBDirectPerSec = "Read Requests transmitted via SMB Direct/sec" | ||
ReadRequestsPerSec = "Read Requests/sec" | ||
TurboIOReadsPerSec = "Turbo I/O Reads/sec" | ||
TurboIOWritesPerSec = "Turbo I/O Writes/sec" | ||
WriteBytesTransmittedViaSMBDirectPerSec = "Write Bytes transmitted via SMB Direct/sec" | ||
WriteBytesPerSec = "Write Bytes/sec" | ||
WriteRequestsTransmittedViaSMBDirectPerSec = "Write Requests transmitted via SMB Direct/sec" | ||
WriteRequestsPerSec = "Write Requests/sec" | ||
) |
Oops, something went wrong.