View Source Appwrite.Types.HealthStatus (appwrite v0.2.1)

Represents the health status of an Appwrite service component.

Fields

  • name (String.t()): Name of the service being checked.
  • ping (non_neg_integer()): Response time in milliseconds (round trip).
  • status (String.t()): Current health status. One of "pass" or "fail".

Summary

Types

t()

@type t() :: %Appwrite.Types.HealthStatus{
  name: String.t(),
  ping: non_neg_integer(),
  status: String.t()
}