Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel
borderColorgreen
borderWidth1
titleBGColor#ddffcc
borderStylesolid
titleDefinition

SLA API will list all data present in the SLA Report database tables (app_report_*).

This API must be used in conjunction with the Process Data Collector plugin via Plugin Default Properties.Do ensure that the , with SLA configured for app process(es) in the app has SLA configuration) or activity(s), in order for this API to display meaningful data.

Note

The option here is based on the current app contextreturn meaningful information.



NameDescription
1List SLA report
Panel
borderColorblack
bgColor#fbfff5
borderStylesolid

List all data present in the SLA Report database tables

for the current app

.

Able to filter or sort the returned results via parameters.

Name

Description
URL/sla
HTTP MethodGET
Query String Parameters
ParameterDescription
appIdFilter the response by app via app ID.
appVersion

Filter the response by app version of the specified app ID.

Must be used in conjunction with "appId" parameter.

processDefIdFilter the response by process via process definition ID.
sort

SLA data column to sort.

Must be used in conjunction with "sortDescending" parameter.

sortDescending

Sort the specified "sort" parameter value in ascending or descending order.

Expects a boolean value.

Must be used in conjunction with "sort" parameter.

startOffsetStarting position of records to start query. Expects an integer.
pageSizeNumber of results to return. Expects an integer.
Sample Response
Code Block
languagejs
[
  {
    "minDelay": 0,
    "maxDelay": 0,
    "ratioWithDelay": 0,
    "serviceLevelMonitor": "<span class=\"dot_green\"> </span>",
    "ratioOnTime": 100,
    "activityName": "Claimant Edit",
    "activityDefId": "new_claim"
  },
	.....
]