Hi! I’m trying to get the total time recorded by aw-watcher-afk where the title is “Q1 Event”. I want to filter AFK events by title and sum their durations.
Tried the following
events = query_bucket(“aw-watcher-afk_…”);
events = filter_keyvals(events, “title”, [“Q1 Event”]);
RETURN = sum_durations(events);
Anyone have a working example or tips for doing this?
Thanks!