-
iids
java.util.List<E> iids
If set, will filter on the instance id (IID) and select all matching instances
-
pids
java.util.List<E> pids
If set, will filter on the process id (PID) and select all matching process definitions
-
arePidsNegative
boolean arePidsNegative
If set, the PID filter will work negatively
-
nameFilter
java.lang.String nameFilter
If set, will filter on the process name (accepts ending with wildcard)
-
namespaceFilter
java.lang.String namespaceFilter
If set, will filter on the process name (accepts ending with wildcard)
-
statusFilter
java.util.List<E> statusFilter
If set, will filter on the instance status. Status being exclusive,
statuses are joined with an 'or'.
-
startedDateFilter
java.util.List<E> startedDateFilter
If set, will filter on the process started date. Prefixed with a comparison
operator (<, >, <=, >=, =). We're keeping a string and note converting to
a java date as ISO string dates are much easier and quicker to manipulate.
It's possible to have more than one date filter to handle the 'between'
case.
-
lastActiveDateFilter
java.util.List<E> lastActiveDateFilter
If set, will filter on the process last active date.
-
propertyValuesFilter
java.util.Map<K,V> propertyValuesFilter
-
orders
java.util.List<E> orders
Orders to use when sorting the result (no particular order if not set).
Currently /supported keys are:
- pid
- name
- namespace
- version
- status
- started
- last-active
Each key can be prefixed with a + or - sign for ascending or descending
orders (ascending if no sign specified)..
-
limit
int limit