QPR ProcessAnalyzer Expression Examples
The following examples have an EventLog with filter id 1 as a starting point. All KPI analyses also have an EventLog as a starting point, so expression written after the "EventLogById(1)." is a valid expression for KPI Analyses.
Get all event types that appear among the events:
EventLogById(1).EventTypes
Get a hierarchical array, where the upper level are event types and the leaf level are events:
EventLogById(1).EventTypes.Events
EventLogById(1).EventTypes:Events.Type
EventLogById(1).EventTypes:Events.Type.Name
EventLogById(1).EventTypes:Events.TimeStamp
EventLogById(1).EventTypes:Events.Where(Timestamp > DateTime(2012,1,1))
Count(EventLogById(1).EventTypes:Events.Where(Timestamp > DateTime(2012,1,1)))
EventLogById(1).EventTypes.OrderByDescending(Events, Timestamp)
EventLogById(1).EventTypes.OrderByDescending(_Events, _Timestamp)
EventLogById(1).(StringJoin(", ", EventTypes.Name))
EventLogById(1).(StringJoin(", ", OrderByDescending(EventTypes, Name).Name))
List of all the Starter flows in a model from filterId=1:
RemoveLeaves(EventLogById(1).Flows:From.Where(IsNull(_)))
Go through the model recursively using the flows:
RemoveLeaves(EventLogById(1).Flows:From.Where(IsNull(_))).To.OutgoingFlows.To.OutgoingFlows.To
Traverse the model using events:
RemoveLeaves(EventLogById(1).Flows:From.Where(IsNull(_))).FlowOccurrences.To.NextInCase.NextInCase.NextInCase
All case attribute values within the model grouped by case attribute types:
Let("cases", EventLogById(1).Cases, EventLogById(1).CaseAttributes:(Let("attribute", _, cases.Attribute(attribute))))
All event attribute values within the model grouped by event attribute types:
Let("events", EventLogById(1).Events, EventLogById(1).EventAttributes:(Let("attribute", _, events.Attribute(attribute))))
Define new user defined functions:
Def("First", "a", GetAt(0, a)); Def("Second", "a", GetAt(1, a)); Array(First(a), Second(a))
Def("x", "a", Distinct(RecurseLeaves(OrderBy(EventLogById(a).Cases.Events, Type.Name), Type.Name)))
Function definition that uses itself, i.e. recursive functions:
Def("Fib", "a", If(a < 2, 1, Fib(a - 1) + Fib(a - 2))); For("i", 0, i < 10, i + 1, Fib(i));
Models.StringJoin(":", [Id, Name])
Models.[Id, Name]