Hello,
As my DMA setup is in Cassandra cluster with the Elasticsearch database,
May I know if there is an elastic query to extract alarm information via alarm root ID?
For instance, as shown below, I would like to retrieve alarm information of root alarm ID 910/217659 from elastic to see all the alarm information on severity changes.
Thank you for the help.
You can try either of these to query current or historical alarms:
POST dms-activealarms/_search
{
"query": {
"match": {
"RootAlarmID": "1234"
}
}
}===
POST dms-alarms*/_search
{
"query": {
"match": {
"RootAlarmID": "1234"
}
}
}