
Hello Sandesh,
The incremental values are the child object values under the same parent object.
You can use a query like;
“ | rex oid_hierarchy_value_\d+\s=\s(?P<object_id>) | rename object_id as object_name | chart sum(object_name) by device_name“
or
“ | rex oid_hierarchy_value_(?P<object_id:int>) | rename object_id as object_name | chart avg(object_name) by device_name“
You can extract the required value through rex or norm lookup. Then use it as per your requirement in the form of sum, average, count, max, min and so on.
1 comment