Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type BadgeState ¶
type BadgeState string
BadgeState is the visual state of a status badge.
const ( BadgeOK BadgeState = "ok" BadgeWarn BadgeState = "warn" BadgeError BadgeState = "error" BadgePending BadgeState = "pending" BadgeUnknown BadgeState = "unknown" )
type ClusterDetail ¶
type ClusterDetail struct {
ClusterSummary
Conditions []ConditionRow
Services []ServiceRow
Persistence PersistenceInfo
Endpoints EndpointsInfo
Upgrade UpgradeInfo
Related []RelatedResource
}
ClusterDetail is the full per-cluster view.
type ClusterSummary ¶
type ClusterSummary struct {
Namespace string
Name string
Version string
Shards int32
Phase string
Ready BadgeState
Persistence BadgeState
MTLSEnabled bool
MTLS BadgeState
Upgrading bool
Age string
}
ClusterSummary is one row/card on the overview.
type ConditionRow ¶
type ConditionRow struct {
Type string
Status string
Reason string
Message string
State BadgeState
}
ConditionRow is one status condition.
type EndpointsInfo ¶
EndpointsInfo holds resolved endpoints.
type PersistenceInfo ¶
type PersistenceInfo struct {
Reachable BadgeState
SchemaReady BadgeState
}
PersistenceInfo summarizes datastore state.
type RelatedResource ¶
type RelatedResource struct {
Kind string
Name string
Ready BadgeState
Detail string
}
RelatedResource is a satellite CRD tied to a cluster.
type ServiceRow ¶
type ServiceRow struct {
Name string
Ready int32
Desired int32
Version string
State BadgeState
}
ServiceRow reports readiness of one Temporal service.
Click to show internal directories.
Click to hide internal directories.