| edition = "2023"; | |
| package milotic_tlbmc; | |
| enum ThresholdType { | |
| THRESHOLD_TYPE_UNKNOWN = 0; | |
| THRESHOLD_TYPE_UPPER_CRITICAL = 1; | |
| THRESHOLD_TYPE_UPPER_NON_CRITICAL = 2; | |
| THRESHOLD_TYPE_LOWER_CRITICAL = 3; | |
| THRESHOLD_TYPE_LOWER_NON_CRITICAL = 4; | |
| } | |
| message ThresholdConfig { | |
| ThresholdType type = 1; | |
| double value = 2; | |
| } | |
| message ThresholdConfigs { | |
| repeated ThresholdConfig threshold_configs = 1; | |
| } |