Source
/*
** Copyright (C) 2001-2025 Zabbix SIA
**
** This program is free software: you can redistribute it and/or modify it under the terms of
** the GNU Affero General Public License as published by the Free Software Foundation, version 3.
**
** This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
** without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
** See the GNU Affero General Public License for more details.
**
** You should have received a copy of the GNU Affero General Public License along with this program.
** If not, see <https://www.gnu.org/licenses/>.
**/
package ceph
import (
"encoding/json"
"strings"
"golang.zabbix.com/sdk/errs"
)
// pgStates is a list of all possible placement group states according to the Ceph's documentation.
// https://docs.ceph.com/en/octopus/rados/operations/pg-states/
var pgStates = []string{
"creating",
"activating",
"active",
"clean",
"down",
"laggy",
"wait",
"scrubbing",
"deep",
"degraded",
"inconsistent",
"peering",
"repair",
"recovering",
"forced_recovery",
"recovery_wait",
"recovery_toofull",
"recovery_unfound",
"backfilling",
"forced_backfill",
"backfill_wait",
"backfill_toofull",
"backfill_unfound",
"incomplete",
"stale",
"remapped",
"undersized",
"peered",
"snaptrim",
"snaptrim_wait",
"snaptrim_error",
"unknown",
}
var healthMap = map[string]int8{
"HEALTH_OK": 0,
"HEALTH_WARN": 1,