object HealthReporting extends PrettyInstances with PrettyUtil

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HealthReporting
  2. PrettyUtil
  3. PrettyInstances
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. class BaseDelegatingMutableHealthComponent[Id, H <: BaseHealthComponent] extends BaseHealthComponent with NamedLogging with FlagCloseable

    Mutable Health component, use when the multiple health components identified by Id are not instantiated at bootstrap time and/or change during the lifetime of the node.

    Mutable Health component, use when the multiple health components identified by Id are not instantiated at bootstrap time and/or change during the lifetime of the node. Also supports aggregation of the health of multiple components into a single health state.

    This class does not enforce a specific ComponentHealth type to defer to. For convenience DelegatingMutableHealthComponent can be used when dealing with HealthComponents

  2. trait BaseHealthComponent extends HealthElement

    Abstracts common behavior of a component that reports health The State is left abstract.

    Abstracts common behavior of a component that reports health The State is left abstract. For a generic component state, use ComponentHealth

  3. class BaseMutableHealthComponent[H <: BaseHealthComponent] extends BaseHealthComponent with NamedLogging with FlagCloseable

    Mutable Health component, use when the health component is not instantiated at bootstrap time and/or changes during the lifetime of the node.

    Mutable Health component, use when the health component is not instantiated at bootstrap time and/or changes during the lifetime of the node. This class does not enforce a specific ComponentHealth type to defer to. For convenience DeferredHealthComponent can be used when dealing with HealthComponents

  4. final case class ComponentStatus(name: String, state: ComponentHealthState) extends PrettyPrinting with Product with Serializable

    Simple representation of the health state of a component, easily (de)serializable (from)to protobuf or JSON

  5. final class DelegatingMutableHealthComponent[Id] extends BaseDelegatingMutableHealthComponent[Id, HealthComponent] with HealthComponent
  6. trait HealthComponent extends BaseHealthComponent

    Implements health component Base using ComponentHealthState as a state.

    Implements health component Base using ComponentHealthState as a state. Suitable for most components unless there is a need for a custom State type.

  7. trait HealthElement extends AnyRef

    There are 2 subtypes of HealthElement: - ComponentHealth: directly reports its own health - ServiceHealth: Aggregates ComponentHealth under critical and soft dependencies Services are queryable through their name in the gRPC Health Check service/

  8. final case class HealthService(name: String, criticalDependencies: Seq[BaseHealthComponent] = Seq.empty, softDependencies: Seq[BaseHealthComponent] = Seq.empty) extends HealthElement with Product with Serializable
  9. final case class MutableHealthComponent(loggerFactory: NamedLoggerFactory, uninitializedName: String, timeouts: ProcessingTimeout, shutdownState: ComponentHealthState = ComponentHealthState.ShutdownState) extends BaseMutableHealthComponent[HealthComponent] with HealthComponent with Product with Serializable

    Mutable component for ComponentHealths

  10. final case class ServiceHealthStatusManager(name: String, manager: HealthStatusManager, services: Set[HealthService]) extends Product with Serializable

    Combines a health status manager (exposed as a gRPC health service), with the set of health services it needs to report on.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def adHocPrettyInstance[T <: Product](implicit c: ClassTag[T]): Pretty[T]

    Use this as a temporary solution, to make the code compile during an ongoing migration.

    Use this as a temporary solution, to make the code compile during an ongoing migration. Drawbacks:

    • Instances of Pretty[T] are ignored.
    • No parameter names
    Definition Classes
    PrettyUtil
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. def customParam[T](getValue: (T) => String, cond: (T) => Boolean = (_: T) => true): (T) => Option[Tree]

    Use this if you need a custom representation of a parameter.

    Use this if you need a custom representation of a parameter. Do not use this to create lengthy strings, as line wrapping is not supported.

    Definition Classes
    PrettyUtil
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def param[T, V](name: String, getValue: (T) => V, cond: (T) => Boolean = (_: T) => true)(implicit arg0: Pretty[V]): (T) => Option[Tree]

    A tree representing both parameter name and value.

    A tree representing both parameter name and value.

    Definition Classes
    PrettyUtil
  17. def paramIfDefined[T, V](name: String, getValue: (T) => Option[V])(implicit arg0: Pretty[V]): (T) => Option[Tree]
    Definition Classes
    PrettyUtil
  18. def paramIfNonEmpty[T, V <: IterableOnce[_]](name: String, getValue: (T) => V)(implicit arg0: Pretty[V]): (T) => Option[Tree]
    Definition Classes
    PrettyUtil
  19. def paramIfTrue[T](label: String, getValue: (T) => Boolean): (T) => Option[Tree]
    Definition Classes
    PrettyUtil
  20. def paramWithoutValue[T](name: String, cond: (T) => Boolean = (_: T) => true): (T) => Option[Tree]

    A tree representing a parameter name without a parameter value.

    A tree representing a parameter name without a parameter value. Use this for parameters storing confidential or binary data.

    Definition Classes
    PrettyUtil
  21. implicit def prettyActiveLedgerState[T](implicit arg0: Pretty[T]): Pretty[ActiveLedgerState[T]]
    Definition Classes
    PrettyInstances
  22. implicit def prettyArray[T](implicit arg0: Pretty[T]): Pretty[Array[T]]
    Definition Classes
    PrettyInstances
  23. implicit def prettyBoolean: Pretty[Boolean]
    Definition Classes
    PrettyInstances
  24. implicit val prettyByteString: Pretty[ByteString]
    Definition Classes
    PrettyInstances
  25. implicit def prettyChangeId: Pretty[ChangeId]
    Definition Classes
    PrettyInstances
  26. implicit def prettyCompletion: Pretty[Completion]
    Definition Classes
    PrettyInstances
  27. implicit def prettyDumpInfo: Pretty[DumpInfo]
    Definition Classes
    PrettyInstances
  28. implicit def prettyDumpable: Pretty[Dumpable]
    Definition Classes
    PrettyInstances
  29. implicit def prettyDuration: Pretty[Duration]
    Definition Classes
    PrettyInstances
  30. implicit def prettyEither[L, R](implicit arg0: Pretty[L], arg1: Pretty[R]): Pretty[Either[L, R]]
    Definition Classes
    PrettyInstances
  31. implicit def prettyGrpcStatus: Pretty[Status]
    Definition Classes
    PrettyInstances
  32. def prettyInfix[T, U, V](first: (T) => U, infixOp: String, second: (T) => V)(implicit arg0: Pretty[U], arg1: Pretty[V]): Pretty[T]
    Definition Classes
    PrettyUtil
  33. implicit def prettyInstant: Pretty[Instant]
    Definition Classes
    PrettyInstances
  34. implicit def prettyInt: Pretty[Int]
    Definition Classes
    PrettyInstances
  35. implicit val prettyJDuration: Pretty[Duration]
    Definition Classes
    PrettyInstances
  36. implicit val prettyKeyInputError: Pretty[KeyInputError]
    Definition Classes
    PrettyInstances
  37. implicit def prettyLedgerApplicationId: Pretty[LedgerApplicationId]
    Definition Classes
    PrettyInstances
  38. implicit val prettyLedgerBoundary: Pretty[LedgerBoundary]
    Definition Classes
    PrettyInstances
  39. implicit def prettyLedgerConfiguration: Pretty[Configuration]
    Definition Classes
    PrettyInstances
  40. implicit val prettyLedgerOffset: Pretty[LedgerOffset]
    Definition Classes
    PrettyInstances
  41. implicit def prettyLedgerString: Pretty[LedgerString]
    Definition Classes
    PrettyInstances
  42. implicit def prettyLedgerTimeModel: Pretty[LedgerTimeModel]
    Definition Classes
    PrettyInstances
  43. implicit def prettyLfContractId: Pretty[LfContractId]
    Definition Classes
    PrettyInstances
  44. implicit def prettyLfDottedName: Pretty[DottedName]
    Definition Classes
    PrettyInstances
  45. implicit def prettyLfGlobalKey: Pretty[LfGlobalKey]
    Definition Classes
    PrettyInstances
  46. implicit def prettyLfHash: Pretty[LfHash]
    Definition Classes
    PrettyInstances
  47. implicit def prettyLfIdentifier: Pretty[Identifier]
    Definition Classes
    PrettyInstances
  48. implicit def prettyLfParticipantId: Pretty[ParticipantId]
    Definition Classes
    PrettyInstances
  49. implicit def prettyLfPartyId: Pretty[LfPartyId]
    Definition Classes
    PrettyInstances
  50. implicit def prettyLfQualifiedName: Pretty[QualifiedName]
    Definition Classes
    PrettyInstances
  51. implicit def prettyLfTimestamp: Pretty[LfTimestamp]
    Definition Classes
    PrettyInstances
  52. implicit def prettyLfTransactionVersion: Pretty[LfTransactionVersion]
    Definition Classes
    PrettyInstances
  53. implicit def prettyLong: Pretty[Long]
    Definition Classes
    PrettyInstances
  54. implicit def prettyMap[K, V](implicit arg0: Pretty[K], arg1: Pretty[V]): Pretty[Map[K, V]]
    Definition Classes
    PrettyInstances
  55. def prettyNode[T](label: String, children: (T) => Option[Tree]*): Pretty[T]

    A tree consisting of a labelled node with the given children.

    A tree consisting of a labelled node with the given children.

    Definition Classes
    PrettyUtil
  56. implicit val prettyNodeId: Pretty[LfNodeId]
    Definition Classes
    PrettyInstances
  57. implicit def prettyNonempty[T](implicit arg0: Pretty[T]): Pretty[NonEmpty[T]]
    Definition Classes
    PrettyInstances
  58. def prettyOfClass[T](getParamTrees: (T) => Option[Tree]*): Pretty[T]

    A tree representing the type name and parameter trees.

    A tree representing the type name and parameter trees.

    Definition Classes
    PrettyUtil
  59. def prettyOfObject[T <: Product]: Pretty[T]

    A tree presenting the type name only.

    A tree presenting the type name only. (E.g., for case objects.)

    Definition Classes
    PrettyUtil
  60. def prettyOfParam[T, V](getValue: (T) => V)(implicit arg0: Pretty[V]): Pretty[T]

    Use this to give a class with a singleton parameter the same pretty representation as the parameter.

    Use this to give a class with a singleton parameter the same pretty representation as the parameter.

    Definition Classes
    PrettyUtil
  61. def prettyOfString[T](toString: (T) => String): Pretty[T]

    Creates a pretty instance from a string function.

    Creates a pretty instance from a string function. Do not use this with lengthy strings, as line wrapping is not supported.

    Definition Classes
    PrettyUtil
  62. implicit def prettyOption[T](implicit arg0: Pretty[T]): Pretty[Option[T]]
    Definition Classes
    PrettyInstances
  63. implicit def prettyPackageId: Pretty[PackageId]
    Definition Classes
    PrettyInstances
  64. implicit def prettyPair[T1, T2](implicit arg0: Pretty[T1], arg1: Pretty[T2]): Pretty[(T1, T2)]
    Definition Classes
    PrettyInstances
  65. implicit val prettyPort: Pretty[Port]
    Definition Classes
    PrettyInstances
  66. implicit def prettyPrettyPrinting[T <: PrettyPrinting]: Pretty[T]
    Definition Classes
    PrettyInstances
    Annotations
    @SuppressWarnings()
  67. implicit def prettyPrimitiveContractId: Pretty[ContractId[_]]
    Definition Classes
    PrettyInstances
  68. implicit def prettyPrimitiveParty: Pretty[Party]
    Definition Classes
    PrettyInstances
  69. implicit val prettyReadServiceOffset: Pretty[Offset]
    Definition Classes
    PrettyInstances
  70. implicit val prettyRefinedNumeric: Pretty[RefinedNumeric[_]]
    Definition Classes
    PrettyInstances
  71. implicit def prettyRpcStatus: Pretty[Status]
    Definition Classes
    PrettyInstances
  72. implicit def prettySeq[T](implicit arg0: Pretty[T]): Pretty[Seq[T]]
    Definition Classes
    PrettyInstances
  73. implicit val prettyServingStatus: Pretty[ServingStatus]
  74. implicit def prettySet[T](implicit arg0: Pretty[T]): Pretty[Set[T]]
    Definition Classes
    PrettyInstances
  75. implicit def prettyShown: Pretty[Shown]

    Makes the syntax from com.digitalasset.canton.util.ShowUtil accessible in places where a Pretty is expected.

    Makes the syntax from com.digitalasset.canton.util.ShowUtil accessible in places where a Pretty is expected.

    Definition Classes
    PrettyInstances
  76. def prettyString: Pretty[String]
    Definition Classes
    PrettyInstances
  77. implicit def prettyThrowable: Pretty[Throwable]
    Definition Classes
    PrettyInstances
  78. implicit val prettyTraceContext: Pretty[TraceContext]
    Definition Classes
    PrettyInstances
  79. implicit def prettyTree[T <: Tree]: Pretty[T]
    Definition Classes
    PrettyInstances
  80. implicit def prettyTriple[T1, T2, T3](implicit arg0: Pretty[T1], arg1: Pretty[T2], arg2: Pretty[T3]): Pretty[(T1, T2, T3)]
    Definition Classes
    PrettyInstances
  81. implicit def prettyURI: Pretty[URI]
    Definition Classes
    PrettyInstances
  82. implicit val prettyUnit: Pretty[Unit]
    Definition Classes
    PrettyInstances
  83. implicit val prettyUuid: Pretty[UUID]
    Definition Classes
    PrettyInstances
  84. implicit def prettyV2DeduplicationPeriod: Pretty[DeduplicationPeriod]
    Definition Classes
    PrettyInstances
  85. implicit lazy val prettyValue: Pretty[Value]
    Definition Classes
    PrettyInstances
  86. implicit lazy val prettyVersionedValue: Pretty[VersionedValue]
    Definition Classes
    PrettyInstances
  87. implicit val prettyW3CTraceContext: Pretty[W3CTraceContext]
    Definition Classes
    PrettyInstances
  88. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  89. def toString(): String
    Definition Classes
    AnyRef → Any
  90. def unnamedParam[T, V](getValue: (T) => V, cond: (T) => Boolean = (_: T) => true)(implicit arg0: Pretty[V]): (T) => Option[Tree]

    A tree representing a parameter value without a parameter name.

    A tree representing a parameter value without a parameter name.

    Definition Classes
    PrettyUtil
  91. def unnamedParamIfDefined[T, V](getValue: (T) => Option[V])(implicit arg0: Pretty[V]): (T) => Option[Tree]
    Definition Classes
    PrettyUtil
  92. def unnamedParamIfNonEmpty[T, V <: IterableOnce[_]](getValue: (T) => V)(implicit arg0: Pretty[V]): (T) => Option[Tree]
    Definition Classes
    PrettyUtil
  93. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  94. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  95. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  96. object BaseMutableHealthComponent
  97. object ComponentStatus extends Serializable
  98. object HealthService extends Serializable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from PrettyUtil

Inherited from PrettyInstances

Inherited from AnyRef

Inherited from Any

Ungrouped