streamHealth.go 318 B

123456789
  1. package models
  2. // StreamHealthOverview represents an overview of the current stream health.
  3. type StreamHealthOverview struct {
  4. Healthy bool `json:"healthy"`
  5. HealthyPercentage int `json:"healthPercentage"`
  6. Message string `json:"message"`
  7. Representation int `json:"representation"`
  8. }