Skip to content

Commit

Permalink
Fix ceph_monitoring.py kwargs errors
Browse files Browse the repository at this point in the history
  • Loading branch information
BjoernT committed Nov 28, 2023
1 parent 33f7154 commit 46c7bd2
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions playbooks/files/rax-maas/plugins/ceph_monitoring.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ def get_local_osd_info(osd_ref, fmt='json', container_name=None,


def get_mon_statistics(client=None, keyring=None, host=None,
container_name=None, deploy_osp=False):
admin_socket=None, container_name=None,
deploy_osp=False):
ceph_status = get_ceph_status(client=client,
keyring=keyring,
container_name=container_name,
Expand All @@ -198,7 +199,8 @@ def get_mon_statistics(client=None, keyring=None, host=None,


def get_health_checks(client=None, keyring=None, section=None,
container_name=None, deploy_osp=False):
admin_socket=None, container_name=None,
deploy_osp=False):
metrics = []

ceph_status = get_ceph_status(client=client,
Expand Down Expand Up @@ -249,7 +251,8 @@ def get_osd_statistics(client=None, keyring=None, osd_id=None,
metric_bool(metric_name, state)


def get_cluster_statistics(client=None, keyring=None, container_name=None,
def get_cluster_statistics(client=None, keyring=None, admin_socket=None,
container_name=None,
deploy_osp=False):
metrics = []

Expand Down

0 comments on commit 46c7bd2

Please sign in to comment.