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
6b830bd980
commit
bb6b771756
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 |
|
| B | Bytes | The input is indicated as quantity in bytes |
|
||||||
| KB | Kilobytes | The input is indicated as quantity in kilobytes |
|
| KB | Kilobytes | The input is indicated as quantity in kilobytes |
|
||||||
| MB | Megabytes | The input is indicated as quantity in megabytes |
|
| 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 |
|
| TB | Terabytes | The input is indicated as quantity in terabytes |
|
||||||
| c | Counter | A continues counter increasing values over time |
|
| c | Counter | A continues counter increasing values over time |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
'B' = 'bytes';
|
'B' = 'bytes';
|
||||||
'KB' = 'kilobytes';
|
'KB' = 'kilobytes';
|
||||||
'MB' = 'megabytes';
|
'MB' = 'megabytes';
|
||||||
|
'GB' = 'gigabytes';
|
||||||
'TB' = 'terabytes';
|
'TB' = 'terabytes';
|
||||||
'c' = 'counter';
|
'c' = 'counter';
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue