mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 07:10:15 -05:00
Add gigabyte (GB) unit for valid input
This commit is contained in:
parent
d9f6d9d9e8
commit
a65b8bfc70
2 changed files with 2 additions and 0 deletions
|
|
@ -44,6 +44,7 @@ For performance metrics you can provide a `Unit` to ensure your graphing is disp
|
|||
| B | Bytes | The input is indicated as quantity in bytes |
|
||||
| KB | Kilobytes | The input is indicated as quantity in kilobytes |
|
||||
| MB | Megabytes | The input is indicated as quantity in megabytes |
|
||||
| GB | Gigabytes | The input is indicated as quantity in gigabytes |
|
||||
| TB | Terabytes | The input is indicated as quantity in terabytes |
|
||||
| c | Counter | A continues counter increasing values over time |
|
||||
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@
|
|||
'B' = 'bytes';
|
||||
'KB' = 'kilobytes';
|
||||
'MB' = 'megabytes';
|
||||
'GB' = 'gigabytes';
|
||||
'TB' = 'terabytes';
|
||||
'c' = 'counter';
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue