24.06.2019, 11:13
(This post was last modified: 24.06.2019, 11:26 by Allesreinwasgeht.)
(24.06.2019, 08:24)admin Wrote: The easiest way to send multiple group address values is to assign a tag.THX!
This example will output one name = value pair per line for all objects with alert tag:
Code:values = {} objects = grp.tag('alert') for _, obj in ipairs(objects) do value = string.format('%s = %s', tostring(obj.name), tostring(obj.value)) values[ #values + 1 ] = value end result = table.concat(values, '\r\n') log(result)
its close to my target. I didnt want need to tagging before, but its fine.
My aim was to filter groups in format 1.005 set to 'true' to create a alert mail including all alerts in case of alarts only.
Best