Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Excerpt

The threshold objects contain a set of level objects that define limits for the KPIs. When a limit is exceeded within a defined period, a threshold object and a level object are referenced in the KPIOutput UDRs. You can define the limit values for a threshold object in ascending or descending order.

The following JSON schema describes the data format of the threshold object type:

Page Properties
hiddentrue




Page Properties
hiddentrue




The threshold object type has the following properties:

PropertyDescription
orderDescending

orderDescending controls in which order thresholds are evaluated and if alarms should be triggered when levels are exceeded from below or from above. Set this property to true for descending order and false for ascending order.

levels

levels must contain a set of level sub-objects, which describe the alert levels that are associated with a threshold object.

The level object type contains the following properties:

PropertyDescription

alarmDescription

alarmDescription may contain an arbitrary string.

value

value must contain a numerical threshold value.

A level  object must have at least one level.

Info
titleExample - JSON Representation


Code Block
languagetext
themeEclipse
 
"threshold": { 
      "Region.AD": { 
        "orderDescending": true, 
        "levels": { 
          "1": { 
            "alarmDescription": "", 
            "value": 500 
          }, 
          "2": { 
            "alarmDescription": "", 
            "value": 400 
          }, 
          "3": { 
            "alarmDescription": "", 
            "value": 300 
          }, 
          "4": { 
            "alarmDescription": "", 
            "value": 200 
          }, 
          "5": { 
            "alarmDescription": "", 
            "value": 100 
          } 
        } 
      } 
  } 




Page Properties
hiddentrue




Break