package v30

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class ComponentStatus(name: String, status: ComponentStatus.Status) extends GeneratedMessage with Updatable[ComponentStatus] with Product with Serializable
    Annotations
    @SerialVersionUID()
  2. final case class GetLastErrorTraceRequest(traceId: String) extends GeneratedMessage with Updatable[GetLastErrorTraceRequest] with Product with Serializable

    traceId

    The trace id of the error

    Annotations
    @SerialVersionUID()
  3. final case class GetLastErrorTraceResponse(messages: Seq[String]) extends GeneratedMessage with Updatable[GetLastErrorTraceResponse] with Product with Serializable
    Annotations
    @SerialVersionUID()
  4. final case class GetLastErrorsRequest() extends GeneratedMessage with Updatable[GetLastErrorsRequest] with Product with Serializable
    Annotations
    @SerialVersionUID()
  5. final case class GetLastErrorsResponse(errors: Seq[Error]) extends GeneratedMessage with Updatable[GetLastErrorsResponse] with Product with Serializable
    Annotations
    @SerialVersionUID()
  6. final case class HealthDumpRequest(chunkSize: Option[Int]) extends GeneratedMessage with Updatable[HealthDumpRequest] with Product with Serializable

    chunkSize

    Size of the byte chunks to stream back. Defaults to 2MB (half of the default gRPC max message size)

    Annotations
    @SerialVersionUID()
  7. final case class HealthDumpResponse(chunk: ByteString) extends GeneratedMessage with Updatable[HealthDumpResponse] with Product with Serializable

    chunk

    A chunk of of the health dump file

    Annotations
    @SerialVersionUID()
  8. final case class NotInitialized(active: Boolean, waitingForExternalInput: WaitingForExternalInput) extends GeneratedMessage with Updatable[NotInitialized] with Product with Serializable

    active

    Indicate if the node is active, usually true unless it's a replicated node that is passive

    waitingForExternalInput

    Indicates whether the node is waiting for external input

    Annotations
    @SerialVersionUID()
  9. final case class SetLogLevelRequest(level: String) extends GeneratedMessage with Updatable[SetLogLevelRequest] with Product with Serializable

    level

    TODO(#18445) use an enum for the log level as right now, it also accepts OFF and null The log level to set (DEBUG, INFO, WARN, ERROR, OFF) TODO(#18445) provide the ability to set it per logger

    Annotations
    @SerialVersionUID()
  10. final case class SetLogLevelResponse() extends GeneratedMessage with Updatable[SetLogLevelResponse] with Product with Serializable
    Annotations
    @SerialVersionUID()
  11. final case class Status(uid: String, uptime: Option[Duration], ports: Map[String, Int], active: Boolean, topologyQueues: Option[TopologyQueueStatus], components: Seq[ComponentStatus], version: String) extends GeneratedMessage with Updatable[Status] with Product with Serializable

    active

    Indicate if the node is active, usually true unless it's a replicated node that is passive

    topologyQueues

    indicates the state of the topology queues (manager / dispatcher only where they exist)

    components

    Health state of component dependencies of the node

    version

    Version of the binary

    Annotations
    @SerialVersionUID()
  12. final case class TopologyQueueStatus(manager: Int, dispatcher: Int, clients: Int) extends GeneratedMessage with Updatable[TopologyQueueStatus] with Product with Serializable

    manager

    how many topology changes are currently queued at the manager

    dispatcher

    how many topology changes are currently queued at the dispatcher

    clients

    how many topology changes are currently waiting to become effective (across all connected synchronizers in the case of participants)

    Annotations
    @SerialVersionUID()

Ungrouped