ThingWorx Modelldefinition in Composer > Modellierung > Dinge > Warnungen > Schwellenwertinformationen aus Warnungen abrufen
Schwellenwertinformationen aus Warnungen abrufen
Die Werte "limit", "maximum", "minimum" usw. werden in der alertAttributes-Infotable gespeichert, die vom GetAlertDefinition-Dienst zurückgegeben wird.
Um auf die spezifischen Werte innerhalb der Infotable zuzugreifen, ist ein Wrapper-Dienst erforderlich.
Beispiel
Dienst, der einen Grenzwert aus dem Warnungstyp Oberhalb für die Eigenschaft INTEGER abruft:
Eingaben
Ausgaben
propertyName : STRING
result: INTEGER
* 
Der Ergebnistyp muss dem Typ des zurückgegebenen Attributs entsprechen. Für dieses Beispiel hat das Ergebnis den Typ INTEGER.
alertName : STRING
Skriptbeispiel
// These parameters have been parameterized into "alertName" and
// "propertyName" parameters at the service level. If these values
// will not change, they can be hard coded instead.
var params = {
alertName: alertName /* STRING */,
property: propertyName /* STRING */
};
// Retrieve the Alert Definition
var alertDef = me.GetAlertDefinition(params)
// Safety check on result from GetAlertDefinition()
if (alertDef != null && alertDef.rows.length > 0) {
// There should only be one row returned by GetAlertDefinition()
var alertProps = alertDef.rows[0];
// Safety check on alertAttributes infotable.
if (alertProps.alertAttributes != null && alertProps.alertAttributes.rows.length > 0) {
// Return the "limit" property from the alertAttributes table.
var result = alertProps.alertAttributes.rows[0].limit;
} else {
// The alertAttributes infotable was undefined or empty. This logs an error, but
// does not change the value returned. (Service returns no value.)
logger.error("AlertAttributes was null/empty!");
}
} else {
// The Alert Definition was empty.
// This is most commonly caused by invalid alertName/propertyName.
logger.error("Result from GetAlertDefinition was null/empty!");
Verwandte Links
War dies hilfreich?