ForgeRock · Schema

MonitoringSummary

IG monitoring summary

Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect

Properties

Name Type Description
totalRequestCount integer Total number of requests processed
totalResponseCount integer Total number of responses sent
averageResponseTime number Average response time in milliseconds
statusCodeCounts object Response counts by HTTP status code
View JSON Schema on GitHub

JSON Schema

forgerock-monitoringsummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MonitoringSummary",
  "title": "MonitoringSummary",
  "type": "object",
  "description": "IG monitoring summary",
  "properties": {
    "totalRequestCount": {
      "type": "integer",
      "description": "Total number of requests processed"
    },
    "totalResponseCount": {
      "type": "integer",
      "description": "Total number of responses sent"
    },
    "averageResponseTime": {
      "type": "number",
      "format": "double",
      "description": "Average response time in milliseconds"
    },
    "statusCodeCounts": {
      "type": "object",
      "description": "Response counts by HTTP status code",
      "additionalProperties": {
        "type": "integer"
      }
    }
  }
}