Basic monitoring command. It is for further discussion if displayed fields are the best ones (+ unit tests later)
Should probably at least allow filtering by tag
Web side: #4269
with session.multicall() as m: for req in requests: tags.append(m.getTag(req['tag_id']))
You don't need to go to all this effort. They query view will return more fields if you ask for them. E.g. pass fields=['*', 'tag_name'] or just fields='**'
fields=['*', 'tag_name']
fields='**'
Basic monitoring command. It is for further discussion if displayed fields are the best ones (+ unit tests later)