Actor Model · JSON Structure

Actor Model System Health Structure

Overall health status of the actor system

Type: object Properties: 7
Actor ModelConcurrencyDistributed Systems

Actor Model System Health Structure is a JSON Structure definition published by Actor Model, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

status activeActors messagesPerSecond errorRate deadLetters clusterSize uptime

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://structure.api-evangelist.com/actor-model/actor-model-system-health-structure.json",
  "title": "SystemHealth",
  "description": "Overall health status of the actor system",
  "type": "object",
  "properties": {
    "status": {
      "type": "string"
    },
    "activeActors": {
      "type": "integer"
    },
    "messagesPerSecond": {
      "type": "number"
    },
    "errorRate": {
      "type": "number"
    },
    "deadLetters": {
      "type": "integer"
    },
    "clusterSize": {
      "type": "integer"
    },
    "uptime": {
      "type": "integer"
    }
  }
}