Documentation ¶
Overview ¶
Copyright 2016 The Rook Authors. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Copyright 2016 The Rook Authors. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Copyright 2016 The Rook Authors. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Copyright 2016 The Rook Authors. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Index ¶
- func HealthStatusToString(hs HealthStatus) string
- func NodeStateToString(state NodeState) string
- func PoolTypeToString(poolType PoolType) string
- type BlockImage
- type BlockImageMapInfo
- type ErasureCodedPoolConfig
- type HealthStatus
- type MonitorSummary
- type Node
- type NodeState
- type OSDSummary
- type PGSummary
- type Pool
- type PoolType
- type ReplicatedPoolConfig
- type StatusDetails
- type StatusSummary
- type UsageSummary
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func HealthStatusToString ¶
func HealthStatusToString(hs HealthStatus) string
func NodeStateToString ¶
func PoolTypeToString ¶
Types ¶
type BlockImage ¶
type BlockImageMapInfo ¶
type ErasureCodedPoolConfig ¶
type HealthStatus ¶
type HealthStatus int
const ( HealthOK HealthStatus = iota HealthWarning HealthError HealthUnknown )
type MonitorSummary ¶
type MonitorSummary struct { Name string `json:"name"` Address string `json:"address"` InQuorum bool `json:"inQuorum"` Status HealthStatus `json:"status"` }
type Node ¶
type Node struct { NodeID string `json:"nodeId"` ClusterName string `json:"clusterName"` PublicIP string `json:"publicIp"` PrivateIP string `json:"privateIp"` Storage uint64 `json:"storage"` LastUpdated time.Duration `json:"lastUpdated"` State NodeState `json:"state"` Location string `json:"location"` }
type OSDSummary ¶
type Pool ¶
type Pool struct { Name string `json:"poolName"` Number int `json:"poolNum"` Type PoolType `json:"type"` ReplicationConfig ReplicatedPoolConfig `json:"replicationConfig"` ErasureCodedConfig ErasureCodedPoolConfig `json:"erasureCodedConfig"` }
type ReplicatedPoolConfig ¶
type ReplicatedPoolConfig struct {
Size uint `json:"size"`
}
type StatusDetails ¶
type StatusDetails struct { OverallStatus HealthStatus `json:"overall"` SummaryMessages []StatusSummary `json:"summary"` Monitors []MonitorSummary `json:"monitors"` OSDs OSDSummary `json:"osd"` PGs PGSummary `json:"pg"` Usage UsageSummary `json:"usage"` }
type StatusSummary ¶
type StatusSummary struct { Status HealthStatus `json:"status"` Message string `json:"message"` }