prometheus exporter: remove non-ucum units from conversion (#5719)
This commit is contained in:
parent
6999ebd1f1
commit
3669e7a2ae
|
@ -154,16 +154,6 @@ final class PrometheusUnitsHelper {
|
|||
return "gigabytes";
|
||||
case "TBy":
|
||||
return "terabytes";
|
||||
case "B":
|
||||
return "bytes";
|
||||
case "KB":
|
||||
return "kilobytes";
|
||||
case "MB":
|
||||
return "megabytes";
|
||||
case "GB":
|
||||
return "gigabytes";
|
||||
case "TB":
|
||||
return "terabytes";
|
||||
// SI
|
||||
case "m":
|
||||
return "meters";
|
||||
|
@ -186,8 +176,6 @@ final class PrometheusUnitsHelper {
|
|||
return "";
|
||||
case "%":
|
||||
return "percent";
|
||||
case "$":
|
||||
return "dollars";
|
||||
default:
|
||||
return unitAbbreviation;
|
||||
}
|
||||
|
|
|
@ -24,18 +24,13 @@ class PrometheusUnitsHelperTest {
|
|||
return Stream.of(
|
||||
// Simple expansion - storage Bytes
|
||||
Arguments.of("By", "bytes"),
|
||||
Arguments.of("B", "bytes"),
|
||||
// Simple expansion - storage KB
|
||||
Arguments.of("KB", "kilobytes"),
|
||||
// Simple expansion - storage KBy
|
||||
Arguments.of("KBy", "kilobytes"),
|
||||
// Simple expansion - storage MB
|
||||
Arguments.of("MB", "megabytes"),
|
||||
// Simple expansion - storage MBy
|
||||
Arguments.of("MBy", "megabytes"),
|
||||
// Simple expansion - storage GB
|
||||
Arguments.of("GB", "gigabytes"),
|
||||
// Simple expansion - storage GBy
|
||||
Arguments.of("GBy", "gigabytes"),
|
||||
// Simple expansion - storage TB
|
||||
Arguments.of("TB", "terabytes"),
|
||||
// Simple expansion - storage TBy
|
||||
Arguments.of("TBy", "terabytes"),
|
||||
// Simple expansion - storage KiBy
|
||||
Arguments.of("KiBy", "kibibytes"),
|
||||
|
@ -61,8 +56,6 @@ class PrometheusUnitsHelperTest {
|
|||
Arguments.of("min", "minutes"),
|
||||
// Simple expansion - special symbol - %
|
||||
Arguments.of("%", "percent"),
|
||||
// Simple expansion - special symbols - $
|
||||
Arguments.of("$", "dollars"),
|
||||
// Simple expansion - frequency
|
||||
Arguments.of("Hz", "hertz"),
|
||||
// Simple expansion - temperature
|
||||
|
@ -90,7 +83,7 @@ class PrometheusUnitsHelperTest {
|
|||
// Units expressing rate - per month
|
||||
Arguments.of("J/mo", "joules_per_month"),
|
||||
// Units expressing rate - per year
|
||||
Arguments.of("TB/y", "terabytes_per_year"),
|
||||
Arguments.of("TBy/y", "terabytes_per_year"),
|
||||
// Units expressing rate - 'per' units, both units unknown
|
||||
Arguments.of("v/v", "v_per_v"),
|
||||
// Units expressing rate - 'per' units, first unit unknown
|
||||
|
|
Loading…
Reference in New Issue