Sybase · Schema

LockMetrics

Lock management statistics for the SAP ASE server including contention and deadlock information.

DatabaseEnterpriseSAPSQL

Properties

Name Type Description
serverId string Unique identifier of the server.
timestamp string Timestamp when metrics were captured.
totalLockRequests integer Total number of lock requests since last reset.
lockWaits integer Number of times a task had to wait for a lock.
deadlocks integer Number of deadlock occurrences.
lockPromotions integer Number of lock escalation events.
avgLockWaitTimeMs number Average lock wait time in milliseconds.
View JSON Schema on GitHub

JSON Schema

sybase-lockmetrics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LockMetrics",
  "title": "LockMetrics",
  "type": "object",
  "description": "Lock management statistics for the SAP ASE server including contention and deadlock information.",
  "properties": {
    "serverId": {
      "type": "string",
      "description": "Unique identifier of the server."
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when metrics were captured."
    },
    "totalLockRequests": {
      "type": "integer",
      "description": "Total number of lock requests since last reset."
    },
    "lockWaits": {
      "type": "integer",
      "description": "Number of times a task had to wait for a lock."
    },
    "deadlocks": {
      "type": "integer",
      "description": "Number of deadlock occurrences."
    },
    "lockPromotions": {
      "type": "integer",
      "description": "Number of lock escalation events."
    },
    "avgLockWaitTimeMs": {
      "type": "number",
      "format": "double",
      "description": "Average lock wait time in milliseconds."
    }
  }
}