Ceph status commands¶
This module provides processing for the output of the following ceph related
commands with -f json-pretty
parameter.
CephOsdDump - command ceph osd dump -f json-pretty
¶
CephOsdDf - command ceph osd df -f json-pretty
¶
CephS - command ceph -s -f json-pretty
¶
CephDfDetail - command ceph df detail -f json-pretty
¶
CephHealthDetail - command ceph health detail -f json-pretty
¶
CephECProfileGet - command ceph osd erasure-code-profile get default -f json-pretty
¶
CephCfgInfo - command ceph daemon {ceph_socket_files} config show
¶
CephOsdTree - command ceph osd tree -f json-pretty
¶
CephReport - command ceph report
¶
All these parsers are based on a shared class which processes the JSON information into a dictionary.
-
class
insights.parsers.ceph_cmd_json_parsing.
CephCfgInfo
(context, extra_bad_lines=None)[source]¶ Bases:
insights.core.CommandParser
,insights.core.JSONParser
Class to parse the output of
ceph daemon .. config show
Examples:
>>> type(ceph_cfg_info) <class 'insights.parsers.ceph_cmd_json_parsing.CephCfgInfo'> >>> ceph_cfg_info.max_open_files == '131072' True
-
max_open_files
¶ Return the value of max_open_files
Type: str
-
-
class
insights.parsers.ceph_cmd_json_parsing.
CephDfDetail
(context, extra_bad_lines=None)[source]¶ Bases:
insights.core.CommandParser
,insights.core.JSONParser
Class to parse the output of
ceph df detail -f json-pretty
.Examples:
>>> type(ceph_df_detail) <class 'insights.parsers.ceph_cmd_json_parsing.CephDfDetail'> >>> ceph_df_detail['stats']['total_avail_bytes'] 16910123008
-
class
insights.parsers.ceph_cmd_json_parsing.
CephECProfileGet
(context, extra_bad_lines=None)[source]¶ Bases:
insights.core.CommandParser
,insights.core.JSONParser
Class to parse the output of
ceph osd erasure-code-profile get default -f json-pretty
.Examples:
>>> type(ceph_osd_ec_profile_get) <class 'insights.parsers.ceph_cmd_json_parsing.CephECProfileGet'> >>> ceph_osd_ec_profile_get['k'] == '2' True
-
class
insights.parsers.ceph_cmd_json_parsing.
CephHealthDetail
(context, extra_bad_lines=None)[source]¶ Bases:
insights.core.CommandParser
,insights.core.JSONParser
Class to parse the output of
ceph health detail -f json-pretty
.Examples:
>>> type(ceph_health_detail) <class 'insights.parsers.ceph_cmd_json_parsing.CephHealthDetail'> >>> ceph_health_detail["overall_status"] == 'HEALTH_OK' True
-
class
insights.parsers.ceph_cmd_json_parsing.
CephOsdDf
(context, extra_bad_lines=None)[source]¶ Bases:
insights.core.CommandParser
,insights.core.JSONParser
Class to parse the output of
ceph osd df -f json-pretty
.Examples:
>>> type(ceph_osd_df) <class 'insights.parsers.ceph_cmd_json_parsing.CephOsdDf'> >>> ceph_osd_df['nodes'][0]['pgs'] 945
-
class
insights.parsers.ceph_cmd_json_parsing.
CephOsdDump
(context, extra_bad_lines=None)[source]¶ Bases:
insights.core.CommandParser
,insights.core.JSONParser
Class to parse the output of
ceph osd dump -f json-pretty
.Examples:
>>> type(ceph_osd_dump) <class 'insights.parsers.ceph_cmd_json_parsing.CephOsdDump'> >>> ceph_osd_dump['pools'][0]['min_size'] 2
-
class
insights.parsers.ceph_cmd_json_parsing.
CephOsdTree
(context, extra_bad_lines=None)[source]¶ Bases:
insights.core.CommandParser
,insights.core.JSONParser
Class to parse the output of the command “ceph osd tree -f json-pretty
Examples:
>>> type(ceph_osd_tree) <class 'insights.parsers.ceph_cmd_json_parsing.CephOsdTree'> >>> ceph_osd_tree['nodes'][0]['children'] [-5, -4, -3, -2]
-
class
insights.parsers.ceph_cmd_json_parsing.
CephReport
(context, extra_bad_lines=None)[source]¶ Bases:
insights.core.CommandParser
,insights.core.LegacyItemAccess
Class to parse the output of the command
ceph report
.Examples: >>> type(ceph_report_content) <class ‘insights.parsers.ceph_cmd_json_parsing.CephReport’> >>> ceph_report_content[“version”] == ‘12.2.8-52.el7cp’ True
-
class
insights.parsers.ceph_cmd_json_parsing.
CephS
(context, extra_bad_lines=None)[source]¶ Bases:
insights.core.CommandParser
,insights.core.JSONParser
Class to parse the output of
ceph -s -f json-pretty
.Examples:
>>> type(ceph_s) <class 'insights.parsers.ceph_cmd_json_parsing.CephS'> >>> ceph_s['pgmap']['pgs_by_state'][0]['state_name'] == 'active+clean' True