2024-09-20T18:47:33.272 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-20T18:47:33.294 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-20T18:47:33.381 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/gabrioux-2024-09-20_12:24:58-orch:cephadm-wip-guits-main-2024-09-20-1028-distro-default-smithi/7912740 branch: wip-guits-main-2024-09-20-1028 description: orch:cephadm/workunits/{0-distro/ubuntu_22.04 agent/off mon_election/classic task/test_host_drain} email: gabrioux@ibm.com first_in_suite: false job_id: '7912740' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: gabrioux-2024-09-20_12:24:58-orch:cephadm-wip-guits-main-2024-09-20-1028-distro-default-smithi no_nested_subset: false os_type: ubuntu os_version: '22.04' overrides: admin_socket: branch: wip-guits-main-2024-09-20-1028 ceph: conf: global: mon election default strategy: 1 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: false mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - MON_DOWN - mons down - mon down - out of quorum - CEPHADM_STRAY_HOST - CEPHADM_STRAY_DAEMON - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: 88deadb8082f4a33832e228ccefc59cedba158a5 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 88deadb8082f4a33832e228ccefc59cedba158a5 workunit: branch: wip-guits-main-2024-09-20-1028 sha1: 88deadb8082f4a33832e228ccefc59cedba158a5 owner: scheduled_gabrioux@teuthology priority: 70 repo: https://git.ceph.com/ceph-ci.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 9945 sha1: 88deadb8082f4a33832e228ccefc59cedba158a5 sleep_before_teardown: 0 subset: 1/8 suite: orch:cephadm suite_branch: wip-guits-main-2024-09-20-1028 suite_path: /home/teuthworker/src/git.ceph.com_ceph-c_88deadb8082f4a33832e228ccefc59cedba158a5/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph-ci.git suite_sha1: 88deadb8082f4a33832e228ccefc59cedba158a5 targets: smithi018.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKQk1rT1eDYqBft9lcXHwAfd9oLVmJJTRrZg4q6K/eZvEcFNqF7aMYcAxAhEmaig8kK0yKRFj0XZXTHMR6Lb10g= smithi082.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGT9evyg/4omaINuCTI5IqDT+aytSrikMQDLEDigbIcdwhQsPy2ZAF0UWvtYbrABqMEOp0zNOKRII92mVXU9/pI= smithi137.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSLmqqT7CfyY8p4/JIFjTsr2M+5rZm5/n1B+ukf72SlmBU9IvLQrnTtcXh4WFGetcVGHcSoCGDJQwCN5e6Wgvg= tasks: - install: null - cephadm: null - cephadm.shell: host.a: - "set -ex\nHOSTNAMES=$(ceph orch host ls --format json | jq -r '.[] | .hostname')\n\ for host in $HOSTNAMES; do\n # find the hostname for \"host.c\" which will\ \ have no mgr\n HAS_MGRS=$(ceph orch ps --hostname ${host} --format json |\ \ jq 'any(.daemon_type == \"mgr\")')\n if [ \"$HAS_MGRS\" == \"false\" ]; then\n\ \ HOST_C=\"${host}\"\n fi\ndone\n# One last thing to worry about before\ \ draining the host\n# is that the teuthology test tends to put the explicit\n\ # hostnames in the placement for the mon service.\n# We want to make sure we\ \ can drain without providing\n# --force and there is a check for the host being\ \ removed\n# being listed explicitly in the placements. Therefore,\n# we should\ \ remove it from the mon placement.\nceph orch ls mon --export > mon.yaml\n\ sed /\"$HOST_C\"/d mon.yaml > mon_adjusted.yaml\nceph orch apply -i mon_adjusted.yaml\n\ # now drain that host\nceph orch host drain $HOST_C --zap-osd-devices\n# wait\ \ for drain to complete\nHOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\n\ while [ \"$HOST_C_DAEMONS\" != \"No daemons reported\" ]; do\n sleep 15\n \ \ HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\ndone\n# we want to check\ \ the ability to remove the host from\n# the CRUSH map, so we should first verify\ \ the host is in\n# the CRUSH map.\nceph osd getcrushmap -o compiled-crushmap\n\ crushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\n\ if ! grep -q \"$HOST_C\" <<< \"$CRUSH_MAP\"; then\n printf \"Expected to see\ \ $HOST_C in CRUSH map. Saw:\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n# If the drain\ \ was successful, we should be able to remove the\n# host without force with\ \ no issues. If there are still daemons\n# we will get a response telling us\ \ to drain the host and a\n# non-zero return code\nceph orch host rm $HOST_C\ \ --rm-crush-entry\n# verify we've successfully removed the host from the CRUSH\ \ map\nsleep 30\nceph osd getcrushmap -o compiled-crushmap\ncrushtool -d compiled-crushmap\ \ -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\nif grep -q \"$HOST_C\" <<<\ \ \"$CRUSH_MAP\"; then\n printf \"Saw $HOST_C in CRUSH map after it should\ \ have been removed.\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n" teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a timestamp: 2024-09-20_12:24:58 tube: smithi user: gabrioux verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2902 2024-09-20T18:47:33.381 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph-c_88deadb8082f4a33832e228ccefc59cedba158a5/qa; will attempt to use it 2024-09-20T18:47:33.382 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_88deadb8082f4a33832e228ccefc59cedba158a5/qa/tasks 2024-09-20T18:47:33.382 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-20T18:47:33.384 INFO:teuthology.task.internal:Checking packages... 2024-09-20T18:47:33.406 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '88deadb8082f4a33832e228ccefc59cedba158a5' 2024-09-20T18:47:33.406 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-20T18:47:33.406 INFO:teuthology.packaging:ref: None 2024-09-20T18:47:33.406 INFO:teuthology.packaging:tag: None 2024-09-20T18:47:33.406 INFO:teuthology.packaging:branch: wip-guits-main-2024-09-20-1028 2024-09-20T18:47:33.406 INFO:teuthology.packaging:sha1: 88deadb8082f4a33832e228ccefc59cedba158a5 2024-09-20T18:47:33.406 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=wip-guits-main-2024-09-20-1028 2024-09-20T18:47:33.546 INFO:teuthology.task.internal:Found packages for ceph version 19.3.0-5099-g88deadb8-1jammy 2024-09-20T18:47:33.547 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-20T18:47:33.554 INFO:teuthology.task.internal:no buildpackages task found 2024-09-20T18:47:33.554 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-20T18:47:34.096 INFO:teuthology.task.internal:Saving configuration 2024-09-20T18:47:34.109 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-20T18:47:34.217 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-20T18:47:34.242 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi018.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-09-20_12:24:58-orch:cephadm-wip-guits-main-2024-09-20-1028-distro-default-smithi/7912740', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-20 18:42:03.618675', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKAhWX88yCkkMIbnWIsPviu7rLKO+ZI7ahlalSx7tPZy'} 2024-09-20T18:47:34.263 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi082.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-09-20_12:24:58-orch:cephadm-wip-guits-main-2024-09-20-1028-distro-default-smithi/7912740', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-20 18:42:03.615007', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOJf3lAHfSAD3ZGmSuXdAM85r8qS+apYzzCp2iJiFh70'} 2024-09-20T18:47:34.288 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi137.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-09-20_12:24:58-orch:cephadm-wip-guits-main-2024-09-20-1028-distro-default-smithi/7912740', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-20 18:42:03.616950', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFbzG+LWHbjtph0uZnnbkTlNHySa0uanb43cRhnJVRdB'} 2024-09-20T18:47:34.288 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-20T18:47:34.308 INFO:teuthology.task.internal:roles: ubuntu@smithi018.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-09-20T18:47:34.308 INFO:teuthology.task.internal:roles: ubuntu@smithi082.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-09-20T18:47:34.308 INFO:teuthology.task.internal:roles: ubuntu@smithi137.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-09-20T18:47:34.308 INFO:teuthology.run_tasks:Running task console_log... 2024-09-20T18:47:34.452 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fcf867b0280>, signals=[15]) 2024-09-20T18:47:34.452 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-20T18:47:34.458 INFO:teuthology.task.internal:Opening connections... 2024-09-20T18:47:34.458 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi018.front.sepia.ceph.com 2024-09-20T18:47:34.460 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi018.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T18:47:34.553 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi082.front.sepia.ceph.com 2024-09-20T18:47:34.554 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi082.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T18:47:34.648 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi137.front.sepia.ceph.com 2024-09-20T18:47:34.649 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi137.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T18:47:34.728 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-20T18:47:34.735 DEBUG:teuthology.orchestra.run.smithi018:> uname -m 2024-09-20T18:47:34.741 INFO:teuthology.orchestra.run.smithi018.stdout:x86_64 2024-09-20T18:47:34.742 DEBUG:teuthology.orchestra.run.smithi018:> cat /etc/os-release 2024-09-20T18:47:34.790 INFO:teuthology.orchestra.run.smithi018.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-20T18:47:34.790 INFO:teuthology.orchestra.run.smithi018.stdout:NAME="Ubuntu" 2024-09-20T18:47:34.790 INFO:teuthology.orchestra.run.smithi018.stdout:VERSION_ID="22.04" 2024-09-20T18:47:34.790 INFO:teuthology.orchestra.run.smithi018.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-20T18:47:34.790 INFO:teuthology.orchestra.run.smithi018.stdout:VERSION_CODENAME=jammy 2024-09-20T18:47:34.791 INFO:teuthology.orchestra.run.smithi018.stdout:ID=ubuntu 2024-09-20T18:47:34.791 INFO:teuthology.orchestra.run.smithi018.stdout:ID_LIKE=debian 2024-09-20T18:47:34.791 INFO:teuthology.orchestra.run.smithi018.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-20T18:47:34.791 INFO:teuthology.orchestra.run.smithi018.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-20T18:47:34.791 INFO:teuthology.orchestra.run.smithi018.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-20T18:47:34.791 INFO:teuthology.orchestra.run.smithi018.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-20T18:47:34.791 INFO:teuthology.orchestra.run.smithi018.stdout:UBUNTU_CODENAME=jammy 2024-09-20T18:47:34.792 INFO:teuthology.lock.ops:Updating smithi018.front.sepia.ceph.com on lock server 2024-09-20T18:47:34.816 DEBUG:teuthology.orchestra.run.smithi082:> uname -m 2024-09-20T18:47:34.821 INFO:teuthology.orchestra.run.smithi082.stdout:x86_64 2024-09-20T18:47:34.821 DEBUG:teuthology.orchestra.run.smithi082:> cat /etc/os-release 2024-09-20T18:47:34.870 INFO:teuthology.orchestra.run.smithi082.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-20T18:47:34.870 INFO:teuthology.orchestra.run.smithi082.stdout:NAME="Ubuntu" 2024-09-20T18:47:34.870 INFO:teuthology.orchestra.run.smithi082.stdout:VERSION_ID="22.04" 2024-09-20T18:47:34.870 INFO:teuthology.orchestra.run.smithi082.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-20T18:47:34.870 INFO:teuthology.orchestra.run.smithi082.stdout:VERSION_CODENAME=jammy 2024-09-20T18:47:34.871 INFO:teuthology.orchestra.run.smithi082.stdout:ID=ubuntu 2024-09-20T18:47:34.871 INFO:teuthology.orchestra.run.smithi082.stdout:ID_LIKE=debian 2024-09-20T18:47:34.871 INFO:teuthology.orchestra.run.smithi082.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-20T18:47:34.871 INFO:teuthology.orchestra.run.smithi082.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-20T18:47:34.871 INFO:teuthology.orchestra.run.smithi082.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-20T18:47:34.871 INFO:teuthology.orchestra.run.smithi082.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-20T18:47:34.871 INFO:teuthology.orchestra.run.smithi082.stdout:UBUNTU_CODENAME=jammy 2024-09-20T18:47:34.871 INFO:teuthology.lock.ops:Updating smithi082.front.sepia.ceph.com on lock server 2024-09-20T18:47:34.899 DEBUG:teuthology.orchestra.run.smithi137:> uname -m 2024-09-20T18:47:34.906 INFO:teuthology.orchestra.run.smithi137.stdout:x86_64 2024-09-20T18:47:34.906 DEBUG:teuthology.orchestra.run.smithi137:> cat /etc/os-release 2024-09-20T18:47:34.952 INFO:teuthology.orchestra.run.smithi137.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-20T18:47:34.952 INFO:teuthology.orchestra.run.smithi137.stdout:NAME="Ubuntu" 2024-09-20T18:47:34.952 INFO:teuthology.orchestra.run.smithi137.stdout:VERSION_ID="22.04" 2024-09-20T18:47:34.952 INFO:teuthology.orchestra.run.smithi137.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-20T18:47:34.952 INFO:teuthology.orchestra.run.smithi137.stdout:VERSION_CODENAME=jammy 2024-09-20T18:47:34.952 INFO:teuthology.orchestra.run.smithi137.stdout:ID=ubuntu 2024-09-20T18:47:34.953 INFO:teuthology.orchestra.run.smithi137.stdout:ID_LIKE=debian 2024-09-20T18:47:34.953 INFO:teuthology.orchestra.run.smithi137.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-20T18:47:34.953 INFO:teuthology.orchestra.run.smithi137.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-20T18:47:34.953 INFO:teuthology.orchestra.run.smithi137.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-20T18:47:34.953 INFO:teuthology.orchestra.run.smithi137.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-20T18:47:34.953 INFO:teuthology.orchestra.run.smithi137.stdout:UBUNTU_CODENAME=jammy 2024-09-20T18:47:34.953 INFO:teuthology.lock.ops:Updating smithi137.front.sepia.ceph.com on lock server 2024-09-20T18:47:34.983 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-20T18:47:34.992 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-20T18:47:35.230 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-20T18:47:35.231 DEBUG:teuthology.orchestra.run.smithi018:> test '!' -e /home/ubuntu/cephtest 2024-09-20T18:47:35.234 DEBUG:teuthology.orchestra.run.smithi082:> test '!' -e /home/ubuntu/cephtest 2024-09-20T18:47:35.237 DEBUG:teuthology.orchestra.run.smithi137:> test '!' -e /home/ubuntu/cephtest 2024-09-20T18:47:35.241 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-20T18:47:35.892 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-20T18:47:35.893 DEBUG:teuthology.orchestra.run.smithi018:> test -z $(ls -A /var/lib/ceph) 2024-09-20T18:47:35.895 DEBUG:teuthology.orchestra.run.smithi082:> test -z $(ls -A /var/lib/ceph) 2024-09-20T18:47:35.897 DEBUG:teuthology.orchestra.run.smithi137:> test -z $(ls -A /var/lib/ceph) 2024-09-20T18:47:35.911 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-20T18:47:36.069 INFO:teuthology.run_tasks:Running task kernel... 2024-09-20T18:47:36.257 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-20T18:47:36.257 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}, 'host.c': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-09-20T18:47:36.257 DEBUG:teuthology.orchestra.run.smithi018:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-20T18:47:36.258 DEBUG:teuthology.orchestra.run.smithi082:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-20T18:47:36.258 DEBUG:teuthology.orchestra.run.smithi137:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-20T18:47:36.263 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-20T18:47:36.263 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-20T18:47:36.264 DEBUG:teuthology.orchestra.run.smithi082:> uname -r 2024-09-20T18:47:36.264 DEBUG:teuthology.orchestra.run.smithi018:> uname -r 2024-09-20T18:47:36.265 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-20T18:47:36.265 DEBUG:teuthology.orchestra.run.smithi137:> uname -r 2024-09-20T18:47:36.310 INFO:teuthology.orchestra.run.smithi018.stdout:5.15.0-56-generic 2024-09-20T18:47:36.310 INFO:teuthology.task.kernel:Running kernel on smithi018: 5.15.0-56-generic 2024-09-20T18:47:36.310 DEBUG:teuthology.orchestra.run.smithi018:> sudo apt-get clean 2024-09-20T18:47:36.311 INFO:teuthology.orchestra.run.smithi082.stdout:5.15.0-56-generic 2024-09-20T18:47:36.311 INFO:teuthology.task.kernel:Running kernel on smithi082: 5.15.0-56-generic 2024-09-20T18:47:36.311 DEBUG:teuthology.orchestra.run.smithi082:> sudo apt-get clean 2024-09-20T18:47:36.312 INFO:teuthology.orchestra.run.smithi137.stdout:5.15.0-56-generic 2024-09-20T18:47:36.313 INFO:teuthology.task.kernel:Running kernel on smithi137: 5.15.0-56-generic 2024-09-20T18:47:36.313 DEBUG:teuthology.orchestra.run.smithi137:> sudo apt-get clean 2024-09-20T18:47:36.433 DEBUG:teuthology.orchestra.run.smithi018:> sudo apt-get update 2024-09-20T18:47:36.437 DEBUG:teuthology.orchestra.run.smithi082:> sudo apt-get update 2024-09-20T18:47:36.442 DEBUG:teuthology.orchestra.run.smithi137:> sudo apt-get update 2024-09-20T18:47:36.577 INFO:teuthology.orchestra.run.smithi137.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-20T18:47:36.686 INFO:teuthology.orchestra.run.smithi137.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-20T18:47:36.701 INFO:teuthology.orchestra.run.smithi018.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-20T18:47:36.701 INFO:teuthology.orchestra.run.smithi018.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-20T18:47:36.704 INFO:teuthology.orchestra.run.smithi082.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-20T18:47:36.704 INFO:teuthology.orchestra.run.smithi082.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-20T18:47:36.757 INFO:teuthology.orchestra.run.smithi018.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-20T18:47:36.766 INFO:teuthology.orchestra.run.smithi082.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-20T18:47:36.768 INFO:teuthology.orchestra.run.smithi137.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-20T18:47:36.777 INFO:teuthology.orchestra.run.smithi137.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,839 kB] 2024-09-20T18:47:36.878 INFO:teuthology.orchestra.run.smithi137.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [544 kB] 2024-09-20T18:47:36.883 INFO:teuthology.orchestra.run.smithi137.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [298 kB] 2024-09-20T18:47:36.885 INFO:teuthology.orchestra.run.smithi137.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-20T18:47:36.886 INFO:teuthology.orchestra.run.smithi137.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-20T18:47:36.886 INFO:teuthology.orchestra.run.smithi137.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,431 kB] 2024-09-20T18:47:36.906 INFO:teuthology.orchestra.run.smithi137.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [418 kB] 2024-09-20T18:47:36.910 INFO:teuthology.orchestra.run.smithi137.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-20T18:47:36.910 INFO:teuthology.orchestra.run.smithi137.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [905 kB] 2024-09-20T18:47:36.917 INFO:teuthology.orchestra.run.smithi137.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [629 kB] 2024-09-20T18:47:36.922 INFO:teuthology.orchestra.run.smithi137.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [177 kB] 2024-09-20T18:47:36.923 INFO:teuthology.orchestra.run.smithi137.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.3 kB] 2024-09-20T18:47:36.923 INFO:teuthology.orchestra.run.smithi137.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-20T18:47:36.924 INFO:teuthology.orchestra.run.smithi137.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-20T18:47:36.924 INFO:teuthology.orchestra.run.smithi137.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-20T18:47:36.977 INFO:teuthology.orchestra.run.smithi137.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-20T18:47:37.113 INFO:teuthology.orchestra.run.smithi018.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-20T18:47:37.122 INFO:teuthology.orchestra.run.smithi137.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-20T18:47:37.123 INFO:teuthology.orchestra.run.smithi082.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-20T18:47:37.137 INFO:teuthology.orchestra.run.smithi082.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,839 kB] 2024-09-20T18:47:37.138 INFO:teuthology.orchestra.run.smithi018.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [544 kB] 2024-09-20T18:47:37.252 INFO:teuthology.orchestra.run.smithi018.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,062 kB] 2024-09-20T18:47:37.261 INFO:teuthology.orchestra.run.smithi137.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,062 kB] 2024-09-20T18:47:37.262 INFO:teuthology.orchestra.run.smithi082.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,062 kB] 2024-09-20T18:47:37.432 INFO:teuthology.orchestra.run.smithi018.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,839 kB] 2024-09-20T18:47:37.572 INFO:teuthology.orchestra.run.smithi018.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [703 kB] 2024-09-20T18:47:37.572 INFO:teuthology.orchestra.run.smithi082.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [544 kB] 2024-09-20T18:47:37.580 INFO:teuthology.orchestra.run.smithi137.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [703 kB] 2024-09-20T18:47:37.583 INFO:teuthology.orchestra.run.smithi082.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [703 kB] 2024-09-20T18:47:37.588 INFO:teuthology.orchestra.run.smithi082.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [298 kB] 2024-09-20T18:47:37.597 INFO:teuthology.orchestra.run.smithi082.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-20T18:47:37.597 INFO:teuthology.orchestra.run.smithi082.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,431 kB] 2024-09-20T18:47:37.604 INFO:teuthology.orchestra.run.smithi018.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [298 kB] 2024-09-20T18:47:37.607 INFO:teuthology.orchestra.run.smithi018.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [356 kB] 2024-09-20T18:47:37.615 INFO:teuthology.orchestra.run.smithi137.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [356 kB] 2024-09-20T18:47:37.617 INFO:teuthology.orchestra.run.smithi018.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-20T18:47:37.618 INFO:teuthology.orchestra.run.smithi082.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [356 kB] 2024-09-20T18:47:37.618 INFO:teuthology.orchestra.run.smithi018.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-20T18:47:37.620 INFO:teuthology.orchestra.run.smithi018.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,431 kB] 2024-09-20T18:47:37.621 INFO:teuthology.orchestra.run.smithi018.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-20T18:47:37.622 INFO:teuthology.orchestra.run.smithi018.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-20T18:47:37.624 INFO:teuthology.orchestra.run.smithi018.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,499 kB] 2024-09-20T18:47:37.629 INFO:teuthology.orchestra.run.smithi137.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-20T18:47:37.629 INFO:teuthology.orchestra.run.smithi137.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-20T18:47:37.631 INFO:teuthology.orchestra.run.smithi137.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,499 kB] 2024-09-20T18:47:37.632 INFO:teuthology.orchestra.run.smithi082.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-20T18:47:37.633 INFO:teuthology.orchestra.run.smithi082.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,499 kB] 2024-09-20T18:47:37.693 INFO:teuthology.orchestra.run.smithi018.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [430 kB] 2024-09-20T18:47:37.694 INFO:teuthology.orchestra.run.smithi082.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-20T18:47:37.695 INFO:teuthology.orchestra.run.smithi082.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [418 kB] 2024-09-20T18:47:37.701 INFO:teuthology.orchestra.run.smithi137.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [430 kB] 2024-09-20T18:47:37.702 INFO:teuthology.orchestra.run.smithi082.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-20T18:47:37.704 INFO:teuthology.orchestra.run.smithi018.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [418 kB] 2024-09-20T18:47:37.709 INFO:teuthology.orchestra.run.smithi018.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-20T18:47:37.719 INFO:teuthology.orchestra.run.smithi137.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-20T18:47:37.719 INFO:teuthology.orchestra.run.smithi137.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,125 kB] 2024-09-20T18:47:37.737 INFO:teuthology.orchestra.run.smithi082.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [430 kB] 2024-09-20T18:47:37.738 INFO:teuthology.orchestra.run.smithi082.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-20T18:47:37.738 INFO:teuthology.orchestra.run.smithi082.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [905 kB] 2024-09-20T18:47:37.745 INFO:teuthology.orchestra.run.smithi082.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-20T18:47:37.746 INFO:teuthology.orchestra.run.smithi082.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [733 kB] 2024-09-20T18:47:37.747 INFO:teuthology.orchestra.run.smithi018.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,125 kB] 2024-09-20T18:47:37.747 INFO:teuthology.orchestra.run.smithi018.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-20T18:47:37.747 INFO:teuthology.orchestra.run.smithi018.stdout:Get:22 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [629 kB] 2024-09-20T18:47:37.751 INFO:teuthology.orchestra.run.smithi137.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [733 kB] 2024-09-20T18:47:37.754 INFO:teuthology.orchestra.run.smithi082.stdout:Get:23 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [629 kB] 2024-09-20T18:47:37.762 INFO:teuthology.orchestra.run.smithi082.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,125 kB] 2024-09-20T18:47:37.762 INFO:teuthology.orchestra.run.smithi018.stdout:Get:23 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [905 kB] 2024-09-20T18:47:37.765 INFO:teuthology.orchestra.run.smithi082.stdout:Get:25 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [177 kB] 2024-09-20T18:47:37.768 INFO:teuthology.orchestra.run.smithi018.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [733 kB] 2024-09-20T18:47:37.768 INFO:teuthology.orchestra.run.smithi082.stdout:Get:26 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.3 kB] 2024-09-20T18:47:37.768 INFO:teuthology.orchestra.run.smithi082.stdout:Get:27 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-20T18:47:37.769 INFO:teuthology.orchestra.run.smithi082.stdout:Get:28 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-20T18:47:37.771 INFO:teuthology.orchestra.run.smithi137.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-20T18:47:37.775 INFO:teuthology.orchestra.run.smithi018.stdout:Get:25 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [177 kB] 2024-09-20T18:47:37.777 INFO:teuthology.orchestra.run.smithi137.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-20T18:47:37.778 INFO:teuthology.orchestra.run.smithi082.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-20T18:47:37.778 INFO:teuthology.orchestra.run.smithi018.stdout:Get:26 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.3 kB] 2024-09-20T18:47:37.778 INFO:teuthology.orchestra.run.smithi137.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-20T18:47:37.779 INFO:teuthology.orchestra.run.smithi137.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-20T18:47:37.779 INFO:teuthology.orchestra.run.smithi018.stdout:Get:27 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-20T18:47:37.779 INFO:teuthology.orchestra.run.smithi018.stdout:Get:28 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-20T18:47:37.780 INFO:teuthology.orchestra.run.smithi018.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-20T18:47:37.780 INFO:teuthology.orchestra.run.smithi137.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-20T18:47:37.781 INFO:teuthology.orchestra.run.smithi018.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-20T18:47:37.782 INFO:teuthology.orchestra.run.smithi082.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-20T18:47:37.782 INFO:teuthology.orchestra.run.smithi082.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-20T18:47:37.783 INFO:teuthology.orchestra.run.smithi082.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-20T18:47:37.786 INFO:teuthology.orchestra.run.smithi018.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-20T18:47:37.786 INFO:teuthology.orchestra.run.smithi018.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-20T18:47:37.787 INFO:teuthology.orchestra.run.smithi018.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-20T18:47:37.788 INFO:teuthology.orchestra.run.smithi018.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-20T18:47:37.817 INFO:teuthology.orchestra.run.smithi018.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-20T18:47:37.824 INFO:teuthology.orchestra.run.smithi137.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-20T18:47:37.825 INFO:teuthology.orchestra.run.smithi137.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-20T18:47:37.826 INFO:teuthology.orchestra.run.smithi137.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-20T18:47:37.829 INFO:teuthology.orchestra.run.smithi082.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-20T18:47:37.829 INFO:teuthology.orchestra.run.smithi082.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-20T18:47:37.838 INFO:teuthology.orchestra.run.smithi082.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-20T18:47:37.838 INFO:teuthology.orchestra.run.smithi082.stdout:Get:36 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-20T18:47:37.852 INFO:teuthology.orchestra.run.smithi018.stdout:Get:36 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-20T18:47:37.862 INFO:teuthology.orchestra.run.smithi137.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-20T18:47:37.862 INFO:teuthology.orchestra.run.smithi137.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-20T18:47:37.863 INFO:teuthology.orchestra.run.smithi137.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-20T18:47:37.863 INFO:teuthology.orchestra.run.smithi137.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-20T18:47:37.864 INFO:teuthology.orchestra.run.smithi137.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-20T18:47:37.865 INFO:teuthology.orchestra.run.smithi082.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-20T18:47:37.867 INFO:teuthology.orchestra.run.smithi082.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-20T18:47:37.868 INFO:teuthology.orchestra.run.smithi082.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-20T18:47:37.869 INFO:teuthology.orchestra.run.smithi082.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-20T18:47:37.869 INFO:teuthology.orchestra.run.smithi018.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-20T18:47:37.870 INFO:teuthology.orchestra.run.smithi082.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-20T18:47:37.871 INFO:teuthology.orchestra.run.smithi018.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-20T18:47:37.872 INFO:teuthology.orchestra.run.smithi018.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-20T18:47:37.872 INFO:teuthology.orchestra.run.smithi018.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-20T18:47:37.873 INFO:teuthology.orchestra.run.smithi018.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-20T18:47:37.899 INFO:teuthology.orchestra.run.smithi018.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-20T18:47:37.899 INFO:teuthology.orchestra.run.smithi018.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-20T18:47:37.900 INFO:teuthology.orchestra.run.smithi018.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-20T18:47:37.905 INFO:teuthology.orchestra.run.smithi137.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-20T18:47:37.910 INFO:teuthology.orchestra.run.smithi082.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-20T18:47:37.911 INFO:teuthology.orchestra.run.smithi082.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-20T18:47:37.912 INFO:teuthology.orchestra.run.smithi082.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-20T18:47:43.406 INFO:teuthology.orchestra.run.smithi137.stdout:Fetched 16.3 MB in 2s (7,546 kB/s) 2024-09-20T18:47:44.003 INFO:teuthology.orchestra.run.smithi082.stdout:Fetched 16.3 MB in 3s (5,837 kB/s) 2024-09-20T18:47:44.371 INFO:teuthology.orchestra.run.smithi018.stdout:Fetched 16.3 MB in 3s (5,651 kB/s) 2024-09-20T18:47:44.904 INFO:teuthology.orchestra.run.smithi137.stdout:Reading package lists... 2024-09-20T18:47:44.923 DEBUG:teuthology.orchestra.run.smithi137:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-20T18:47:44.980 INFO:teuthology.orchestra.run.smithi137.stdout:Reading package lists... 2024-09-20T18:47:45.176 INFO:teuthology.orchestra.run.smithi137.stdout:Building dependency tree... 2024-09-20T18:47:45.176 INFO:teuthology.orchestra.run.smithi137.stdout:Reading state information... 2024-09-20T18:47:45.347 INFO:teuthology.orchestra.run.smithi137.stdout:The following packages were automatically installed and are no longer required: 2024-09-20T18:47:45.347 INFO:teuthology.orchestra.run.smithi137.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-20T18:47:45.347 INFO:teuthology.orchestra.run.smithi137.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-20T18:47:45.348 INFO:teuthology.orchestra.run.smithi137.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-20T18:47:45.348 INFO:teuthology.orchestra.run.smithi137.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-20T18:47:45.348 INFO:teuthology.orchestra.run.smithi137.stdout: python2.7-minimal 2024-09-20T18:47:45.348 INFO:teuthology.orchestra.run.smithi137.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-20T18:47:45.349 INFO:teuthology.orchestra.run.smithi137.stdout:The following additional packages will be installed: 2024-09-20T18:47:45.349 INFO:teuthology.orchestra.run.smithi137.stdout: linux-generic linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-20T18:47:45.349 INFO:teuthology.orchestra.run.smithi137.stdout: linux-headers-generic linux-image-5.15.0-122-generic 2024-09-20T18:47:45.350 INFO:teuthology.orchestra.run.smithi137.stdout: linux-modules-5.15.0-122-generic linux-modules-extra-5.15.0-122-generic 2024-09-20T18:47:45.351 INFO:teuthology.orchestra.run.smithi137.stdout:Suggested packages: 2024-09-20T18:47:45.351 INFO:teuthology.orchestra.run.smithi137.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-20T18:47:45.351 INFO:teuthology.orchestra.run.smithi137.stdout:Recommended packages: 2024-09-20T18:47:45.351 INFO:teuthology.orchestra.run.smithi137.stdout: thermald 2024-09-20T18:47:45.397 INFO:teuthology.orchestra.run.smithi137.stdout:The following NEW packages will be installed: 2024-09-20T18:47:45.397 INFO:teuthology.orchestra.run.smithi137.stdout: linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-20T18:47:45.397 INFO:teuthology.orchestra.run.smithi137.stdout: linux-image-5.15.0-122-generic linux-modules-5.15.0-122-generic 2024-09-20T18:47:45.398 INFO:teuthology.orchestra.run.smithi137.stdout: linux-modules-extra-5.15.0-122-generic 2024-09-20T18:47:45.399 INFO:teuthology.orchestra.run.smithi137.stdout:The following packages will be upgraded: 2024-09-20T18:47:45.399 INFO:teuthology.orchestra.run.smithi137.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-20T18:47:45.435 INFO:teuthology.orchestra.run.smithi082.stdout:Reading package lists... 2024-09-20T18:47:45.452 DEBUG:teuthology.orchestra.run.smithi082:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-20T18:47:45.505 INFO:teuthology.orchestra.run.smithi082.stdout:Reading package lists... 2024-09-20T18:47:45.578 INFO:teuthology.orchestra.run.smithi137.stdout:3 upgraded, 5 newly installed, 0 to remove and 345 not upgraded. 2024-09-20T18:47:45.579 INFO:teuthology.orchestra.run.smithi137.stdout:Need to get 113 MB of archives. 2024-09-20T18:47:45.579 INFO:teuthology.orchestra.run.smithi137.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-20T18:47:45.579 INFO:teuthology.orchestra.run.smithi137.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-122-generic amd64 5.15.0-122.132 [22.7 MB] 2024-09-20T18:47:45.692 INFO:teuthology.orchestra.run.smithi082.stdout:Building dependency tree... 2024-09-20T18:47:45.692 INFO:teuthology.orchestra.run.smithi082.stdout:Reading state information... 2024-09-20T18:47:45.859 INFO:teuthology.orchestra.run.smithi082.stdout:The following packages were automatically installed and are no longer required: 2024-09-20T18:47:45.859 INFO:teuthology.orchestra.run.smithi082.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-20T18:47:45.859 INFO:teuthology.orchestra.run.smithi082.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-20T18:47:45.860 INFO:teuthology.orchestra.run.smithi082.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-20T18:47:45.860 INFO:teuthology.orchestra.run.smithi082.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-20T18:47:45.860 INFO:teuthology.orchestra.run.smithi082.stdout: python2.7-minimal 2024-09-20T18:47:45.860 INFO:teuthology.orchestra.run.smithi082.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-20T18:47:45.861 INFO:teuthology.orchestra.run.smithi082.stdout:The following additional packages will be installed: 2024-09-20T18:47:45.861 INFO:teuthology.orchestra.run.smithi082.stdout: linux-generic linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-20T18:47:45.861 INFO:teuthology.orchestra.run.smithi082.stdout: linux-headers-generic linux-image-5.15.0-122-generic 2024-09-20T18:47:45.861 INFO:teuthology.orchestra.run.smithi082.stdout: linux-modules-5.15.0-122-generic linux-modules-extra-5.15.0-122-generic 2024-09-20T18:47:45.863 INFO:teuthology.orchestra.run.smithi082.stdout:Suggested packages: 2024-09-20T18:47:45.863 INFO:teuthology.orchestra.run.smithi082.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-20T18:47:45.863 INFO:teuthology.orchestra.run.smithi082.stdout:Recommended packages: 2024-09-20T18:47:45.863 INFO:teuthology.orchestra.run.smithi082.stdout: thermald 2024-09-20T18:47:45.919 INFO:teuthology.orchestra.run.smithi082.stdout:The following NEW packages will be installed: 2024-09-20T18:47:45.920 INFO:teuthology.orchestra.run.smithi082.stdout: linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-20T18:47:45.920 INFO:teuthology.orchestra.run.smithi082.stdout: linux-image-5.15.0-122-generic linux-modules-5.15.0-122-generic 2024-09-20T18:47:45.920 INFO:teuthology.orchestra.run.smithi082.stdout: linux-modules-extra-5.15.0-122-generic 2024-09-20T18:47:45.921 INFO:teuthology.orchestra.run.smithi082.stdout:The following packages will be upgraded: 2024-09-20T18:47:45.922 INFO:teuthology.orchestra.run.smithi082.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-20T18:47:45.974 INFO:teuthology.orchestra.run.smithi082.stdout:3 upgraded, 5 newly installed, 0 to remove and 345 not upgraded. 2024-09-20T18:47:45.974 INFO:teuthology.orchestra.run.smithi082.stdout:Need to get 113 MB of archives. 2024-09-20T18:47:45.975 INFO:teuthology.orchestra.run.smithi082.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-20T18:47:45.975 INFO:teuthology.orchestra.run.smithi082.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-122-generic amd64 5.15.0-122.132 [22.7 MB] 2024-09-20T18:47:46.088 INFO:teuthology.orchestra.run.smithi018.stdout:Reading package lists... 2024-09-20T18:47:46.106 DEBUG:teuthology.orchestra.run.smithi018:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-20T18:47:46.170 INFO:teuthology.orchestra.run.smithi018.stdout:Reading package lists... 2024-09-20T18:47:46.371 INFO:teuthology.orchestra.run.smithi082.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-122-generic amd64 5.15.0-122.132 [11.5 MB] 2024-09-20T18:47:46.384 INFO:teuthology.orchestra.run.smithi018.stdout:Building dependency tree... 2024-09-20T18:47:46.385 INFO:teuthology.orchestra.run.smithi018.stdout:Reading state information... 2024-09-20T18:47:46.462 INFO:teuthology.orchestra.run.smithi082.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-122-generic amd64 5.15.0-122.132 [63.9 MB] 2024-09-20T18:47:46.584 INFO:teuthology.orchestra.run.smithi018.stdout:The following packages were automatically installed and are no longer required: 2024-09-20T18:47:46.584 INFO:teuthology.orchestra.run.smithi018.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-20T18:47:46.584 INFO:teuthology.orchestra.run.smithi018.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-20T18:47:46.585 INFO:teuthology.orchestra.run.smithi018.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-20T18:47:46.585 INFO:teuthology.orchestra.run.smithi018.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-20T18:47:46.585 INFO:teuthology.orchestra.run.smithi018.stdout: python2.7-minimal 2024-09-20T18:47:46.585 INFO:teuthology.orchestra.run.smithi018.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-20T18:47:46.586 INFO:teuthology.orchestra.run.smithi018.stdout:The following additional packages will be installed: 2024-09-20T18:47:46.586 INFO:teuthology.orchestra.run.smithi018.stdout: linux-generic linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-20T18:47:46.587 INFO:teuthology.orchestra.run.smithi018.stdout: linux-headers-generic linux-image-5.15.0-122-generic 2024-09-20T18:47:46.587 INFO:teuthology.orchestra.run.smithi018.stdout: linux-modules-5.15.0-122-generic linux-modules-extra-5.15.0-122-generic 2024-09-20T18:47:46.588 INFO:teuthology.orchestra.run.smithi018.stdout:Suggested packages: 2024-09-20T18:47:46.588 INFO:teuthology.orchestra.run.smithi018.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-20T18:47:46.589 INFO:teuthology.orchestra.run.smithi018.stdout:Recommended packages: 2024-09-20T18:47:46.589 INFO:teuthology.orchestra.run.smithi018.stdout: thermald 2024-09-20T18:47:46.634 INFO:teuthology.orchestra.run.smithi018.stdout:The following NEW packages will be installed: 2024-09-20T18:47:46.634 INFO:teuthology.orchestra.run.smithi018.stdout: linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-20T18:47:46.634 INFO:teuthology.orchestra.run.smithi018.stdout: linux-image-5.15.0-122-generic linux-modules-5.15.0-122-generic 2024-09-20T18:47:46.634 INFO:teuthology.orchestra.run.smithi018.stdout: linux-modules-extra-5.15.0-122-generic 2024-09-20T18:47:46.636 INFO:teuthology.orchestra.run.smithi018.stdout:The following packages will be upgraded: 2024-09-20T18:47:46.636 INFO:teuthology.orchestra.run.smithi018.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-20T18:47:46.816 INFO:teuthology.orchestra.run.smithi018.stdout:3 upgraded, 5 newly installed, 0 to remove and 345 not upgraded. 2024-09-20T18:47:46.817 INFO:teuthology.orchestra.run.smithi018.stdout:Need to get 113 MB of archives. 2024-09-20T18:47:46.817 INFO:teuthology.orchestra.run.smithi018.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-20T18:47:46.817 INFO:teuthology.orchestra.run.smithi018.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-122-generic amd64 5.15.0-122.132 [22.7 MB] 2024-09-20T18:47:47.024 INFO:teuthology.orchestra.run.smithi137.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-122-generic amd64 5.15.0-122.132 [11.5 MB] 2024-09-20T18:47:47.263 INFO:teuthology.orchestra.run.smithi082.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.122.122 [1,692 B] 2024-09-20T18:47:47.264 INFO:teuthology.orchestra.run.smithi082.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.122.122 [2,436 B] 2024-09-20T18:47:47.264 INFO:teuthology.orchestra.run.smithi082.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122 all 5.15.0-122.132 [12.3 MB] 2024-09-20T18:47:47.373 INFO:teuthology.orchestra.run.smithi137.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-122-generic amd64 5.15.0-122.132 [63.9 MB] 2024-09-20T18:47:47.387 INFO:teuthology.orchestra.run.smithi082.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122-generic amd64 5.15.0-122.132 [2,827 kB] 2024-09-20T18:47:47.408 INFO:teuthology.orchestra.run.smithi082.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.122.122 [2,294 B] 2024-09-20T18:47:47.805 INFO:teuthology.orchestra.run.smithi082.stdout:Fetched 113 MB in 1s (76.6 MB/s) 2024-09-20T18:47:47.992 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package linux-modules-5.15.0-122-generic. 2024-09-20T18:47:48.228 INFO:teuthology.orchestra.run.smithi018.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-122-generic amd64 5.15.0-122.132 [11.5 MB] 2024-09-20T18:47:48.587 INFO:teuthology.orchestra.run.smithi018.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-122-generic amd64 5.15.0-122.132 [63.9 MB] 2024-09-20T18:47:49.569 INFO:teuthology.orchestra.run.smithi137.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.122.122 [1,692 B] 2024-09-20T18:47:49.569 INFO:teuthology.orchestra.run.smithi137.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.122.122 [2,436 B] 2024-09-20T18:47:49.569 INFO:teuthology.orchestra.run.smithi137.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122 all 5.15.0-122.132 [12.3 MB] 2024-09-20T18:47:49.909 INFO:teuthology.orchestra.run.smithi137.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122-generic amd64 5.15.0-122.132 [2,827 kB] 2024-09-20T18:47:49.943 INFO:teuthology.orchestra.run.smithi082.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-09-20T18:47:49.948 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../0-linux-modules-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-20T18:47:49.990 INFO:teuthology.orchestra.run.smithi137.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.122.122 [2,294 B] 2024-09-20T18:47:50.031 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:47:50.409 INFO:teuthology.orchestra.run.smithi137.stdout:Fetched 113 MB in 5s (24.7 MB/s) 2024-09-20T18:47:50.606 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package linux-modules-5.15.0-122-generic. 2024-09-20T18:47:50.734 INFO:teuthology.orchestra.run.smithi018.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.122.122 [1,692 B] 2024-09-20T18:47:50.734 INFO:teuthology.orchestra.run.smithi018.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.122.122 [2,436 B] 2024-09-20T18:47:50.815 INFO:teuthology.orchestra.run.smithi018.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122 all 5.15.0-122.132 [12.3 MB] 2024-09-20T18:47:51.383 INFO:teuthology.orchestra.run.smithi018.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122-generic amd64 5.15.0-122.132 [2,827 kB] 2024-09-20T18:47:51.535 INFO:teuthology.orchestra.run.smithi018.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.122.122 [2,294 B] 2024-09-20T18:47:51.969 INFO:teuthology.orchestra.run.smithi018.stdout:Fetched 113 MB in 5s (23.2 MB/s) 2024-09-20T18:47:52.138 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package linux-modules-5.15.0-122-generic. 2024-09-20T18:47:52.682 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package linux-image-5.15.0-122-generic. 2024-09-20T18:47:52.703 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../1-linux-image-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-20T18:47:52.713 INFO:teuthology.orchestra.run.smithi137.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-09-20T18:47:52.718 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../0-linux-modules-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-20T18:47:52.794 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:47:52.937 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:47:53.285 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-122-generic. 2024-09-20T18:47:53.306 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-20T18:47:53.335 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:47:54.093 INFO:teuthology.orchestra.run.smithi018.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-09-20T18:47:54.097 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../0-linux-modules-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-20T18:47:54.176 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:47:55.371 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package linux-image-5.15.0-122-generic. 2024-09-20T18:47:55.393 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../1-linux-image-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-20T18:47:55.496 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:47:55.958 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-122-generic. 2024-09-20T18:47:55.979 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-20T18:47:56.024 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:47:56.502 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package linux-image-5.15.0-122-generic. 2024-09-20T18:47:56.524 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../1-linux-image-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-20T18:47:56.606 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:47:57.047 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-122-generic. 2024-09-20T18:47:57.067 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-20T18:47:57.097 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:47:59.718 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../3-linux-generic_5.15.0.122.122_amd64.deb ... 2024-09-20T18:47:59.837 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking linux-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-20T18:48:00.195 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.122.122_amd64.deb ... 2024-09-20T18:48:00.316 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking linux-image-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-20T18:48:00.618 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package linux-headers-5.15.0-122. 2024-09-20T18:48:00.629 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../5-linux-headers-5.15.0-122_5.15.0-122.132_all.deb ... 2024-09-20T18:48:00.668 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-20T18:48:02.506 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../3-linux-generic_5.15.0.122.122_amd64.deb ... 2024-09-20T18:48:02.617 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking linux-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-20T18:48:02.882 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.122.122_amd64.deb ... 2024-09-20T18:48:03.020 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking linux-image-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-20T18:48:03.103 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../3-linux-generic_5.15.0.122.122_amd64.deb ... 2024-09-20T18:48:03.229 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking linux-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-20T18:48:03.323 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package linux-headers-5.15.0-122. 2024-09-20T18:48:03.345 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../5-linux-headers-5.15.0-122_5.15.0-122.132_all.deb ... 2024-09-20T18:48:03.390 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-20T18:48:03.579 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.122.122_amd64.deb ... 2024-09-20T18:48:03.691 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking linux-image-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-20T18:48:03.960 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package linux-headers-5.15.0-122. 2024-09-20T18:48:03.983 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../5-linux-headers-5.15.0-122_5.15.0-122.132_all.deb ... 2024-09-20T18:48:04.027 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-20T18:48:06.153 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package linux-headers-5.15.0-122-generic. 2024-09-20T18:48:06.190 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../6-linux-headers-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-20T18:48:06.228 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:48:08.778 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.122.122_amd64.deb ... 2024-09-20T18:48:08.904 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking linux-headers-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-20T18:48:09.056 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package linux-headers-5.15.0-122-generic. 2024-09-20T18:48:09.093 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../6-linux-headers-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-20T18:48:09.131 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:48:09.236 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-20T18:48:09.358 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:48:09.493 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up linux-headers-generic (5.15.0.122.122) ... 2024-09-20T18:48:09.647 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:48:09.743 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package linux-headers-5.15.0-122-generic. 2024-09-20T18:48:09.780 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../6-linux-headers-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-20T18:48:09.817 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:48:10.959 INFO:teuthology.orchestra.run.smithi082.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-20T18:48:10.959 INFO:teuthology.orchestra.run.smithi082.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-20T18:48:10.959 INFO:teuthology.orchestra.run.smithi082.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-122-generic 2024-09-20T18:48:10.959 INFO:teuthology.orchestra.run.smithi082.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-122-generic 2024-09-20T18:48:11.122 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:48:12.742 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.122.122_amd64.deb ... 2024-09-20T18:48:12.867 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking linux-headers-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-20T18:48:12.957 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up linux-image-generic (5.15.0.122.122) ... 2024-09-20T18:48:13.083 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up linux-generic (5.15.0.122.122) ... 2024-09-20T18:48:13.208 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-20T18:48:13.209 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:48:13.355 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:48:13.481 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up linux-headers-generic (5.15.0.122.122) ... 2024-09-20T18:48:13.610 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:48:13.623 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.122.122_amd64.deb ... 2024-09-20T18:48:13.745 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking linux-headers-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-20T18:48:14.097 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-20T18:48:14.225 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:48:14.351 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up linux-headers-generic (5.15.0.122.122) ... 2024-09-20T18:48:14.464 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:48:14.611 INFO:teuthology.orchestra.run.smithi082.stdout:Processing triggers for linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:48:14.661 INFO:teuthology.orchestra.run.smithi082.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-20T18:48:14.661 INFO:teuthology.orchestra.run.smithi082.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-122-generic 2024-09-20T18:48:14.929 INFO:teuthology.orchestra.run.smithi137.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-20T18:48:14.929 INFO:teuthology.orchestra.run.smithi137.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-20T18:48:14.929 INFO:teuthology.orchestra.run.smithi137.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-122-generic 2024-09-20T18:48:14.929 INFO:teuthology.orchestra.run.smithi137.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-122-generic 2024-09-20T18:48:15.078 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:48:15.805 INFO:teuthology.orchestra.run.smithi018.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-20T18:48:15.806 INFO:teuthology.orchestra.run.smithi018.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-20T18:48:15.806 INFO:teuthology.orchestra.run.smithi018.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-122-generic 2024-09-20T18:48:15.806 INFO:teuthology.orchestra.run.smithi018.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-122-generic 2024-09-20T18:48:15.965 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:48:16.463 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up linux-image-generic (5.15.0.122.122) ... 2024-09-20T18:48:16.572 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up linux-generic (5.15.0.122.122) ... 2024-09-20T18:48:16.689 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:48:17.416 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up linux-image-generic (5.15.0.122.122) ... 2024-09-20T18:48:17.542 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up linux-generic (5.15.0.122.122) ... 2024-09-20T18:48:17.668 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:48:18.792 INFO:teuthology.orchestra.run.smithi137.stdout:Processing triggers for linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:48:18.850 INFO:teuthology.orchestra.run.smithi137.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-20T18:48:18.850 INFO:teuthology.orchestra.run.smithi137.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-122-generic 2024-09-20T18:48:19.245 INFO:teuthology.orchestra.run.smithi018.stdout:Processing triggers for linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-20T18:48:19.303 INFO:teuthology.orchestra.run.smithi018.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-20T18:48:19.303 INFO:teuthology.orchestra.run.smithi018.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-122-generic 2024-09-20T18:48:28.825 INFO:teuthology.orchestra.run.smithi082.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-20T18:48:28.825 INFO:teuthology.orchestra.run.smithi082.stdout:Sourcing file `/etc/default/grub' 2024-09-20T18:48:28.835 INFO:teuthology.orchestra.run.smithi082.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-20T18:48:28.848 INFO:teuthology.orchestra.run.smithi082.stdout:Generating grub configuration file ... 2024-09-20T18:48:29.128 INFO:teuthology.orchestra.run.smithi082.stdout:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-20T18:48:29.144 INFO:teuthology.orchestra.run.smithi082.stdout:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-20T18:48:29.428 INFO:teuthology.orchestra.run.smithi082.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-20T18:48:29.434 INFO:teuthology.orchestra.run.smithi082.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-20T18:48:29.499 INFO:teuthology.orchestra.run.smithi082.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-20T18:48:29.504 INFO:teuthology.orchestra.run.smithi082.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-20T18:48:29.679 INFO:teuthology.orchestra.run.smithi082.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-20T18:48:29.679 INFO:teuthology.orchestra.run.smithi082.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-20T18:48:29.679 INFO:teuthology.orchestra.run.smithi082.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-20T18:48:29.727 INFO:teuthology.orchestra.run.smithi082.stdout:done 2024-09-20T18:48:30.204 DEBUG:teuthology.orchestra.run.smithi082:> dpkg -s linux-image-generic 2024-09-20T18:48:30.224 INFO:teuthology.orchestra.run.smithi082.stdout:Package: linux-image-generic 2024-09-20T18:48:30.225 INFO:teuthology.orchestra.run.smithi082.stdout:Status: install ok installed 2024-09-20T18:48:30.225 INFO:teuthology.orchestra.run.smithi082.stdout:Priority: optional 2024-09-20T18:48:30.225 INFO:teuthology.orchestra.run.smithi082.stdout:Section: kernel 2024-09-20T18:48:30.225 INFO:teuthology.orchestra.run.smithi082.stdout:Installed-Size: 21 2024-09-20T18:48:30.225 INFO:teuthology.orchestra.run.smithi082.stdout:Maintainer: Ubuntu Kernel Team 2024-09-20T18:48:30.225 INFO:teuthology.orchestra.run.smithi082.stdout:Architecture: amd64 2024-09-20T18:48:30.225 INFO:teuthology.orchestra.run.smithi082.stdout:Source: linux-meta 2024-09-20T18:48:30.225 INFO:teuthology.orchestra.run.smithi082.stdout:Version: 5.15.0.122.122 2024-09-20T18:48:30.225 INFO:teuthology.orchestra.run.smithi082.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-20T18:48:30.225 INFO:teuthology.orchestra.run.smithi082.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-20T18:48:30.225 INFO:teuthology.orchestra.run.smithi082.stdout:Recommends: thermald 2024-09-20T18:48:30.225 INFO:teuthology.orchestra.run.smithi082.stdout:Description: Generic Linux kernel image 2024-09-20T18:48:30.226 INFO:teuthology.orchestra.run.smithi082.stdout: This package will always depend on the latest generic kernel image 2024-09-20T18:48:30.226 INFO:teuthology.orchestra.run.smithi082.stdout: available. 2024-09-20T18:48:30.226 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-122-generic 2024-09-20T18:48:30.226 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-20T18:48:30.226 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-20T18:48:30.226 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-20T18:48:30.226 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi082.front.sepia.ceph.com, path=None, version=distro) 2024-09-20T18:48:30.227 DEBUG:teuthology.orchestra.run.smithi082:> sudo apt-get clean 2024-09-20T18:48:30.421 DEBUG:teuthology.orchestra.run.smithi082:> sudo apt-get update 2024-09-20T18:48:30.545 INFO:teuthology.orchestra.run.smithi082.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-20T18:48:30.545 INFO:teuthology.orchestra.run.smithi082.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-20T18:48:30.555 INFO:teuthology.orchestra.run.smithi082.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-20T18:48:30.573 INFO:teuthology.orchestra.run.smithi082.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-20T18:48:31.896 INFO:teuthology.orchestra.run.smithi082.stdout:Reading package lists... 2024-09-20T18:48:31.915 DEBUG:teuthology.orchestra.run.smithi082:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-20T18:48:31.968 INFO:teuthology.orchestra.run.smithi082.stdout:Reading package lists... 2024-09-20T18:48:32.156 INFO:teuthology.orchestra.run.smithi082.stdout:Building dependency tree... 2024-09-20T18:48:32.157 INFO:teuthology.orchestra.run.smithi082.stdout:Reading state information... 2024-09-20T18:48:32.329 INFO:teuthology.orchestra.run.smithi082.stdout:linux-image-generic is already the newest version (5.15.0.122.122). 2024-09-20T18:48:32.329 INFO:teuthology.orchestra.run.smithi082.stdout:The following packages were automatically installed and are no longer required: 2024-09-20T18:48:32.329 INFO:teuthology.orchestra.run.smithi082.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-20T18:48:32.329 INFO:teuthology.orchestra.run.smithi082.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-20T18:48:32.329 INFO:teuthology.orchestra.run.smithi082.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-20T18:48:32.330 INFO:teuthology.orchestra.run.smithi082.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-20T18:48:32.330 INFO:teuthology.orchestra.run.smithi082.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-20T18:48:32.330 INFO:teuthology.orchestra.run.smithi082.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-20T18:48:32.369 INFO:teuthology.orchestra.run.smithi082.stdout:0 upgraded, 0 newly installed, 0 to remove and 345 not upgraded. 2024-09-20T18:48:32.371 DEBUG:teuthology.orchestra.run.smithi082:> dpkg -s linux-image-generic 2024-09-20T18:48:32.425 INFO:teuthology.orchestra.run.smithi082.stdout:Package: linux-image-generic 2024-09-20T18:48:32.425 INFO:teuthology.orchestra.run.smithi082.stdout:Status: install ok installed 2024-09-20T18:48:32.425 INFO:teuthology.orchestra.run.smithi082.stdout:Priority: optional 2024-09-20T18:48:32.425 INFO:teuthology.orchestra.run.smithi082.stdout:Section: kernel 2024-09-20T18:48:32.425 INFO:teuthology.orchestra.run.smithi082.stdout:Installed-Size: 21 2024-09-20T18:48:32.425 INFO:teuthology.orchestra.run.smithi082.stdout:Maintainer: Ubuntu Kernel Team 2024-09-20T18:48:32.425 INFO:teuthology.orchestra.run.smithi082.stdout:Architecture: amd64 2024-09-20T18:48:32.426 INFO:teuthology.orchestra.run.smithi082.stdout:Source: linux-meta 2024-09-20T18:48:32.426 INFO:teuthology.orchestra.run.smithi082.stdout:Version: 5.15.0.122.122 2024-09-20T18:48:32.426 INFO:teuthology.orchestra.run.smithi082.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-20T18:48:32.426 INFO:teuthology.orchestra.run.smithi082.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-20T18:48:32.426 INFO:teuthology.orchestra.run.smithi082.stdout:Recommends: thermald 2024-09-20T18:48:32.426 INFO:teuthology.orchestra.run.smithi082.stdout:Description: Generic Linux kernel image 2024-09-20T18:48:32.426 INFO:teuthology.orchestra.run.smithi082.stdout: This package will always depend on the latest generic kernel image 2024-09-20T18:48:32.426 INFO:teuthology.orchestra.run.smithi082.stdout: available. 2024-09-20T18:48:32.426 DEBUG:teuthology.orchestra.run.smithi082:> mktemp 2024-09-20T18:48:32.473 INFO:teuthology.orchestra.run.smithi082.stdout:/tmp/tmp.znikqhfmRs 2024-09-20T18:48:32.473 DEBUG:teuthology.orchestra.run.smithi082:> sudo cp /boot/grub/grub.cfg /tmp/tmp.znikqhfmRs 2024-09-20T18:48:32.529 DEBUG:teuthology.orchestra.run.smithi082:> sudo chmod 0666 /tmp/tmp.znikqhfmRs 2024-09-20T18:48:32.651 DEBUG:teuthology.orchestra.remote:smithi082:/tmp/tmp.znikqhfmRs is 10KB 2024-09-20T18:48:32.663 DEBUG:teuthology.orchestra.run.smithi082:> rm -fr /tmp/tmp.znikqhfmRs 2024-09-20T18:48:32.667 DEBUG:teuthology.orchestra.run.smithi082:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-20T18:48:32.722 DEBUG:teuthology.orchestra.run.smithi082:> set -ex 2024-09-20T18:48:32.722 DEBUG:teuthology.orchestra.run.smithi082:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-20T18:48:32.722 DEBUG:teuthology.orchestra.run.smithi082:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-20T18:48:32.788 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-122-generic 2024-09-20T18:48:32.788 DEBUG:teuthology.orchestra.run.smithi082:> sudo update-grub 2024-09-20T18:48:32.974 INFO:teuthology.orchestra.run.smithi137.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-20T18:48:32.975 INFO:teuthology.orchestra.run.smithi137.stdout:Sourcing file `/etc/default/grub' 2024-09-20T18:48:32.982 INFO:teuthology.orchestra.run.smithi137.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-20T18:48:32.997 INFO:teuthology.orchestra.run.smithi137.stdout:Generating grub configuration file ... 2024-09-20T18:48:33.370 INFO:teuthology.orchestra.run.smithi137.stdout:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-20T18:48:33.397 INFO:teuthology.orchestra.run.smithi137.stdout:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-20T18:48:33.606 INFO:teuthology.orchestra.run.smithi018.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-20T18:48:33.607 INFO:teuthology.orchestra.run.smithi018.stdout:Sourcing file `/etc/default/grub' 2024-09-20T18:48:33.611 INFO:teuthology.orchestra.run.smithi018.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-20T18:48:33.649 INFO:teuthology.orchestra.run.smithi018.stdout:Generating grub configuration file ... 2024-09-20T18:48:33.828 INFO:teuthology.orchestra.run.smithi137.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-20T18:48:33.834 INFO:teuthology.orchestra.run.smithi137.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-20T18:48:33.903 INFO:teuthology.orchestra.run.smithi137.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-20T18:48:33.908 INFO:teuthology.orchestra.run.smithi137.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-20T18:48:34.023 INFO:teuthology.orchestra.run.smithi082.stderr:Sourcing file `/etc/default/grub' 2024-09-20T18:48:34.024 INFO:teuthology.orchestra.run.smithi082.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-20T18:48:34.026 INFO:teuthology.orchestra.run.smithi082.stderr:Generating grub configuration file ... 2024-09-20T18:48:34.048 INFO:teuthology.orchestra.run.smithi018.stdout:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-20T18:48:34.063 INFO:teuthology.orchestra.run.smithi137.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-20T18:48:34.063 INFO:teuthology.orchestra.run.smithi137.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-20T18:48:34.063 INFO:teuthology.orchestra.run.smithi137.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-20T18:48:34.064 INFO:teuthology.orchestra.run.smithi018.stdout:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-20T18:48:34.118 INFO:teuthology.orchestra.run.smithi137.stdout:done 2024-09-20T18:48:34.211 INFO:teuthology.orchestra.run.smithi082.stderr:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-20T18:48:34.217 INFO:teuthology.orchestra.run.smithi082.stderr:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-20T18:48:34.386 INFO:teuthology.orchestra.run.smithi018.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-20T18:48:34.391 INFO:teuthology.orchestra.run.smithi018.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-20T18:48:34.453 INFO:teuthology.orchestra.run.smithi082.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-20T18:48:34.459 INFO:teuthology.orchestra.run.smithi082.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-20T18:48:34.466 INFO:teuthology.orchestra.run.smithi018.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-20T18:48:34.472 INFO:teuthology.orchestra.run.smithi018.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-20T18:48:34.499 INFO:teuthology.orchestra.run.smithi082.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-20T18:48:34.504 INFO:teuthology.orchestra.run.smithi082.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-20T18:48:34.622 INFO:teuthology.orchestra.run.smithi082.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-20T18:48:34.623 INFO:teuthology.orchestra.run.smithi082.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-20T18:48:34.623 INFO:teuthology.orchestra.run.smithi082.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-20T18:48:34.630 INFO:teuthology.orchestra.run.smithi018.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-20T18:48:34.630 INFO:teuthology.orchestra.run.smithi018.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-20T18:48:34.630 INFO:teuthology.orchestra.run.smithi018.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-20T18:48:34.648 INFO:teuthology.orchestra.run.smithi082.stderr:done 2024-09-20T18:48:34.650 DEBUG:teuthology.orchestra.run.smithi082:> sudo shutdown -r now 2024-09-20T18:48:34.660 DEBUG:teuthology.orchestra.run.smithi137:> dpkg -s linux-image-generic 2024-09-20T18:48:34.678 INFO:teuthology.orchestra.run.smithi018.stdout:done 2024-09-20T18:48:34.687 INFO:teuthology.orchestra.run.smithi137.stdout:Package: linux-image-generic 2024-09-20T18:48:34.688 INFO:teuthology.orchestra.run.smithi137.stdout:Status: install ok installed 2024-09-20T18:48:34.688 INFO:teuthology.orchestra.run.smithi137.stdout:Priority: optional 2024-09-20T18:48:34.688 INFO:teuthology.orchestra.run.smithi137.stdout:Section: kernel 2024-09-20T18:48:34.688 INFO:teuthology.orchestra.run.smithi137.stdout:Installed-Size: 21 2024-09-20T18:48:34.688 INFO:teuthology.orchestra.run.smithi137.stdout:Maintainer: Ubuntu Kernel Team 2024-09-20T18:48:34.688 INFO:teuthology.orchestra.run.smithi137.stdout:Architecture: amd64 2024-09-20T18:48:34.688 INFO:teuthology.orchestra.run.smithi137.stdout:Source: linux-meta 2024-09-20T18:48:34.688 INFO:teuthology.orchestra.run.smithi137.stdout:Version: 5.15.0.122.122 2024-09-20T18:48:34.688 INFO:teuthology.orchestra.run.smithi137.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-20T18:48:34.688 INFO:teuthology.orchestra.run.smithi137.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-20T18:48:34.689 INFO:teuthology.orchestra.run.smithi137.stdout:Recommends: thermald 2024-09-20T18:48:34.689 INFO:teuthology.orchestra.run.smithi137.stdout:Description: Generic Linux kernel image 2024-09-20T18:48:34.689 INFO:teuthology.orchestra.run.smithi137.stdout: This package will always depend on the latest generic kernel image 2024-09-20T18:48:34.689 INFO:teuthology.orchestra.run.smithi137.stdout: available. 2024-09-20T18:48:34.690 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-122-generic 2024-09-20T18:48:34.690 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-20T18:48:34.690 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-20T18:48:34.690 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-09-20T18:48:34.690 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi137.front.sepia.ceph.com, path=None, version=distro) 2024-09-20T18:48:34.690 DEBUG:teuthology.orchestra.run.smithi137:> sudo apt-get clean 2024-09-20T18:48:34.853 DEBUG:teuthology.orchestra.run.smithi137:> sudo apt-get update 2024-09-20T18:48:34.978 INFO:teuthology.orchestra.run.smithi137.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-20T18:48:35.100 INFO:teuthology.orchestra.run.smithi137.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-20T18:48:35.183 INFO:teuthology.orchestra.run.smithi137.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-20T18:48:35.216 DEBUG:teuthology.orchestra.run.smithi018:> dpkg -s linux-image-generic 2024-09-20T18:48:35.236 INFO:teuthology.orchestra.run.smithi018.stdout:Package: linux-image-generic 2024-09-20T18:48:35.236 INFO:teuthology.orchestra.run.smithi018.stdout:Status: install ok installed 2024-09-20T18:48:35.236 INFO:teuthology.orchestra.run.smithi018.stdout:Priority: optional 2024-09-20T18:48:35.236 INFO:teuthology.orchestra.run.smithi018.stdout:Section: kernel 2024-09-20T18:48:35.236 INFO:teuthology.orchestra.run.smithi018.stdout:Installed-Size: 21 2024-09-20T18:48:35.236 INFO:teuthology.orchestra.run.smithi018.stdout:Maintainer: Ubuntu Kernel Team 2024-09-20T18:48:35.237 INFO:teuthology.orchestra.run.smithi018.stdout:Architecture: amd64 2024-09-20T18:48:35.237 INFO:teuthology.orchestra.run.smithi018.stdout:Source: linux-meta 2024-09-20T18:48:35.237 INFO:teuthology.orchestra.run.smithi018.stdout:Version: 5.15.0.122.122 2024-09-20T18:48:35.237 INFO:teuthology.orchestra.run.smithi018.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-20T18:48:35.237 INFO:teuthology.orchestra.run.smithi018.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-20T18:48:35.237 INFO:teuthology.orchestra.run.smithi018.stdout:Recommends: thermald 2024-09-20T18:48:35.237 INFO:teuthology.orchestra.run.smithi018.stdout:Description: Generic Linux kernel image 2024-09-20T18:48:35.237 INFO:teuthology.orchestra.run.smithi018.stdout: This package will always depend on the latest generic kernel image 2024-09-20T18:48:35.237 INFO:teuthology.orchestra.run.smithi018.stdout: available. 2024-09-20T18:48:35.237 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-122-generic 2024-09-20T18:48:35.237 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-20T18:48:35.238 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-20T18:48:35.238 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-20T18:48:35.238 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi018.front.sepia.ceph.com, path=None, version=distro) 2024-09-20T18:48:35.238 DEBUG:teuthology.orchestra.run.smithi018:> sudo apt-get clean 2024-09-20T18:48:35.262 INFO:teuthology.orchestra.run.smithi137.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-20T18:48:35.411 DEBUG:teuthology.orchestra.run.smithi018:> sudo apt-get update 2024-09-20T18:48:35.544 INFO:teuthology.orchestra.run.smithi018.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-20T18:48:35.554 INFO:teuthology.orchestra.run.smithi018.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-20T18:48:35.571 INFO:teuthology.orchestra.run.smithi018.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-20T18:48:35.665 INFO:teuthology.orchestra.run.smithi018.stdout:Hit:4 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-20T18:48:36.373 INFO:teuthology.orchestra.run.smithi137.stdout:Reading package lists... 2024-09-20T18:48:36.391 DEBUG:teuthology.orchestra.run.smithi137:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-20T18:48:36.456 INFO:teuthology.orchestra.run.smithi137.stdout:Reading package lists... 2024-09-20T18:48:36.669 INFO:teuthology.orchestra.run.smithi137.stdout:Building dependency tree... 2024-09-20T18:48:36.669 INFO:teuthology.orchestra.run.smithi137.stdout:Reading state information... 2024-09-20T18:48:36.860 INFO:teuthology.orchestra.run.smithi137.stdout:linux-image-generic is already the newest version (5.15.0.122.122). 2024-09-20T18:48:36.861 INFO:teuthology.orchestra.run.smithi137.stdout:The following packages were automatically installed and are no longer required: 2024-09-20T18:48:36.861 INFO:teuthology.orchestra.run.smithi137.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-20T18:48:36.861 INFO:teuthology.orchestra.run.smithi137.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-20T18:48:36.861 INFO:teuthology.orchestra.run.smithi137.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-20T18:48:36.861 INFO:teuthology.orchestra.run.smithi137.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-20T18:48:36.861 INFO:teuthology.orchestra.run.smithi137.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-20T18:48:36.861 INFO:teuthology.orchestra.run.smithi137.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-20T18:48:36.901 INFO:teuthology.orchestra.run.smithi137.stdout:0 upgraded, 0 newly installed, 0 to remove and 345 not upgraded. 2024-09-20T18:48:36.903 DEBUG:teuthology.orchestra.run.smithi137:> dpkg -s linux-image-generic 2024-09-20T18:48:36.919 INFO:teuthology.orchestra.run.smithi137.stdout:Package: linux-image-generic 2024-09-20T18:48:36.919 INFO:teuthology.orchestra.run.smithi137.stdout:Status: install ok installed 2024-09-20T18:48:36.919 INFO:teuthology.orchestra.run.smithi137.stdout:Priority: optional 2024-09-20T18:48:36.919 INFO:teuthology.orchestra.run.smithi137.stdout:Section: kernel 2024-09-20T18:48:36.919 INFO:teuthology.orchestra.run.smithi137.stdout:Installed-Size: 21 2024-09-20T18:48:36.919 INFO:teuthology.orchestra.run.smithi137.stdout:Maintainer: Ubuntu Kernel Team 2024-09-20T18:48:36.919 INFO:teuthology.orchestra.run.smithi137.stdout:Architecture: amd64 2024-09-20T18:48:36.919 INFO:teuthology.orchestra.run.smithi137.stdout:Source: linux-meta 2024-09-20T18:48:36.919 INFO:teuthology.orchestra.run.smithi137.stdout:Version: 5.15.0.122.122 2024-09-20T18:48:36.920 INFO:teuthology.orchestra.run.smithi137.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-20T18:48:36.920 INFO:teuthology.orchestra.run.smithi137.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-20T18:48:36.920 INFO:teuthology.orchestra.run.smithi137.stdout:Recommends: thermald 2024-09-20T18:48:36.920 INFO:teuthology.orchestra.run.smithi137.stdout:Description: Generic Linux kernel image 2024-09-20T18:48:36.920 INFO:teuthology.orchestra.run.smithi137.stdout: This package will always depend on the latest generic kernel image 2024-09-20T18:48:36.920 INFO:teuthology.orchestra.run.smithi137.stdout: available. 2024-09-20T18:48:36.920 DEBUG:teuthology.orchestra.run.smithi137:> mktemp 2024-09-20T18:48:36.971 INFO:teuthology.orchestra.run.smithi137.stdout:/tmp/tmp.UylSIKeDvS 2024-09-20T18:48:36.971 DEBUG:teuthology.orchestra.run.smithi137:> sudo cp /boot/grub/grub.cfg /tmp/tmp.UylSIKeDvS 2024-09-20T18:48:37.031 DEBUG:teuthology.orchestra.run.smithi137:> sudo chmod 0666 /tmp/tmp.UylSIKeDvS 2024-09-20T18:48:37.053 INFO:teuthology.orchestra.run.smithi018.stdout:Reading package lists... 2024-09-20T18:48:37.073 DEBUG:teuthology.orchestra.run.smithi018:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-20T18:48:37.139 INFO:teuthology.orchestra.run.smithi018.stdout:Reading package lists... 2024-09-20T18:48:37.144 DEBUG:teuthology.orchestra.remote:smithi137:/tmp/tmp.UylSIKeDvS is 10KB 2024-09-20T18:48:37.157 DEBUG:teuthology.orchestra.run.smithi137:> rm -fr /tmp/tmp.UylSIKeDvS 2024-09-20T18:48:37.162 DEBUG:teuthology.orchestra.run.smithi137:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-20T18:48:37.214 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-09-20T18:48:37.214 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-20T18:48:37.215 DEBUG:teuthology.orchestra.run.smithi137:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-20T18:48:37.279 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-122-generic 2024-09-20T18:48:37.279 DEBUG:teuthology.orchestra.run.smithi137:> sudo update-grub 2024-09-20T18:48:37.349 INFO:teuthology.orchestra.run.smithi018.stdout:Building dependency tree... 2024-09-20T18:48:37.350 INFO:teuthology.orchestra.run.smithi018.stdout:Reading state information... 2024-09-20T18:48:37.547 INFO:teuthology.orchestra.run.smithi018.stdout:linux-image-generic is already the newest version (5.15.0.122.122). 2024-09-20T18:48:37.547 INFO:teuthology.orchestra.run.smithi018.stdout:The following packages were automatically installed and are no longer required: 2024-09-20T18:48:37.547 INFO:teuthology.orchestra.run.smithi018.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-20T18:48:37.547 INFO:teuthology.orchestra.run.smithi018.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-20T18:48:37.547 INFO:teuthology.orchestra.run.smithi018.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-20T18:48:37.548 INFO:teuthology.orchestra.run.smithi018.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-20T18:48:37.548 INFO:teuthology.orchestra.run.smithi018.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-20T18:48:37.548 INFO:teuthology.orchestra.run.smithi018.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-20T18:48:37.594 INFO:teuthology.orchestra.run.smithi018.stdout:0 upgraded, 0 newly installed, 0 to remove and 345 not upgraded. 2024-09-20T18:48:37.596 DEBUG:teuthology.orchestra.run.smithi018:> dpkg -s linux-image-generic 2024-09-20T18:48:37.613 INFO:teuthology.orchestra.run.smithi018.stdout:Package: linux-image-generic 2024-09-20T18:48:37.613 INFO:teuthology.orchestra.run.smithi018.stdout:Status: install ok installed 2024-09-20T18:48:37.613 INFO:teuthology.orchestra.run.smithi018.stdout:Priority: optional 2024-09-20T18:48:37.613 INFO:teuthology.orchestra.run.smithi018.stdout:Section: kernel 2024-09-20T18:48:37.613 INFO:teuthology.orchestra.run.smithi018.stdout:Installed-Size: 21 2024-09-20T18:48:37.613 INFO:teuthology.orchestra.run.smithi018.stdout:Maintainer: Ubuntu Kernel Team 2024-09-20T18:48:37.613 INFO:teuthology.orchestra.run.smithi018.stdout:Architecture: amd64 2024-09-20T18:48:37.613 INFO:teuthology.orchestra.run.smithi018.stdout:Source: linux-meta 2024-09-20T18:48:37.613 INFO:teuthology.orchestra.run.smithi018.stdout:Version: 5.15.0.122.122 2024-09-20T18:48:37.613 INFO:teuthology.orchestra.run.smithi018.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-20T18:48:37.613 INFO:teuthology.orchestra.run.smithi018.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-20T18:48:37.613 INFO:teuthology.orchestra.run.smithi018.stdout:Recommends: thermald 2024-09-20T18:48:37.614 INFO:teuthology.orchestra.run.smithi018.stdout:Description: Generic Linux kernel image 2024-09-20T18:48:37.614 INFO:teuthology.orchestra.run.smithi018.stdout: This package will always depend on the latest generic kernel image 2024-09-20T18:48:37.614 INFO:teuthology.orchestra.run.smithi018.stdout: available. 2024-09-20T18:48:37.614 DEBUG:teuthology.orchestra.run.smithi018:> mktemp 2024-09-20T18:48:37.665 INFO:teuthology.orchestra.run.smithi018.stdout:/tmp/tmp.qp54LwFOeN 2024-09-20T18:48:37.665 DEBUG:teuthology.orchestra.run.smithi018:> sudo cp /boot/grub/grub.cfg /tmp/tmp.qp54LwFOeN 2024-09-20T18:48:37.731 DEBUG:teuthology.orchestra.run.smithi018:> sudo chmod 0666 /tmp/tmp.qp54LwFOeN 2024-09-20T18:48:37.862 DEBUG:teuthology.orchestra.remote:smithi018:/tmp/tmp.qp54LwFOeN is 10KB 2024-09-20T18:48:37.875 DEBUG:teuthology.orchestra.run.smithi018:> rm -fr /tmp/tmp.qp54LwFOeN 2024-09-20T18:48:37.880 DEBUG:teuthology.orchestra.run.smithi018:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-20T18:48:37.934 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-20T18:48:37.934 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-20T18:48:37.934 DEBUG:teuthology.orchestra.run.smithi018:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-20T18:48:38.012 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-122-generic 2024-09-20T18:48:38.012 DEBUG:teuthology.orchestra.run.smithi018:> sudo update-grub 2024-09-20T18:48:38.587 INFO:teuthology.orchestra.run.smithi137.stderr:Sourcing file `/etc/default/grub' 2024-09-20T18:48:38.588 INFO:teuthology.orchestra.run.smithi137.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-20T18:48:38.591 INFO:teuthology.orchestra.run.smithi137.stderr:Generating grub configuration file ... 2024-09-20T18:48:38.829 INFO:teuthology.orchestra.run.smithi137.stderr:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-20T18:48:38.835 INFO:teuthology.orchestra.run.smithi137.stderr:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-20T18:48:39.170 INFO:teuthology.orchestra.run.smithi137.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-20T18:48:39.175 INFO:teuthology.orchestra.run.smithi137.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-20T18:48:39.219 INFO:teuthology.orchestra.run.smithi137.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-20T18:48:39.224 INFO:teuthology.orchestra.run.smithi137.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-20T18:48:39.228 INFO:teuthology.orchestra.run.smithi018.stderr:Sourcing file `/etc/default/grub' 2024-09-20T18:48:39.230 INFO:teuthology.orchestra.run.smithi018.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-20T18:48:39.232 INFO:teuthology.orchestra.run.smithi018.stderr:Generating grub configuration file ... 2024-09-20T18:48:39.356 INFO:teuthology.orchestra.run.smithi137.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-20T18:48:39.356 INFO:teuthology.orchestra.run.smithi137.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-20T18:48:39.356 INFO:teuthology.orchestra.run.smithi137.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-20T18:48:39.367 INFO:teuthology.orchestra.run.smithi137.stderr:done 2024-09-20T18:48:39.369 DEBUG:teuthology.orchestra.run.smithi137:> sudo shutdown -r now 2024-09-20T18:48:39.427 INFO:teuthology.orchestra.run.smithi018.stderr:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-20T18:48:39.434 INFO:teuthology.orchestra.run.smithi018.stderr:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-20T18:48:39.663 INFO:teuthology.orchestra.run.smithi018.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-20T18:48:39.669 INFO:teuthology.orchestra.run.smithi018.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-20T18:48:39.713 INFO:teuthology.orchestra.run.smithi018.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-20T18:48:39.718 INFO:teuthology.orchestra.run.smithi018.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-20T18:48:39.831 INFO:teuthology.orchestra.run.smithi018.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-20T18:48:39.831 INFO:teuthology.orchestra.run.smithi018.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-20T18:48:39.831 INFO:teuthology.orchestra.run.smithi018.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-20T18:48:39.846 INFO:teuthology.orchestra.run.smithi018.stderr:done 2024-09-20T18:48:39.848 DEBUG:teuthology.orchestra.run.smithi018:> sudo shutdown -r now 2024-09-20T18:49:04.675 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-20T18:49:04.675 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi082.front.sepia.ceph.com' 2024-09-20T18:49:04.676 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi082.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T18:49:09.374 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-09-20T18:49:09.375 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi137.front.sepia.ceph.com' 2024-09-20T18:49:09.376 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi137.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T18:49:09.851 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-20T18:49:09.851 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi018.front.sepia.ceph.com' 2024-09-20T18:49:09.852 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi018.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T18:49:23.183 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.82 2024-09-20T18:49:27.791 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.137 2024-09-20T18:49:28.303 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.18 2024-09-20T18:49:32.186 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi082.front.sepia.ceph.com' 2024-09-20T18:49:32.187 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi082.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T18:49:35.251 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.82 2024-09-20T18:49:36.794 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi137.front.sepia.ceph.com' 2024-09-20T18:49:36.797 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi137.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T18:49:37.304 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi018.front.sepia.ceph.com' 2024-09-20T18:49:37.304 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi018.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T18:49:39.855 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.137 2024-09-20T18:49:47.255 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi082.front.sepia.ceph.com' 2024-09-20T18:49:47.256 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi082.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T18:49:51.859 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi137.front.sepia.ceph.com' 2024-09-20T18:49:51.859 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi137.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T18:50:05.679 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.82 2024-09-20T18:50:10.290 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.137 2024-09-20T18:50:20.686 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi082.front.sepia.ceph.com' 2024-09-20T18:50:20.687 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi082.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T18:50:20.919 DEBUG:teuthology.orchestra.run.smithi082:> true 2024-09-20T18:50:21.512 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi082.front.sepia.ceph.com' 2024-09-20T18:50:21.512 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-122-generic"... 2024-09-20T18:50:21.512 DEBUG:teuthology.orchestra.run.smithi082:> uname -r 2024-09-20T18:50:21.559 INFO:teuthology.orchestra.run.smithi082.stdout:5.15.0-122-generic 2024-09-20T18:50:21.559 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-122-generic vs 5.15.0-122-generic 2024-09-20T18:50:21.559 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-20T18:50:21.559 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-20T18:50:22.560 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-20T18:50:22.561 DEBUG:teuthology.orchestra.run.smithi082:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-20T18:50:22.663 INFO:teuthology.orchestra.run.smithi082.stdout:ttyS1 2024-09-20T18:50:22.681 DEBUG:teuthology.parallel:result is None 2024-09-20T18:50:25.292 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi137.front.sepia.ceph.com' 2024-09-20T18:50:25.292 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi137.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T18:50:25.518 DEBUG:teuthology.orchestra.run.smithi137:> true 2024-09-20T18:50:26.160 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi137.front.sepia.ceph.com' 2024-09-20T18:50:26.160 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.15.0-122-generic"... 2024-09-20T18:50:26.160 DEBUG:teuthology.orchestra.run.smithi137:> uname -r 2024-09-20T18:50:26.205 INFO:teuthology.orchestra.run.smithi137.stdout:5.15.0-122-generic 2024-09-20T18:50:26.205 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-122-generic vs 5.15.0-122-generic 2024-09-20T18:50:26.205 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-20T18:50:26.206 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-20T18:50:27.206 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-09-20T18:50:27.207 DEBUG:teuthology.orchestra.run.smithi137:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-20T18:50:27.289 INFO:teuthology.orchestra.run.smithi137.stdout:ttyS1 2024-09-20T18:50:27.315 DEBUG:teuthology.parallel:result is None 2024-09-20T18:50:37.306 DEBUG:teuthology.orchestra.remote:timed out 2024-09-20T18:50:49.307 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi018.front.sepia.ceph.com' 2024-09-20T18:50:49.308 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi018.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T18:50:49.523 DEBUG:teuthology.orchestra.run.smithi018:> true 2024-09-20T18:50:50.169 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi018.front.sepia.ceph.com' 2024-09-20T18:50:50.169 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-122-generic"... 2024-09-20T18:50:50.169 DEBUG:teuthology.orchestra.run.smithi018:> uname -r 2024-09-20T18:50:50.217 INFO:teuthology.orchestra.run.smithi018.stdout:5.15.0-122-generic 2024-09-20T18:50:50.217 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-122-generic vs 5.15.0-122-generic 2024-09-20T18:50:50.217 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-20T18:50:50.217 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-20T18:50:51.218 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-20T18:50:51.219 DEBUG:teuthology.orchestra.run.smithi018:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-20T18:50:51.308 INFO:teuthology.orchestra.run.smithi018.stdout:ttyS1 2024-09-20T18:50:51.338 DEBUG:teuthology.parallel:result is None 2024-09-20T18:50:51.338 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-20T18:50:51.345 INFO:teuthology.task.internal:Creating test directory... 2024-09-20T18:50:51.345 DEBUG:teuthology.orchestra.run.smithi018:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-20T18:50:51.348 DEBUG:teuthology.orchestra.run.smithi082:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-20T18:50:51.350 DEBUG:teuthology.orchestra.run.smithi137:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-20T18:50:51.357 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-20T18:50:51.458 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-20T18:50:51.599 INFO:teuthology.task.internal:Creating archive directory... 2024-09-20T18:50:51.599 DEBUG:teuthology.orchestra.run.smithi018:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-20T18:50:51.602 DEBUG:teuthology.orchestra.run.smithi082:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-20T18:50:51.604 DEBUG:teuthology.orchestra.run.smithi137:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-20T18:50:51.714 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-20T18:50:51.782 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-20T18:50:51.782 DEBUG:teuthology.orchestra.run.smithi018:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-20T18:50:51.784 DEBUG:teuthology.orchestra.run.smithi082:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-20T18:50:51.787 DEBUG:teuthology.orchestra.run.smithi137:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-20T18:50:51.802 INFO:teuthology.orchestra.run.smithi018.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-20T18:50:51.806 INFO:teuthology.orchestra.run.smithi137.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-20T18:50:51.811 INFO:teuthology.orchestra.run.smithi018.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-20T18:50:51.814 INFO:teuthology.orchestra.run.smithi137.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-20T18:50:51.817 INFO:teuthology.orchestra.run.smithi082.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-20T18:50:51.825 INFO:teuthology.orchestra.run.smithi082.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-20T18:50:51.826 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-20T18:50:51.913 INFO:teuthology.task.internal:Configuring sudo... 2024-09-20T18:50:51.913 DEBUG:teuthology.orchestra.run.smithi018:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-20T18:50:51.915 DEBUG:teuthology.orchestra.run.smithi082:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-20T18:50:51.917 DEBUG:teuthology.orchestra.run.smithi137:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-20T18:50:51.935 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-20T18:50:52.284 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-20T18:50:52.284 DEBUG:teuthology.orchestra.run.smithi018:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-20T18:50:52.286 DEBUG:teuthology.orchestra.run.smithi082:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-20T18:50:52.289 DEBUG:teuthology.orchestra.run.smithi137:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-20T18:50:52.295 DEBUG:teuthology.orchestra.run.smithi018:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-20T18:50:52.341 DEBUG:teuthology.orchestra.run.smithi018:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-20T18:50:52.389 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-20T18:50:52.389 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-20T18:50:52.460 DEBUG:teuthology.orchestra.run.smithi082:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-20T18:50:52.466 DEBUG:teuthology.orchestra.run.smithi082:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-20T18:50:52.515 DEBUG:teuthology.orchestra.run.smithi082:> set -ex 2024-09-20T18:50:52.515 DEBUG:teuthology.orchestra.run.smithi082:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-20T18:50:52.588 DEBUG:teuthology.orchestra.run.smithi137:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-20T18:50:52.594 DEBUG:teuthology.orchestra.run.smithi137:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-20T18:50:52.641 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-09-20T18:50:52.641 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-20T18:50:52.707 DEBUG:teuthology.orchestra.run.smithi018:> sudo service rsyslog restart 2024-09-20T18:50:52.710 DEBUG:teuthology.orchestra.run.smithi082:> sudo service rsyslog restart 2024-09-20T18:50:52.712 DEBUG:teuthology.orchestra.run.smithi137:> sudo service rsyslog restart 2024-09-20T18:50:52.783 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-20T18:50:52.800 INFO:teuthology.task.internal:Starting timer... 2024-09-20T18:50:52.800 INFO:teuthology.run_tasks:Running task pcp... 2024-09-20T18:50:52.902 INFO:teuthology.run_tasks:Running task selinux... 2024-09-20T18:50:53.000 DEBUG:teuthology.task.selinux:Excluding smithi018: OS 'ubuntu' does not support SELinux 2024-09-20T18:50:53.000 DEBUG:teuthology.task.selinux:Excluding smithi082: OS 'ubuntu' does not support SELinux 2024-09-20T18:50:53.000 DEBUG:teuthology.task.selinux:Excluding smithi137: OS 'ubuntu' does not support SELinux 2024-09-20T18:50:53.000 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-20T18:50:53.000 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-09-20T18:50:53.000 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-20T18:50:53.001 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-20T18:50:53.079 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-09-20T18:50:53.082 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-09-20T18:50:53.190 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-20T18:50:53.201 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-09-20T18:50:53.201 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi018.front.sepia.ceph.com,smithi082.front.sepia.ceph.com,smithi137.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-20T18:58:27.055 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi018.front.sepia.ceph.com'), Remote(name='ubuntu@smithi082.front.sepia.ceph.com'), Remote(name='ubuntu@smithi137.front.sepia.ceph.com')] 2024-09-20T18:58:27.056 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi018.front.sepia.ceph.com' 2024-09-20T18:58:27.057 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi018.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T18:58:27.140 DEBUG:teuthology.orchestra.run.smithi018:> true 2024-09-20T18:58:27.223 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi018.front.sepia.ceph.com' 2024-09-20T18:58:27.223 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi082.front.sepia.ceph.com' 2024-09-20T18:58:27.223 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi082.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T18:58:27.305 DEBUG:teuthology.orchestra.run.smithi082:> true 2024-09-20T18:58:27.382 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi082.front.sepia.ceph.com' 2024-09-20T18:58:27.383 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi137.front.sepia.ceph.com' 2024-09-20T18:58:27.383 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi137.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-20T18:58:27.463 DEBUG:teuthology.orchestra.run.smithi137:> true 2024-09-20T18:58:27.538 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi137.front.sepia.ceph.com' 2024-09-20T18:58:27.539 INFO:teuthology.run_tasks:Running task clock... 2024-09-20T18:58:27.549 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-20T18:58:27.550 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-20T18:58:27.550 DEBUG:teuthology.orchestra.run.smithi018:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-20T18:58:27.552 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-20T18:58:27.553 DEBUG:teuthology.orchestra.run.smithi082:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-20T18:58:27.555 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-20T18:58:27.555 DEBUG:teuthology.orchestra.run.smithi137:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-20T18:58:27.580 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:27 ntpd[18413]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-20T18:58:27.580 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:27 ntpd[18413]: Command line: ntpd -gq 2024-09-20T18:58:27.580 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:27 ntpd[18413]: ---------------------------------------------------- 2024-09-20T18:58:27.580 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:27 ntpd[18413]: ntp-4 is maintained by Network Time Foundation, 2024-09-20T18:58:27.580 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:27 ntpd[18413]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-20T18:58:27.580 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:27 ntpd[18413]: corporation. Support and training for ntp-4 are 2024-09-20T18:58:27.580 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:27 ntpd[18413]: available at https://www.nwtime.org/support 2024-09-20T18:58:27.580 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:27 ntpd[18413]: ---------------------------------------------------- 2024-09-20T18:58:27.580 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:27 ntpd[18413]: proto: precision = 0.045 usec (-24) 2024-09-20T18:58:27.581 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:27 ntpd[18529]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-20T18:58:27.581 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:27 ntpd[18529]: Command line: ntpd -gq 2024-09-20T18:58:27.581 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:27 ntpd[18529]: ---------------------------------------------------- 2024-09-20T18:58:27.581 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:27 ntpd[18529]: ntp-4 is maintained by Network Time Foundation, 2024-09-20T18:58:27.581 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:27 ntpd[18529]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-20T18:58:27.581 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:27 ntpd[18529]: corporation. Support and training for ntp-4 are 2024-09-20T18:58:27.581 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:27 ntpd[18529]: available at https://www.nwtime.org/support 2024-09-20T18:58:27.581 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:27 ntpd[18529]: ---------------------------------------------------- 2024-09-20T18:58:27.582 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:27 ntpd[18413]: basedate set to 2022-02-04 2024-09-20T18:58:27.582 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:27 ntpd[18413]: gps base set to 2022-02-06 (week 2196) 2024-09-20T18:58:27.582 INFO:teuthology.orchestra.run.smithi018.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-20T18:58:27.582 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:27 ntpd[18413]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-20T18:58:27.583 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:27 ntpd[18413]: restrict ::: KOD does nothing without LIMITED. 2024-09-20T18:58:27.583 INFO:teuthology.orchestra.run.smithi018.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-20T18:58:27.584 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:27 ntpd[18413]: Listen and drop on 0 v6wildcard [::]:123 2024-09-20T18:58:27.584 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:27 ntpd[18413]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-20T18:58:27.584 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:27 ntpd[18413]: Listen normally on 2 lo 127.0.0.1:123 2024-09-20T18:58:27.584 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:27 ntpd[18413]: Listen normally on 3 ens1f0 172.21.15.18:123 2024-09-20T18:58:27.584 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:27 ntpd[18413]: Listen normally on 4 lo [::1]:123 2024-09-20T18:58:27.584 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:27 ntpd[18413]: Listen normally on 5 ens1f0 [fe80::ec4:7aff:febd:1362%4]:123 2024-09-20T18:58:27.584 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:27 ntpd[18413]: Listening on routing socket on fd #22 for interface updates 2024-09-20T18:58:27.585 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:27 ntpd[18529]: proto: precision = 0.044 usec (-24) 2024-09-20T18:58:27.585 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:27 ntpd[18529]: basedate set to 2022-02-04 2024-09-20T18:58:27.585 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:27 ntpd[18529]: gps base set to 2022-02-06 (week 2196) 2024-09-20T18:58:27.585 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:27 ntpd[18529]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-20T18:58:27.585 INFO:teuthology.orchestra.run.smithi082.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-20T18:58:27.586 INFO:teuthology.orchestra.run.smithi082.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-20T18:58:27.586 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:27 ntpd[18529]: restrict ::: KOD does nothing without LIMITED. 2024-09-20T18:58:27.586 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:27 ntpd[18529]: Listen and drop on 0 v6wildcard [::]:123 2024-09-20T18:58:27.586 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:27 ntpd[18529]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-20T18:58:27.587 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:27 ntpd[18529]: Listen normally on 2 lo 127.0.0.1:123 2024-09-20T18:58:27.587 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:27 ntpd[18529]: Listen normally on 3 enp3s0f1 172.21.15.82:123 2024-09-20T18:58:27.587 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:27 ntpd[18529]: Listen normally on 4 lo [::1]:123 2024-09-20T18:58:27.587 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:27 ntpd[18529]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:d3ff%5]:123 2024-09-20T18:58:27.587 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:27 ntpd[18529]: Listening on routing socket on fd #22 for interface updates 2024-09-20T18:58:27.608 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:27 ntpd[18520]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-20T18:58:27.608 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:27 ntpd[18520]: Command line: ntpd -gq 2024-09-20T18:58:27.608 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:27 ntpd[18520]: ---------------------------------------------------- 2024-09-20T18:58:27.608 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:27 ntpd[18520]: ntp-4 is maintained by Network Time Foundation, 2024-09-20T18:58:27.608 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:27 ntpd[18520]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-20T18:58:27.608 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:27 ntpd[18520]: corporation. Support and training for ntp-4 are 2024-09-20T18:58:27.608 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:27 ntpd[18520]: available at https://www.nwtime.org/support 2024-09-20T18:58:27.608 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:27 ntpd[18520]: ---------------------------------------------------- 2024-09-20T18:58:27.609 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:27 ntpd[18520]: proto: precision = 0.046 usec (-24) 2024-09-20T18:58:27.609 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:27 ntpd[18520]: basedate set to 2022-02-04 2024-09-20T18:58:27.609 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:27 ntpd[18520]: gps base set to 2022-02-06 (week 2196) 2024-09-20T18:58:27.609 INFO:teuthology.orchestra.run.smithi137.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-20T18:58:27.610 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:27 ntpd[18520]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-20T18:58:27.610 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:27 ntpd[18520]: restrict ::: KOD does nothing without LIMITED. 2024-09-20T18:58:27.610 INFO:teuthology.orchestra.run.smithi137.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-20T18:58:27.611 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:27 ntpd[18520]: Listen and drop on 0 v6wildcard [::]:123 2024-09-20T18:58:27.611 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:27 ntpd[18520]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-20T18:58:27.611 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:27 ntpd[18520]: Listen normally on 2 lo 127.0.0.1:123 2024-09-20T18:58:27.611 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:27 ntpd[18520]: Listen normally on 3 enp3s0f1 172.21.15.137:123 2024-09-20T18:58:27.611 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:27 ntpd[18520]: Listen normally on 4 lo [::1]:123 2024-09-20T18:58:27.611 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:27 ntpd[18520]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:8137%5]:123 2024-09-20T18:58:27.611 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:27 ntpd[18520]: Listening on routing socket on fd #22 for interface updates 2024-09-20T18:58:28.580 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:28 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:28.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:28 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:28.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:28 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:28.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:28 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:28.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:28 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:28.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:28 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:28.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:28 ntpd[18413]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:28.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:28 ntpd[18413]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:28.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:28 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:28.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:28 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:28.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:28 ntpd[18413]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:28.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:28 ntpd[18413]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:29.580 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:29 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:29.580 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:29 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:29.581 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:29 ntpd[18529]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:29.582 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:29 ntpd[18529]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:29.582 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:29 ntpd[18529]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:29.582 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:29 ntpd[18529]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:29.582 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:29 ntpd[18529]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:29.582 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:29 ntpd[18529]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:29.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:29 ntpd[18520]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:29.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:29 ntpd[18520]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:29.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:29 ntpd[18520]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:29.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:29 ntpd[18520]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:29.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:29 ntpd[18520]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:29.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:29 ntpd[18520]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:30.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:30 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:30.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:30 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:30.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:30 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:30.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:30 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:30.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:30 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:30.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:30 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:30.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:30 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:30.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:30 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:30.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:30 ntpd[18413]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:30.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:30 ntpd[18413]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:30.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:30 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:30.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:30 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:30.583 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:30 ntpd[18413]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:30.583 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:30 ntpd[18413]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:30.583 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:30 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:30.583 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:30 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:30.583 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:30 ntpd[18413]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:30.583 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:30 ntpd[18413]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:30.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:30 ntpd[18529]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:30.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:30 ntpd[18529]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:30.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:30 ntpd[18529]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:30.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:30 ntpd[18529]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:30.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:30 ntpd[18529]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:30.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:30 ntpd[18529]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:30.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:30 ntpd[18520]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:30.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:30 ntpd[18520]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:30.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:30 ntpd[18520]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:30.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:30 ntpd[18520]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:30.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:30 ntpd[18520]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:30.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:30 ntpd[18520]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:31.582 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:31 ntpd[18529]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:31.582 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:31 ntpd[18529]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:31.582 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:31 ntpd[18529]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:31.583 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:31 ntpd[18529]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:31.583 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:31 ntpd[18529]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:31.583 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:31 ntpd[18529]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:31.583 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:31 ntpd[18529]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:31.583 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:31 ntpd[18529]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:31.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:31 ntpd[18520]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:31.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:31 ntpd[18520]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:31.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:31 ntpd[18520]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:31.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:31 ntpd[18520]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:31.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:31 ntpd[18520]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:31.610 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:31 ntpd[18520]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:31.610 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:31 ntpd[18520]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:31.610 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:31 ntpd[18520]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:31.610 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:31 ntpd[18520]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:31.610 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:31 ntpd[18520]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:31.610 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:31 ntpd[18520]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:31.610 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:31 ntpd[18520]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:31.610 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:31 ntpd[18520]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:31.610 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:31 ntpd[18520]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:32.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:32 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:32.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:32 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:32.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:32 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:32.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:32 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:32.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:32 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:32.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:32 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:32.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:32 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:32.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:32 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:32.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:32 ntpd[18413]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:32.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:32 ntpd[18413]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:32.583 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:32 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:32.583 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:32 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:32.583 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:32 ntpd[18413]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:32.583 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:32 ntpd[18413]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:32.583 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:32 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:32.583 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:32 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:32.583 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:32 ntpd[18413]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:32.583 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:32 ntpd[18413]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:32.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:32 ntpd[18529]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:32.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:32 ntpd[18529]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:32.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:32 ntpd[18529]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:32.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:32 ntpd[18529]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:32.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:32 ntpd[18529]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:32.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:32 ntpd[18529]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:32.585 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:32 ntpd[18529]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:32.585 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:32 ntpd[18529]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:32.585 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:32 ntpd[18529]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:32.585 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:32 ntpd[18529]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:32.585 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:32 ntpd[18529]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:32.585 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:32 ntpd[18529]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:32.608 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:32 ntpd[18520]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:32.608 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:32 ntpd[18520]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:32.608 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:32 ntpd[18520]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:32.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:32 ntpd[18520]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:32.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:32 ntpd[18520]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:32.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:32 ntpd[18520]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:33.581 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:33 ntpd[18529]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:33.582 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:33 ntpd[18529]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:33.582 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:33 ntpd[18529]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:33.582 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:33 ntpd[18529]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:33.582 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:33 ntpd[18529]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:33.582 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:33 ntpd[18529]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:33.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:33 ntpd[18520]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:33.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:33 ntpd[18520]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:33.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:33 ntpd[18520]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:33.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:33 ntpd[18520]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:33.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:33 ntpd[18520]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:33.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:33 ntpd[18520]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:33.610 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:33 ntpd[18520]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:33.610 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:33 ntpd[18520]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:33.610 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:33 ntpd[18520]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:33.610 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:33 ntpd[18520]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:33.610 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:33 ntpd[18520]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:33.610 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:33 ntpd[18520]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:34.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:34 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:34.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:34 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:34.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:34 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:34.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:34 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:34.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:34 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:34.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:34 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:34.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:34 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:34.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:34 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:34.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:34 ntpd[18413]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:34.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:34 ntpd[18413]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:34.581 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:34 ntpd[18413]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:34.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:34 ntpd[18413]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:34.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:34 ntpd[18413]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:34.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:34 ntpd[18413]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:34.582 INFO:teuthology.orchestra.run.smithi018.stdout:20 Sep 18:58:34 ntpd[18413]: ntpd: time slew -0.001158 s 2024-09-20T18:58:34.582 INFO:teuthology.orchestra.run.smithi018.stdout:ntpd: time slew -0.001158s 2024-09-20T18:58:34.582 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:34 ntpd[18413]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-20T18:58:34.583 INFO:teuthology.orchestra.run.smithi018.stderr:20 Sep 18:58:34 ntpd[18413]: can't open /var/log/ntpstats/loopstats.20240920: Permission denied 2024-09-20T18:58:34.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:34 ntpd[18529]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:34.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:34 ntpd[18529]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:34.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:34 ntpd[18529]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:34.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:34 ntpd[18529]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:34.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:34 ntpd[18529]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:34.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:34 ntpd[18529]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:34.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:34 ntpd[18529]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:34.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:34 ntpd[18529]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:34.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:34 ntpd[18529]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:34.584 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:34 ntpd[18529]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:34.585 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:34 ntpd[18529]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:34.585 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:34 ntpd[18529]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:34.608 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:34 ntpd[18520]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:34.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:34 ntpd[18520]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:34.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:34 ntpd[18520]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:34.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:34 ntpd[18520]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:34.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:34 ntpd[18520]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:34.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:34 ntpd[18520]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:34.629 INFO:teuthology.orchestra.run.smithi018.stdout: remote refid st t when poll reach delay offset jitter 2024-09-20T18:58:34.629 INFO:teuthology.orchestra.run.smithi018.stdout:============================================================================== 2024-09-20T18:58:34.629 INFO:teuthology.orchestra.run.smithi018.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T18:58:34.629 INFO:teuthology.orchestra.run.smithi018.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T18:58:34.629 INFO:teuthology.orchestra.run.smithi018.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T18:58:34.629 INFO:teuthology.orchestra.run.smithi018.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T18:58:35.582 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:35 ntpd[18529]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:35.582 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:35 ntpd[18529]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:35.582 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:35 ntpd[18529]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:35.582 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:35 ntpd[18529]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:35.582 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:35 ntpd[18529]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:35.582 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:35 ntpd[18529]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:35.582 INFO:teuthology.orchestra.run.smithi082.stdout:20 Sep 18:58:35 ntpd[18529]: ntpd: time slew -0.002930 s 2024-09-20T18:58:35.582 INFO:teuthology.orchestra.run.smithi082.stdout:ntpd: time slew -0.002930s 2024-09-20T18:58:35.583 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:35 ntpd[18529]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-20T18:58:35.583 INFO:teuthology.orchestra.run.smithi082.stderr:20 Sep 18:58:35 ntpd[18529]: can't open /var/log/ntpstats/loopstats.20240920: Permission denied 2024-09-20T18:58:35.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:35 ntpd[18520]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:35.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:35 ntpd[18520]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:35.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:35 ntpd[18520]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:35.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:35 ntpd[18520]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:35.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:35 ntpd[18520]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-20T18:58:35.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:35 ntpd[18520]: can't open /var/log/ntpstats/rawstats.20240920: Permission denied 2024-09-20T18:58:35.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:35 ntpd[18520]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-20T18:58:35.609 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:35 ntpd[18520]: can't open /var/log/ntpstats/peerstats.20240920: Permission denied 2024-09-20T18:58:35.610 INFO:teuthology.orchestra.run.smithi137.stdout:20 Sep 18:58:35 ntpd[18520]: ntpd: time slew -0.001298 s 2024-09-20T18:58:35.610 INFO:teuthology.orchestra.run.smithi137.stdout:ntpd: time slew -0.001298s 2024-09-20T18:58:35.610 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:35 ntpd[18520]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-20T18:58:35.610 INFO:teuthology.orchestra.run.smithi137.stderr:20 Sep 18:58:35 ntpd[18520]: can't open /var/log/ntpstats/loopstats.20240920: Permission denied 2024-09-20T18:58:35.638 INFO:teuthology.orchestra.run.smithi082.stdout: remote refid st t when poll reach delay offset jitter 2024-09-20T18:58:35.638 INFO:teuthology.orchestra.run.smithi082.stdout:============================================================================== 2024-09-20T18:58:35.638 INFO:teuthology.orchestra.run.smithi082.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T18:58:35.638 INFO:teuthology.orchestra.run.smithi082.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T18:58:35.638 INFO:teuthology.orchestra.run.smithi082.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T18:58:35.638 INFO:teuthology.orchestra.run.smithi082.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T18:58:35.663 INFO:teuthology.orchestra.run.smithi137.stdout: remote refid st t when poll reach delay offset jitter 2024-09-20T18:58:35.663 INFO:teuthology.orchestra.run.smithi137.stdout:============================================================================== 2024-09-20T18:58:35.663 INFO:teuthology.orchestra.run.smithi137.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T18:58:35.663 INFO:teuthology.orchestra.run.smithi137.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T18:58:35.663 INFO:teuthology.orchestra.run.smithi137.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T18:58:35.663 INFO:teuthology.orchestra.run.smithi137.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-20T18:58:35.664 INFO:teuthology.run_tasks:Running task install... 2024-09-20T18:58:35.672 DEBUG:teuthology.task.install:project ceph 2024-09-20T18:58:35.673 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': '88deadb8082f4a33832e228ccefc59cedba158a5'}} 2024-09-20T18:58:35.673 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': '88deadb8082f4a33832e228ccefc59cedba158a5'} 2024-09-20T18:58:35.673 INFO:teuthology.task.install:Using flavor: default 2024-09-20T18:58:35.678 DEBUG:teuthology.task.install:Package list is: {'deb': ['ceph', 'cephadm', 'ceph-mds', 'ceph-mgr', 'ceph-common', 'ceph-fuse', 'ceph-test', 'ceph-volume', 'radosgw', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'libcephfs2', 'libcephfs-dev', 'librados2', 'librbd1', 'rbd-fuse'], 'rpm': ['ceph-radosgw', 'ceph-test', 'ceph', 'ceph-base', 'cephadm', 'ceph-immutable-object-cache', 'ceph-mgr', 'ceph-mgr-dashboard', 'ceph-mgr-diskprediction-local', 'ceph-mgr-rook', 'ceph-mgr-cephadm', 'ceph-fuse', 'ceph-volume', 'librados-devel', 'libcephfs2', 'libcephfs-devel', 'librados2', 'librbd1', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'rbd-fuse', 'rbd-mirror', 'rbd-nbd']} 2024-09-20T18:58:35.678 INFO:teuthology.task.install:extra packages: [] 2024-09-20T18:58:35.679 DEBUG:teuthology.orchestra.run.smithi018:> sudo apt-key list | grep Ceph 2024-09-20T18:58:35.679 DEBUG:teuthology.orchestra.run.smithi082:> sudo apt-key list | grep Ceph 2024-09-20T18:58:35.680 DEBUG:teuthology.orchestra.run.smithi137:> sudo apt-key list | grep Ceph 2024-09-20T18:58:35.737 INFO:teuthology.orchestra.run.smithi082.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-20T18:58:35.746 INFO:teuthology.orchestra.run.smithi018.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-20T18:58:35.764 INFO:teuthology.orchestra.run.smithi082.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-20T18:58:35.764 INFO:teuthology.orchestra.run.smithi082.stdout:uid [ unknown] Ceph.com (release key) 2024-09-20T18:58:35.765 INFO:teuthology.task.install.deb:Installing packages: ceph, cephadm, ceph-mds, ceph-mgr, ceph-common, ceph-fuse, ceph-test, ceph-volume, radosgw, python3-rados, python3-rgw, python3-cephfs, python3-rbd, libcephfs2, libcephfs-dev, librados2, librbd1, rbd-fuse on remote deb x86_64 2024-09-20T18:58:35.765 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=88deadb8082f4a33832e228ccefc59cedba158a5 2024-09-20T18:58:35.769 INFO:teuthology.orchestra.run.smithi137.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-20T18:58:35.778 INFO:teuthology.orchestra.run.smithi018.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-20T18:58:35.778 INFO:teuthology.orchestra.run.smithi018.stdout:uid [ unknown] Ceph.com (release key) 2024-09-20T18:58:35.779 INFO:teuthology.task.install.deb:Installing packages: ceph, cephadm, ceph-mds, ceph-mgr, ceph-common, ceph-fuse, ceph-test, ceph-volume, radosgw, python3-rados, python3-rgw, python3-cephfs, python3-rbd, libcephfs2, libcephfs-dev, librados2, librbd1, rbd-fuse on remote deb x86_64 2024-09-20T18:58:35.779 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=88deadb8082f4a33832e228ccefc59cedba158a5 2024-09-20T18:58:35.798 INFO:teuthology.orchestra.run.smithi137.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-20T18:58:35.799 INFO:teuthology.orchestra.run.smithi137.stdout:uid [ unknown] Ceph.com (release key) 2024-09-20T18:58:35.799 INFO:teuthology.task.install.deb:Installing packages: ceph, cephadm, ceph-mds, ceph-mgr, ceph-common, ceph-fuse, ceph-test, ceph-volume, radosgw, python3-rados, python3-rgw, python3-cephfs, python3-rbd, libcephfs2, libcephfs-dev, librados2, librbd1, rbd-fuse on remote deb x86_64 2024-09-20T18:58:35.799 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=88deadb8082f4a33832e228ccefc59cedba158a5 2024-09-20T18:58:35.913 INFO:teuthology.task.install.deb:Pulling from https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default/ 2024-09-20T18:58:35.913 INFO:teuthology.task.install.deb:Package version is 19.3.0-5099-g88deadb8-1jammy 2024-09-20T18:58:35.917 INFO:teuthology.task.install.deb:Pulling from https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default/ 2024-09-20T18:58:35.917 INFO:teuthology.task.install.deb:Package version is 19.3.0-5099-g88deadb8-1jammy 2024-09-20T18:58:35.934 INFO:teuthology.task.install.deb:Pulling from https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default/ 2024-09-20T18:58:35.934 INFO:teuthology.task.install.deb:Package version is 19.3.0-5099-g88deadb8-1jammy 2024-09-20T18:58:36.023 DEBUG:teuthology.orchestra.run.smithi082:> set -ex 2024-09-20T18:58:36.023 DEBUG:teuthology.orchestra.run.smithi082:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-20T18:58:36.029 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-20T18:58:36.030 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-20T18:58:36.037 DEBUG:teuthology.orchestra.run.smithi082:> sudo apt-get update 2024-09-20T18:58:36.040 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-09-20T18:58:36.041 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-20T18:58:36.044 DEBUG:teuthology.orchestra.run.smithi018:> sudo apt-get update 2024-09-20T18:58:36.054 DEBUG:teuthology.orchestra.run.smithi137:> sudo apt-get update 2024-09-20T18:58:36.206 INFO:teuthology.orchestra.run.smithi082.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-20T18:58:36.206 INFO:teuthology.orchestra.run.smithi082.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-20T18:58:36.215 INFO:teuthology.orchestra.run.smithi082.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-20T18:58:36.222 INFO:teuthology.orchestra.run.smithi018.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-20T18:58:36.225 INFO:teuthology.orchestra.run.smithi137.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-20T18:58:36.225 INFO:teuthology.orchestra.run.smithi137.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-20T18:58:36.231 INFO:teuthology.orchestra.run.smithi018.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-20T18:58:36.232 INFO:teuthology.orchestra.run.smithi082.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-20T18:58:36.235 INFO:teuthology.orchestra.run.smithi137.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-20T18:58:36.248 INFO:teuthology.orchestra.run.smithi018.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-20T18:58:36.252 INFO:teuthology.orchestra.run.smithi137.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-20T18:58:36.259 INFO:teuthology.orchestra.run.smithi082.stdout:Ign:5 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy InRelease 2024-09-20T18:58:36.274 INFO:teuthology.orchestra.run.smithi018.stdout:Ign:4 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy InRelease 2024-09-20T18:58:36.280 INFO:teuthology.orchestra.run.smithi137.stdout:Ign:5 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy InRelease 2024-09-20T18:58:36.280 INFO:teuthology.orchestra.run.smithi082.stdout:Get:6 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy Release [7,689 B] 2024-09-20T18:58:36.295 INFO:teuthology.orchestra.run.smithi018.stdout:Get:5 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy Release [7,689 B] 2024-09-20T18:58:36.302 INFO:teuthology.orchestra.run.smithi082.stdout:Ign:7 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-20T18:58:36.303 INFO:teuthology.orchestra.run.smithi137.stdout:Get:6 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy Release [7,689 B] 2024-09-20T18:58:36.317 INFO:teuthology.orchestra.run.smithi018.stdout:Ign:6 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-20T18:58:36.323 INFO:teuthology.orchestra.run.smithi082.stdout:Get:8 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,415 B] 2024-09-20T18:58:36.325 INFO:teuthology.orchestra.run.smithi137.stdout:Ign:7 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-20T18:58:36.338 INFO:teuthology.orchestra.run.smithi018.stdout:Get:7 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 Packages [18.2 kB] 2024-09-20T18:58:36.343 INFO:teuthology.orchestra.run.smithi018.stdout:Hit:8 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-20T18:58:36.347 INFO:teuthology.orchestra.run.smithi137.stdout:Get:8 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 Packages [18.2 kB] 2024-09-20T18:58:36.350 INFO:teuthology.orchestra.run.smithi082.stdout:Get:9 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 Packages [18.2 kB] 2024-09-20T18:58:36.364 INFO:teuthology.orchestra.run.smithi018.stdout:Get:9 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,415 B] 2024-09-20T18:58:36.373 INFO:teuthology.orchestra.run.smithi137.stdout:Get:9 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,415 B] 2024-09-20T18:58:36.569 INFO:teuthology.orchestra.run.smithi137.stdout:Fetched 29.3 kB in 0s (88.6 kB/s) 2024-09-20T18:58:36.571 INFO:teuthology.orchestra.run.smithi082.stdout:Fetched 29.3 kB in 0s (83.4 kB/s) 2024-09-20T18:58:36.588 INFO:teuthology.orchestra.run.smithi018.stdout:Fetched 29.3 kB in 0s (82.7 kB/s) 2024-09-20T18:58:37.598 INFO:teuthology.orchestra.run.smithi082.stdout:Reading package lists... 2024-09-20T18:58:37.614 DEBUG:teuthology.orchestra.run.smithi082:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.3.0-5099-g88deadb8-1jammy cephadm=19.3.0-5099-g88deadb8-1jammy ceph-mds=19.3.0-5099-g88deadb8-1jammy ceph-mgr=19.3.0-5099-g88deadb8-1jammy ceph-common=19.3.0-5099-g88deadb8-1jammy ceph-fuse=19.3.0-5099-g88deadb8-1jammy ceph-test=19.3.0-5099-g88deadb8-1jammy ceph-volume=19.3.0-5099-g88deadb8-1jammy radosgw=19.3.0-5099-g88deadb8-1jammy python3-rados=19.3.0-5099-g88deadb8-1jammy python3-rgw=19.3.0-5099-g88deadb8-1jammy python3-cephfs=19.3.0-5099-g88deadb8-1jammy python3-rbd=19.3.0-5099-g88deadb8-1jammy libcephfs2=19.3.0-5099-g88deadb8-1jammy libcephfs-dev=19.3.0-5099-g88deadb8-1jammy librados2=19.3.0-5099-g88deadb8-1jammy librbd1=19.3.0-5099-g88deadb8-1jammy rbd-fuse=19.3.0-5099-g88deadb8-1jammy 2024-09-20T18:58:37.617 INFO:teuthology.orchestra.run.smithi137.stdout:Reading package lists... 2024-09-20T18:58:37.633 INFO:teuthology.orchestra.run.smithi018.stdout:Reading package lists... 2024-09-20T18:58:37.634 DEBUG:teuthology.orchestra.run.smithi137:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.3.0-5099-g88deadb8-1jammy cephadm=19.3.0-5099-g88deadb8-1jammy ceph-mds=19.3.0-5099-g88deadb8-1jammy ceph-mgr=19.3.0-5099-g88deadb8-1jammy ceph-common=19.3.0-5099-g88deadb8-1jammy ceph-fuse=19.3.0-5099-g88deadb8-1jammy ceph-test=19.3.0-5099-g88deadb8-1jammy ceph-volume=19.3.0-5099-g88deadb8-1jammy radosgw=19.3.0-5099-g88deadb8-1jammy python3-rados=19.3.0-5099-g88deadb8-1jammy python3-rgw=19.3.0-5099-g88deadb8-1jammy python3-cephfs=19.3.0-5099-g88deadb8-1jammy python3-rbd=19.3.0-5099-g88deadb8-1jammy libcephfs2=19.3.0-5099-g88deadb8-1jammy libcephfs-dev=19.3.0-5099-g88deadb8-1jammy librados2=19.3.0-5099-g88deadb8-1jammy librbd1=19.3.0-5099-g88deadb8-1jammy rbd-fuse=19.3.0-5099-g88deadb8-1jammy 2024-09-20T18:58:37.650 DEBUG:teuthology.orchestra.run.smithi018:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.3.0-5099-g88deadb8-1jammy cephadm=19.3.0-5099-g88deadb8-1jammy ceph-mds=19.3.0-5099-g88deadb8-1jammy ceph-mgr=19.3.0-5099-g88deadb8-1jammy ceph-common=19.3.0-5099-g88deadb8-1jammy ceph-fuse=19.3.0-5099-g88deadb8-1jammy ceph-test=19.3.0-5099-g88deadb8-1jammy ceph-volume=19.3.0-5099-g88deadb8-1jammy radosgw=19.3.0-5099-g88deadb8-1jammy python3-rados=19.3.0-5099-g88deadb8-1jammy python3-rgw=19.3.0-5099-g88deadb8-1jammy python3-cephfs=19.3.0-5099-g88deadb8-1jammy python3-rbd=19.3.0-5099-g88deadb8-1jammy libcephfs2=19.3.0-5099-g88deadb8-1jammy libcephfs-dev=19.3.0-5099-g88deadb8-1jammy librados2=19.3.0-5099-g88deadb8-1jammy librbd1=19.3.0-5099-g88deadb8-1jammy rbd-fuse=19.3.0-5099-g88deadb8-1jammy 2024-09-20T18:58:37.668 INFO:teuthology.orchestra.run.smithi082.stdout:Reading package lists... 2024-09-20T18:58:37.699 INFO:teuthology.orchestra.run.smithi137.stdout:Reading package lists... 2024-09-20T18:58:37.704 INFO:teuthology.orchestra.run.smithi018.stdout:Reading package lists... 2024-09-20T18:58:37.855 INFO:teuthology.orchestra.run.smithi082.stdout:Building dependency tree... 2024-09-20T18:58:37.855 INFO:teuthology.orchestra.run.smithi082.stdout:Reading state information... 2024-09-20T18:58:37.896 INFO:teuthology.orchestra.run.smithi018.stdout:Building dependency tree... 2024-09-20T18:58:37.897 INFO:teuthology.orchestra.run.smithi018.stdout:Reading state information... 2024-09-20T18:58:37.911 INFO:teuthology.orchestra.run.smithi137.stdout:Building dependency tree... 2024-09-20T18:58:37.912 INFO:teuthology.orchestra.run.smithi137.stdout:Reading state information... 2024-09-20T18:58:38.041 INFO:teuthology.orchestra.run.smithi082.stdout:The following packages were automatically installed and are no longer required: 2024-09-20T18:58:38.041 INFO:teuthology.orchestra.run.smithi082.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-20T18:58:38.041 INFO:teuthology.orchestra.run.smithi082.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-20T18:58:38.041 INFO:teuthology.orchestra.run.smithi082.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-20T18:58:38.042 INFO:teuthology.orchestra.run.smithi082.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-20T18:58:38.042 INFO:teuthology.orchestra.run.smithi082.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-20T18:58:38.042 INFO:teuthology.orchestra.run.smithi082.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-20T18:58:38.043 INFO:teuthology.orchestra.run.smithi082.stdout:The following additional packages will be installed: 2024-09-20T18:58:38.043 INFO:teuthology.orchestra.run.smithi082.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-20T18:58:38.043 INFO:teuthology.orchestra.run.smithi082.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-20T18:58:38.043 INFO:teuthology.orchestra.run.smithi082.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev libnbd0 liboath0 2024-09-20T18:58:38.043 INFO:teuthology.orchestra.run.smithi082.stdout: libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 2024-09-20T18:58:38.043 INFO:teuthology.orchestra.run.smithi082.stdout: libradosstriper1 librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph 2024-09-20T18:58:38.044 INFO:teuthology.orchestra.run.smithi082.stdout: libthrift-0.16.0 lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli 2024-09-20T18:58:38.044 INFO:teuthology.orchestra.run.smithi082.stdout: pkg-config python-asyncssh-doc python-babel-localedata 2024-09-20T18:58:38.045 INFO:teuthology.orchestra.run.smithi082.stdout: python-pastedeploy-tpl python3-asyncssh python3-babel python3-bcrypt 2024-09-20T18:58:38.045 INFO:teuthology.orchestra.run.smithi082.stdout: python3-cachetools python3-ceph-argparse python3-ceph-common python3-certifi 2024-09-20T18:58:38.045 INFO:teuthology.orchestra.run.smithi082.stdout: python3-cheroot python3-cherrypy3 python3-google-auth python3-idna 2024-09-20T18:58:38.045 INFO:teuthology.orchestra.run.smithi082.stdout: python3-iniconfig python3-jaraco.classes python3-jaraco.collections 2024-09-20T18:58:38.045 INFO:teuthology.orchestra.run.smithi082.stdout: python3-jaraco.functools python3-jaraco.text python3-jinja2 python3-joblib 2024-09-20T18:58:38.045 INFO:teuthology.orchestra.run.smithi082.stdout: python3-kubernetes python3-logutils python3-mako python3-markupsafe 2024-09-20T18:58:38.045 INFO:teuthology.orchestra.run.smithi082.stdout: python3-natsort python3-openssl python3-paste python3-pastedeploy 2024-09-20T18:58:38.045 INFO:teuthology.orchestra.run.smithi082.stdout: python3-pastescript python3-pecan python3-pluggy python3-portend 2024-09-20T18:58:38.045 INFO:teuthology.orchestra.run.smithi082.stdout: python3-prettytable python3-psutil python3-py python3-pyasn1 2024-09-20T18:58:38.045 INFO:teuthology.orchestra.run.smithi082.stdout: python3-pyasn1-modules python3-pygments python3-pyinotify python3-pytest 2024-09-20T18:58:38.045 INFO:teuthology.orchestra.run.smithi082.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-routes 2024-09-20T18:58:38.045 INFO:teuthology.orchestra.run.smithi082.stdout: python3-rsa python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-20T18:58:38.045 INFO:teuthology.orchestra.run.smithi082.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-20T18:58:38.045 INFO:teuthology.orchestra.run.smithi082.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-20T18:58:38.046 INFO:teuthology.orchestra.run.smithi082.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-20T18:58:38.046 INFO:teuthology.orchestra.run.smithi082.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-09-20T18:58:38.046 INFO:teuthology.orchestra.run.smithi082.stdout: xmlstarlet zip 2024-09-20T18:58:38.046 INFO:teuthology.orchestra.run.smithi082.stdout:Suggested packages: 2024-09-20T18:58:38.046 INFO:teuthology.orchestra.run.smithi082.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-09-20T18:58:38.046 INFO:teuthology.orchestra.run.smithi082.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-09-20T18:58:38.046 INFO:teuthology.orchestra.run.smithi082.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-09-20T18:58:38.046 INFO:teuthology.orchestra.run.smithi082.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-09-20T18:58:38.046 INFO:teuthology.orchestra.run.smithi082.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-09-20T18:58:38.046 INFO:teuthology.orchestra.run.smithi082.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-09-20T18:58:38.047 INFO:teuthology.orchestra.run.smithi082.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-09-20T18:58:38.047 INFO:teuthology.orchestra.run.smithi082.stdout:Recommended packages: 2024-09-20T18:58:38.047 INFO:teuthology.orchestra.run.smithi082.stdout: btrfs-tools 2024-09-20T18:58:38.094 INFO:teuthology.orchestra.run.smithi018.stdout:The following packages were automatically installed and are no longer required: 2024-09-20T18:58:38.095 INFO:teuthology.orchestra.run.smithi018.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-20T18:58:38.095 INFO:teuthology.orchestra.run.smithi018.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-20T18:58:38.095 INFO:teuthology.orchestra.run.smithi018.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-20T18:58:38.095 INFO:teuthology.orchestra.run.smithi018.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-20T18:58:38.096 INFO:teuthology.orchestra.run.smithi018.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-20T18:58:38.096 INFO:teuthology.orchestra.run.smithi018.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-20T18:58:38.096 INFO:teuthology.orchestra.run.smithi018.stdout:The following additional packages will be installed: 2024-09-20T18:58:38.096 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-20T18:58:38.096 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-20T18:58:38.096 INFO:teuthology.orchestra.run.smithi018.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev libnbd0 liboath0 2024-09-20T18:58:38.096 INFO:teuthology.orchestra.run.smithi018.stdout: libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 2024-09-20T18:58:38.097 INFO:teuthology.orchestra.run.smithi018.stdout: libradosstriper1 librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph 2024-09-20T18:58:38.097 INFO:teuthology.orchestra.run.smithi018.stdout: libthrift-0.16.0 lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli 2024-09-20T18:58:38.097 INFO:teuthology.orchestra.run.smithi018.stdout: pkg-config python-asyncssh-doc python-babel-localedata 2024-09-20T18:58:38.097 INFO:teuthology.orchestra.run.smithi018.stdout: python-pastedeploy-tpl python3-asyncssh python3-babel python3-bcrypt 2024-09-20T18:58:38.097 INFO:teuthology.orchestra.run.smithi018.stdout: python3-cachetools python3-ceph-argparse python3-ceph-common python3-certifi 2024-09-20T18:58:38.098 INFO:teuthology.orchestra.run.smithi018.stdout: python3-cheroot python3-cherrypy3 python3-google-auth python3-idna 2024-09-20T18:58:38.098 INFO:teuthology.orchestra.run.smithi018.stdout: python3-iniconfig python3-jaraco.classes python3-jaraco.collections 2024-09-20T18:58:38.098 INFO:teuthology.orchestra.run.smithi018.stdout: python3-jaraco.functools python3-jaraco.text python3-jinja2 python3-joblib 2024-09-20T18:58:38.098 INFO:teuthology.orchestra.run.smithi018.stdout: python3-kubernetes python3-logutils python3-mako python3-markupsafe 2024-09-20T18:58:38.098 INFO:teuthology.orchestra.run.smithi018.stdout: python3-natsort python3-openssl python3-paste python3-pastedeploy 2024-09-20T18:58:38.098 INFO:teuthology.orchestra.run.smithi018.stdout: python3-pastescript python3-pecan python3-pluggy python3-portend 2024-09-20T18:58:38.098 INFO:teuthology.orchestra.run.smithi018.stdout: python3-prettytable python3-psutil python3-py python3-pyasn1 2024-09-20T18:58:38.098 INFO:teuthology.orchestra.run.smithi018.stdout: python3-pyasn1-modules python3-pygments python3-pyinotify python3-pytest 2024-09-20T18:58:38.098 INFO:teuthology.orchestra.run.smithi018.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-routes 2024-09-20T18:58:38.098 INFO:teuthology.orchestra.run.smithi018.stdout: python3-rsa python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-20T18:58:38.098 INFO:teuthology.orchestra.run.smithi018.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-20T18:58:38.098 INFO:teuthology.orchestra.run.smithi018.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-20T18:58:38.098 INFO:teuthology.orchestra.run.smithi018.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-20T18:58:38.098 INFO:teuthology.orchestra.run.smithi018.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-09-20T18:58:38.099 INFO:teuthology.orchestra.run.smithi018.stdout: xmlstarlet zip 2024-09-20T18:58:38.099 INFO:teuthology.orchestra.run.smithi018.stdout:Suggested packages: 2024-09-20T18:58:38.099 INFO:teuthology.orchestra.run.smithi018.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-09-20T18:58:38.099 INFO:teuthology.orchestra.run.smithi018.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-09-20T18:58:38.099 INFO:teuthology.orchestra.run.smithi018.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-09-20T18:58:38.099 INFO:teuthology.orchestra.run.smithi018.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-09-20T18:58:38.099 INFO:teuthology.orchestra.run.smithi018.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-09-20T18:58:38.099 INFO:teuthology.orchestra.run.smithi018.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-09-20T18:58:38.099 INFO:teuthology.orchestra.run.smithi018.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-09-20T18:58:38.100 INFO:teuthology.orchestra.run.smithi018.stdout:Recommended packages: 2024-09-20T18:58:38.100 INFO:teuthology.orchestra.run.smithi018.stdout: btrfs-tools 2024-09-20T18:58:38.119 INFO:teuthology.orchestra.run.smithi137.stdout:The following packages were automatically installed and are no longer required: 2024-09-20T18:58:38.119 INFO:teuthology.orchestra.run.smithi137.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-20T18:58:38.119 INFO:teuthology.orchestra.run.smithi137.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-20T18:58:38.119 INFO:teuthology.orchestra.run.smithi137.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-20T18:58:38.120 INFO:teuthology.orchestra.run.smithi137.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-20T18:58:38.120 INFO:teuthology.orchestra.run.smithi137.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-20T18:58:38.120 INFO:teuthology.orchestra.run.smithi137.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-20T18:58:38.121 INFO:teuthology.orchestra.run.smithi137.stdout:The following additional packages will be installed: 2024-09-20T18:58:38.121 INFO:teuthology.orchestra.run.smithi137.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-20T18:58:38.121 INFO:teuthology.orchestra.run.smithi137.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-20T18:58:38.121 INFO:teuthology.orchestra.run.smithi137.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev libnbd0 liboath0 2024-09-20T18:58:38.121 INFO:teuthology.orchestra.run.smithi137.stdout: libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 2024-09-20T18:58:38.121 INFO:teuthology.orchestra.run.smithi137.stdout: libradosstriper1 librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph 2024-09-20T18:58:38.122 INFO:teuthology.orchestra.run.smithi137.stdout: libthrift-0.16.0 lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli 2024-09-20T18:58:38.123 INFO:teuthology.orchestra.run.smithi137.stdout: pkg-config python-asyncssh-doc python-babel-localedata 2024-09-20T18:58:38.123 INFO:teuthology.orchestra.run.smithi137.stdout: python-pastedeploy-tpl python3-asyncssh python3-babel python3-bcrypt 2024-09-20T18:58:38.123 INFO:teuthology.orchestra.run.smithi137.stdout: python3-cachetools python3-ceph-argparse python3-ceph-common python3-certifi 2024-09-20T18:58:38.123 INFO:teuthology.orchestra.run.smithi137.stdout: python3-cheroot python3-cherrypy3 python3-google-auth python3-idna 2024-09-20T18:58:38.123 INFO:teuthology.orchestra.run.smithi137.stdout: python3-iniconfig python3-jaraco.classes python3-jaraco.collections 2024-09-20T18:58:38.123 INFO:teuthology.orchestra.run.smithi137.stdout: python3-jaraco.functools python3-jaraco.text python3-jinja2 python3-joblib 2024-09-20T18:58:38.123 INFO:teuthology.orchestra.run.smithi137.stdout: python3-kubernetes python3-logutils python3-mako python3-markupsafe 2024-09-20T18:58:38.123 INFO:teuthology.orchestra.run.smithi137.stdout: python3-natsort python3-openssl python3-paste python3-pastedeploy 2024-09-20T18:58:38.123 INFO:teuthology.orchestra.run.smithi137.stdout: python3-pastescript python3-pecan python3-pluggy python3-portend 2024-09-20T18:58:38.123 INFO:teuthology.orchestra.run.smithi137.stdout: python3-prettytable python3-psutil python3-py python3-pyasn1 2024-09-20T18:58:38.123 INFO:teuthology.orchestra.run.smithi137.stdout: python3-pyasn1-modules python3-pygments python3-pyinotify python3-pytest 2024-09-20T18:58:38.123 INFO:teuthology.orchestra.run.smithi137.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-routes 2024-09-20T18:58:38.123 INFO:teuthology.orchestra.run.smithi137.stdout: python3-rsa python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-20T18:58:38.124 INFO:teuthology.orchestra.run.smithi137.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-20T18:58:38.124 INFO:teuthology.orchestra.run.smithi137.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-20T18:58:38.124 INFO:teuthology.orchestra.run.smithi137.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-20T18:58:38.124 INFO:teuthology.orchestra.run.smithi137.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-09-20T18:58:38.124 INFO:teuthology.orchestra.run.smithi137.stdout: xmlstarlet zip 2024-09-20T18:58:38.124 INFO:teuthology.orchestra.run.smithi137.stdout:Suggested packages: 2024-09-20T18:58:38.124 INFO:teuthology.orchestra.run.smithi137.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-09-20T18:58:38.124 INFO:teuthology.orchestra.run.smithi137.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-09-20T18:58:38.124 INFO:teuthology.orchestra.run.smithi137.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-09-20T18:58:38.125 INFO:teuthology.orchestra.run.smithi137.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-09-20T18:58:38.125 INFO:teuthology.orchestra.run.smithi137.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-09-20T18:58:38.125 INFO:teuthology.orchestra.run.smithi137.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-09-20T18:58:38.125 INFO:teuthology.orchestra.run.smithi137.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-09-20T18:58:38.125 INFO:teuthology.orchestra.run.smithi137.stdout:Recommended packages: 2024-09-20T18:58:38.125 INFO:teuthology.orchestra.run.smithi137.stdout: btrfs-tools 2024-09-20T18:58:38.148 INFO:teuthology.orchestra.run.smithi082.stdout:The following NEW packages will be installed: 2024-09-20T18:58:38.148 INFO:teuthology.orchestra.run.smithi082.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-20T18:58:38.148 INFO:teuthology.orchestra.run.smithi082.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-20T18:58:38.148 INFO:teuthology.orchestra.run.smithi082.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-20T18:58:38.148 INFO:teuthology.orchestra.run.smithi082.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-09-20T18:58:38.148 INFO:teuthology.orchestra.run.smithi082.stdout: liblua5.3-dev libnbd0 liboath0 libonig5 libpcre2-16-0 libqt5core5a 2024-09-20T18:58:38.148 INFO:teuthology.orchestra.run.smithi082.stdout: libqt5dbus5 libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-09-20T18:58:38.149 INFO:teuthology.orchestra.run.smithi082.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-09-20T18:58:38.150 INFO:teuthology.orchestra.run.smithi082.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-09-20T18:58:38.150 INFO:teuthology.orchestra.run.smithi082.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-09-20T18:58:38.150 INFO:teuthology.orchestra.run.smithi082.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-09-20T18:58:38.150 INFO:teuthology.orchestra.run.smithi082.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-09-20T18:58:38.150 INFO:teuthology.orchestra.run.smithi082.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-20T18:58:38.150 INFO:teuthology.orchestra.run.smithi082.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-20T18:58:38.150 INFO:teuthology.orchestra.run.smithi082.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-20T18:58:38.150 INFO:teuthology.orchestra.run.smithi082.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-20T18:58:38.150 INFO:teuthology.orchestra.run.smithi082.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-20T18:58:38.150 INFO:teuthology.orchestra.run.smithi082.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-20T18:58:38.151 INFO:teuthology.orchestra.run.smithi082.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-20T18:58:38.151 INFO:teuthology.orchestra.run.smithi082.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-09-20T18:58:38.151 INFO:teuthology.orchestra.run.smithi082.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-09-20T18:58:38.151 INFO:teuthology.orchestra.run.smithi082.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-09-20T18:58:38.151 INFO:teuthology.orchestra.run.smithi082.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-09-20T18:58:38.151 INFO:teuthology.orchestra.run.smithi082.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-09-20T18:58:38.151 INFO:teuthology.orchestra.run.smithi082.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-09-20T18:58:38.151 INFO:teuthology.orchestra.run.smithi082.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-09-20T18:58:38.151 INFO:teuthology.orchestra.run.smithi082.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-09-20T18:58:38.207 INFO:teuthology.orchestra.run.smithi018.stdout:The following NEW packages will be installed: 2024-09-20T18:58:38.207 INFO:teuthology.orchestra.run.smithi018.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-20T18:58:38.207 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-20T18:58:38.207 INFO:teuthology.orchestra.run.smithi018.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-20T18:58:38.207 INFO:teuthology.orchestra.run.smithi018.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-09-20T18:58:38.207 INFO:teuthology.orchestra.run.smithi018.stdout: liblua5.3-dev libnbd0 liboath0 libonig5 libpcre2-16-0 libqt5core5a 2024-09-20T18:58:38.207 INFO:teuthology.orchestra.run.smithi018.stdout: libqt5dbus5 libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-09-20T18:58:38.208 INFO:teuthology.orchestra.run.smithi018.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-09-20T18:58:38.208 INFO:teuthology.orchestra.run.smithi018.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-09-20T18:58:38.208 INFO:teuthology.orchestra.run.smithi018.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-09-20T18:58:38.208 INFO:teuthology.orchestra.run.smithi018.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-09-20T18:58:38.208 INFO:teuthology.orchestra.run.smithi018.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-09-20T18:58:38.208 INFO:teuthology.orchestra.run.smithi018.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-20T18:58:38.208 INFO:teuthology.orchestra.run.smithi018.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-20T18:58:38.208 INFO:teuthology.orchestra.run.smithi018.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-20T18:58:38.208 INFO:teuthology.orchestra.run.smithi018.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-20T18:58:38.208 INFO:teuthology.orchestra.run.smithi018.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-20T18:58:38.208 INFO:teuthology.orchestra.run.smithi018.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-20T18:58:38.208 INFO:teuthology.orchestra.run.smithi018.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-20T18:58:38.208 INFO:teuthology.orchestra.run.smithi018.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-09-20T18:58:38.208 INFO:teuthology.orchestra.run.smithi018.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-09-20T18:58:38.209 INFO:teuthology.orchestra.run.smithi018.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-09-20T18:58:38.209 INFO:teuthology.orchestra.run.smithi018.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-09-20T18:58:38.209 INFO:teuthology.orchestra.run.smithi018.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-09-20T18:58:38.209 INFO:teuthology.orchestra.run.smithi018.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-09-20T18:58:38.209 INFO:teuthology.orchestra.run.smithi018.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-09-20T18:58:38.209 INFO:teuthology.orchestra.run.smithi018.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-09-20T18:58:38.209 INFO:teuthology.orchestra.run.smithi082.stdout:0 upgraded, 119 newly installed, 0 to remove and 332 not upgraded. 2024-09-20T18:58:38.209 INFO:teuthology.orchestra.run.smithi082.stdout:Need to get 244 MB of archives. 2024-09-20T18:58:38.209 INFO:teuthology.orchestra.run.smithi082.stdout:After this operation, 909 MB of additional disk space will be used. 2024-09-20T18:58:38.209 INFO:teuthology.orchestra.run.smithi082.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-09-20T18:58:38.226 INFO:teuthology.orchestra.run.smithi137.stdout:The following NEW packages will be installed: 2024-09-20T18:58:38.226 INFO:teuthology.orchestra.run.smithi137.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-20T18:58:38.226 INFO:teuthology.orchestra.run.smithi137.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-20T18:58:38.227 INFO:teuthology.orchestra.run.smithi137.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-20T18:58:38.227 INFO:teuthology.orchestra.run.smithi137.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-09-20T18:58:38.227 INFO:teuthology.orchestra.run.smithi137.stdout: liblua5.3-dev libnbd0 liboath0 libonig5 libpcre2-16-0 libqt5core5a 2024-09-20T18:58:38.227 INFO:teuthology.orchestra.run.smithi137.stdout: libqt5dbus5 libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-09-20T18:58:38.228 INFO:teuthology.orchestra.run.smithi137.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-09-20T18:58:38.228 INFO:teuthology.orchestra.run.smithi137.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-09-20T18:58:38.228 INFO:teuthology.orchestra.run.smithi137.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-09-20T18:58:38.228 INFO:teuthology.orchestra.run.smithi137.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-09-20T18:58:38.228 INFO:teuthology.orchestra.run.smithi137.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-09-20T18:58:38.229 INFO:teuthology.orchestra.run.smithi137.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-20T18:58:38.229 INFO:teuthology.orchestra.run.smithi137.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-20T18:58:38.229 INFO:teuthology.orchestra.run.smithi137.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-20T18:58:38.229 INFO:teuthology.orchestra.run.smithi137.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-20T18:58:38.229 INFO:teuthology.orchestra.run.smithi137.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-20T18:58:38.229 INFO:teuthology.orchestra.run.smithi137.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-20T18:58:38.229 INFO:teuthology.orchestra.run.smithi137.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-20T18:58:38.229 INFO:teuthology.orchestra.run.smithi137.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-09-20T18:58:38.229 INFO:teuthology.orchestra.run.smithi137.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-09-20T18:58:38.229 INFO:teuthology.orchestra.run.smithi137.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-09-20T18:58:38.229 INFO:teuthology.orchestra.run.smithi137.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-09-20T18:58:38.229 INFO:teuthology.orchestra.run.smithi137.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-09-20T18:58:38.229 INFO:teuthology.orchestra.run.smithi137.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-09-20T18:58:38.229 INFO:teuthology.orchestra.run.smithi137.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-09-20T18:58:38.230 INFO:teuthology.orchestra.run.smithi137.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-09-20T18:58:38.266 INFO:teuthology.orchestra.run.smithi018.stdout:0 upgraded, 119 newly installed, 0 to remove and 332 not upgraded. 2024-09-20T18:58:38.266 INFO:teuthology.orchestra.run.smithi018.stdout:Need to get 244 MB of archives. 2024-09-20T18:58:38.266 INFO:teuthology.orchestra.run.smithi018.stdout:After this operation, 909 MB of additional disk space will be used. 2024-09-20T18:58:38.266 INFO:teuthology.orchestra.run.smithi018.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-09-20T18:58:38.291 INFO:teuthology.orchestra.run.smithi082.stdout:Get:2 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.3.0-5099-g88deadb8-1jammy [3,634 kB] 2024-09-20T18:58:38.301 INFO:teuthology.orchestra.run.smithi082.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-09-20T18:58:38.306 INFO:teuthology.orchestra.run.smithi082.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-09-20T18:58:38.321 INFO:teuthology.orchestra.run.smithi082.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-09-20T18:58:38.350 INFO:teuthology.orchestra.run.smithi018.stdout:Get:2 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.3.0-5099-g88deadb8-1jammy [3,634 kB] 2024-09-20T18:58:38.365 INFO:teuthology.orchestra.run.smithi018.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-09-20T18:58:38.367 INFO:teuthology.orchestra.run.smithi018.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-09-20T18:58:38.371 INFO:teuthology.orchestra.run.smithi137.stdout:0 upgraded, 119 newly installed, 0 to remove and 332 not upgraded. 2024-09-20T18:58:38.371 INFO:teuthology.orchestra.run.smithi137.stdout:Need to get 244 MB of archives. 2024-09-20T18:58:38.371 INFO:teuthology.orchestra.run.smithi137.stdout:After this operation, 909 MB of additional disk space will be used. 2024-09-20T18:58:38.371 INFO:teuthology.orchestra.run.smithi137.stdout:Get:1 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.3.0-5099-g88deadb8-1jammy [3,634 kB] 2024-09-20T18:58:38.380 INFO:teuthology.orchestra.run.smithi082.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-09-20T18:58:38.384 INFO:teuthology.orchestra.run.smithi082.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-09-20T18:58:38.385 INFO:teuthology.orchestra.run.smithi018.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-09-20T18:58:38.396 INFO:teuthology.orchestra.run.smithi082.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-09-20T18:58:38.400 INFO:teuthology.orchestra.run.smithi082.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libnbd0 amd64 1.10.5-1 [71.3 kB] 2024-09-20T18:58:38.401 INFO:teuthology.orchestra.run.smithi082.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-09-20T18:58:38.402 INFO:teuthology.orchestra.run.smithi082.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-09-20T18:58:38.403 INFO:teuthology.orchestra.run.smithi082.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-09-20T18:58:38.411 INFO:teuthology.orchestra.run.smithi082.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-09-20T18:58:38.413 INFO:teuthology.orchestra.run.smithi082.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-09-20T18:58:38.415 INFO:teuthology.orchestra.run.smithi082.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-09-20T18:58:38.416 INFO:teuthology.orchestra.run.smithi137.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-09-20T18:58:38.417 INFO:teuthology.orchestra.run.smithi082.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-09-20T18:58:38.417 INFO:teuthology.orchestra.run.smithi082.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-09-20T18:58:38.434 INFO:teuthology.orchestra.run.smithi082.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-09-20T18:58:38.436 INFO:teuthology.orchestra.run.smithi082.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-09-20T18:58:38.437 INFO:teuthology.orchestra.run.smithi082.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-09-20T18:58:38.438 INFO:teuthology.orchestra.run.smithi082.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-09-20T18:58:38.439 INFO:teuthology.orchestra.run.smithi082.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-09-20T18:58:38.439 INFO:teuthology.orchestra.run.smithi082.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-09-20T18:58:38.440 INFO:teuthology.orchestra.run.smithi082.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-09-20T18:58:38.440 INFO:teuthology.orchestra.run.smithi082.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-09-20T18:58:38.448 INFO:teuthology.orchestra.run.smithi018.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-09-20T18:58:38.450 INFO:teuthology.orchestra.run.smithi082.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-09-20T18:58:38.451 INFO:teuthology.orchestra.run.smithi082.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-20T18:58:38.453 INFO:teuthology.orchestra.run.smithi018.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-09-20T18:58:38.465 INFO:teuthology.orchestra.run.smithi018.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-09-20T18:58:38.467 INFO:teuthology.orchestra.run.smithi082.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-20T18:58:38.468 INFO:teuthology.orchestra.run.smithi082.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-20T18:58:38.469 INFO:teuthology.orchestra.run.smithi018.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libnbd0 amd64 1.10.5-1 [71.3 kB] 2024-09-20T18:58:38.471 INFO:teuthology.orchestra.run.smithi018.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-09-20T18:58:38.471 INFO:teuthology.orchestra.run.smithi018.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-09-20T18:58:38.472 INFO:teuthology.orchestra.run.smithi082.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-20T18:58:38.472 INFO:teuthology.orchestra.run.smithi082.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-20T18:58:38.472 INFO:teuthology.orchestra.run.smithi082.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-20T18:58:38.472 INFO:teuthology.orchestra.run.smithi082.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-09-20T18:58:38.472 INFO:teuthology.orchestra.run.smithi018.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-09-20T18:58:38.473 INFO:teuthology.orchestra.run.smithi082.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-20T18:58:38.473 INFO:teuthology.orchestra.run.smithi082.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-20T18:58:38.479 INFO:teuthology.orchestra.run.smithi082.stdout:Get:36 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.3.0-5099-g88deadb8-1jammy [3,335 kB] 2024-09-20T18:58:38.480 INFO:teuthology.orchestra.run.smithi018.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-09-20T18:58:38.482 INFO:teuthology.orchestra.run.smithi018.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-09-20T18:58:38.484 INFO:teuthology.orchestra.run.smithi082.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-webob all 1:1.8.6-1.1ubuntu0.1 [86.7 kB] 2024-09-20T18:58:38.485 INFO:teuthology.orchestra.run.smithi018.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-09-20T18:58:38.486 INFO:teuthology.orchestra.run.smithi082.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-20T18:58:38.486 INFO:teuthology.orchestra.run.smithi018.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-09-20T18:58:38.487 INFO:teuthology.orchestra.run.smithi018.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-09-20T18:58:38.501 INFO:teuthology.orchestra.run.smithi082.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-20T18:58:38.502 INFO:teuthology.orchestra.run.smithi082.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-20T18:58:38.502 INFO:teuthology.orchestra.run.smithi018.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-09-20T18:58:38.505 INFO:teuthology.orchestra.run.smithi018.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-09-20T18:58:38.507 INFO:teuthology.orchestra.run.smithi082.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-20T18:58:38.508 INFO:teuthology.orchestra.run.smithi082.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-20T18:58:38.508 INFO:teuthology.orchestra.run.smithi082.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-20T18:58:38.508 INFO:teuthology.orchestra.run.smithi018.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-09-20T18:58:38.508 INFO:teuthology.orchestra.run.smithi018.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-09-20T18:58:38.508 INFO:teuthology.orchestra.run.smithi018.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-09-20T18:58:38.508 INFO:teuthology.orchestra.run.smithi082.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-20T18:58:38.509 INFO:teuthology.orchestra.run.smithi082.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-20T18:58:38.511 INFO:teuthology.orchestra.run.smithi082.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-20T18:58:38.518 INFO:teuthology.orchestra.run.smithi082.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-09-20T18:58:38.520 INFO:teuthology.orchestra.run.smithi082.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-09-20T18:58:38.520 INFO:teuthology.orchestra.run.smithi018.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-09-20T18:58:38.520 INFO:teuthology.orchestra.run.smithi018.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-09-20T18:58:38.520 INFO:teuthology.orchestra.run.smithi018.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-09-20T18:58:38.521 INFO:teuthology.orchestra.run.smithi018.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-09-20T18:58:38.521 INFO:teuthology.orchestra.run.smithi018.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-20T18:58:38.529 INFO:teuthology.orchestra.run.smithi082.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-20T18:58:38.531 INFO:teuthology.orchestra.run.smithi082.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-20T18:58:38.532 INFO:teuthology.orchestra.run.smithi082.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-20T18:58:38.533 INFO:teuthology.orchestra.run.smithi082.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-20T18:58:38.535 INFO:teuthology.orchestra.run.smithi082.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-09-20T18:58:38.536 INFO:teuthology.orchestra.run.smithi018.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-20T18:58:38.537 INFO:teuthology.orchestra.run.smithi018.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-20T18:58:38.540 INFO:teuthology.orchestra.run.smithi018.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-20T18:58:38.540 INFO:teuthology.orchestra.run.smithi018.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-20T18:58:38.540 INFO:teuthology.orchestra.run.smithi018.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-20T18:58:38.554 INFO:teuthology.orchestra.run.smithi018.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-09-20T18:58:38.555 INFO:teuthology.orchestra.run.smithi018.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-20T18:58:38.555 INFO:teuthology.orchestra.run.smithi018.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-20T18:58:38.555 INFO:teuthology.orchestra.run.smithi018.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-webob all 1:1.8.6-1.1ubuntu0.1 [86.7 kB] 2024-09-20T18:58:38.557 INFO:teuthology.orchestra.run.smithi018.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-20T18:58:38.572 INFO:teuthology.orchestra.run.smithi018.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-20T18:58:38.572 INFO:teuthology.orchestra.run.smithi018.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-20T18:58:38.574 INFO:teuthology.orchestra.run.smithi082.stdout:Get:54 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.3.0-5099-g88deadb8-1jammy [722 kB] 2024-09-20T18:58:38.577 INFO:teuthology.orchestra.run.smithi018.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-20T18:58:38.577 INFO:teuthology.orchestra.run.smithi018.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-20T18:58:38.577 INFO:teuthology.orchestra.run.smithi018.stdout:Get:42 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.3.0-5099-g88deadb8-1jammy [3,335 kB] 2024-09-20T18:58:38.577 INFO:teuthology.orchestra.run.smithi018.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-20T18:58:38.585 INFO:teuthology.orchestra.run.smithi082.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-20T18:58:38.586 INFO:teuthology.orchestra.run.smithi082.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-20T18:58:38.587 INFO:teuthology.orchestra.run.smithi082.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-20T18:58:38.588 INFO:teuthology.orchestra.run.smithi082.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-20T18:58:38.588 INFO:teuthology.orchestra.run.smithi018.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-20T18:58:38.589 INFO:teuthology.orchestra.run.smithi082.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-20T18:58:38.589 INFO:teuthology.orchestra.run.smithi018.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-20T18:58:38.591 INFO:teuthology.orchestra.run.smithi018.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-20T18:58:38.592 INFO:teuthology.orchestra.run.smithi018.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-09-20T18:58:38.593 INFO:teuthology.orchestra.run.smithi018.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-09-20T18:58:38.604 INFO:teuthology.orchestra.run.smithi018.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-20T18:58:38.606 INFO:teuthology.orchestra.run.smithi082.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-20T18:58:38.607 INFO:teuthology.orchestra.run.smithi018.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-20T18:58:38.607 INFO:teuthology.orchestra.run.smithi082.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-20T18:58:38.608 INFO:teuthology.orchestra.run.smithi082.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-20T18:58:38.608 INFO:teuthology.orchestra.run.smithi018.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-20T18:58:38.609 INFO:teuthology.orchestra.run.smithi018.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-20T18:58:38.612 INFO:teuthology.orchestra.run.smithi018.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-09-20T18:58:38.612 INFO:teuthology.orchestra.run.smithi082.stdout:Get:63 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.3.0-5099-g88deadb8-1jammy [356 kB] 2024-09-20T18:58:38.620 INFO:teuthology.orchestra.run.smithi082.stdout:Get:64 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.3.0-5099-g88deadb8-1jammy [32.8 kB] 2024-09-20T18:58:38.621 INFO:teuthology.orchestra.run.smithi082.stdout:Get:65 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.3.0-5099-g88deadb8-1jammy [180 kB] 2024-09-20T18:58:38.622 INFO:teuthology.orchestra.run.smithi082.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-20T18:58:38.622 INFO:teuthology.orchestra.run.smithi082.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-20T18:58:38.623 INFO:teuthology.orchestra.run.smithi082.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-20T18:58:38.623 INFO:teuthology.orchestra.run.smithi082.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-20T18:58:38.624 INFO:teuthology.orchestra.run.smithi082.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-20T18:58:38.624 INFO:teuthology.orchestra.run.smithi082.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-09-20T18:58:38.625 INFO:teuthology.orchestra.run.smithi082.stdout:Get:72 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.3.0-5099-g88deadb8-1jammy [72.9 kB] 2024-09-20T18:58:38.627 INFO:teuthology.orchestra.run.smithi082.stdout:Get:73 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.3.0-5099-g88deadb8-1jammy [340 kB] 2024-09-20T18:58:38.634 INFO:teuthology.orchestra.run.smithi082.stdout:Get:74 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.3.0-5099-g88deadb8-1jammy [7,965 kB] 2024-09-20T18:58:38.638 INFO:teuthology.orchestra.run.smithi082.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-20T18:58:38.639 INFO:teuthology.orchestra.run.smithi082.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-20T18:58:38.642 INFO:teuthology.orchestra.run.smithi082.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-20T18:58:38.655 INFO:teuthology.orchestra.run.smithi082.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-20T18:58:38.657 INFO:teuthology.orchestra.run.smithi082.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-20T18:58:38.658 INFO:teuthology.orchestra.run.smithi082.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-20T18:58:38.660 INFO:teuthology.orchestra.run.smithi082.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-20T18:58:38.663 INFO:teuthology.orchestra.run.smithi082.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-09-20T18:58:38.663 INFO:teuthology.orchestra.run.smithi082.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-09-20T18:58:38.664 INFO:teuthology.orchestra.run.smithi082.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-20T18:58:38.666 INFO:teuthology.orchestra.run.smithi018.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-20T18:58:38.667 INFO:teuthology.orchestra.run.smithi018.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-20T18:58:38.668 INFO:teuthology.orchestra.run.smithi018.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-20T18:58:38.668 INFO:teuthology.orchestra.run.smithi018.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-20T18:58:38.669 INFO:teuthology.orchestra.run.smithi018.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-20T18:58:38.672 INFO:teuthology.orchestra.run.smithi082.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-09-20T18:58:38.673 INFO:teuthology.orchestra.run.smithi082.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-20T18:58:38.676 INFO:teuthology.orchestra.run.smithi082.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-20T18:58:38.687 INFO:teuthology.orchestra.run.smithi018.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-20T18:58:38.689 INFO:teuthology.orchestra.run.smithi018.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-20T18:58:38.689 INFO:teuthology.orchestra.run.smithi082.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-20T18:58:38.690 INFO:teuthology.orchestra.run.smithi018.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-20T18:58:38.690 INFO:teuthology.orchestra.run.smithi082.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-20T18:58:38.690 INFO:teuthology.orchestra.run.smithi082.stdout:Get:90 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-20T18:58:38.692 INFO:teuthology.orchestra.run.smithi082.stdout:Get:91 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-20T18:58:38.692 INFO:teuthology.orchestra.run.smithi082.stdout:Get:92 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-20T18:58:38.699 INFO:teuthology.orchestra.run.smithi082.stdout:Get:93 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-20T18:58:38.699 INFO:teuthology.orchestra.run.smithi082.stdout:Get:94 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-20T18:58:38.701 INFO:teuthology.orchestra.run.smithi018.stdout:Get:62 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.3.0-5099-g88deadb8-1jammy [722 kB] 2024-09-20T18:58:38.704 INFO:teuthology.orchestra.run.smithi018.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-20T18:58:38.704 INFO:teuthology.orchestra.run.smithi018.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-20T18:58:38.705 INFO:teuthology.orchestra.run.smithi018.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-20T18:58:38.705 INFO:teuthology.orchestra.run.smithi018.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-20T18:58:38.705 INFO:teuthology.orchestra.run.smithi018.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-20T18:58:38.706 INFO:teuthology.orchestra.run.smithi018.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-09-20T18:58:38.706 INFO:teuthology.orchestra.run.smithi082.stdout:Get:95 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-20T18:58:38.708 INFO:teuthology.orchestra.run.smithi082.stdout:Get:96 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-20T18:58:38.709 INFO:teuthology.orchestra.run.smithi082.stdout:Get:97 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-20T18:58:38.719 INFO:teuthology.orchestra.run.smithi018.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-20T18:58:38.719 INFO:teuthology.orchestra.run.smithi018.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-20T18:58:38.722 INFO:teuthology.orchestra.run.smithi018.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-20T18:58:38.736 INFO:teuthology.orchestra.run.smithi018.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-20T18:58:38.738 INFO:teuthology.orchestra.run.smithi018.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-20T18:58:38.738 INFO:teuthology.orchestra.run.smithi018.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-20T18:58:38.741 INFO:teuthology.orchestra.run.smithi018.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-20T18:58:38.744 INFO:teuthology.orchestra.run.smithi018.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-09-20T18:58:38.745 INFO:teuthology.orchestra.run.smithi018.stdout:Get:77 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.3.0-5099-g88deadb8-1jammy [356 kB] 2024-09-20T18:58:38.745 INFO:teuthology.orchestra.run.smithi018.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-09-20T18:58:38.745 INFO:teuthology.orchestra.run.smithi018.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-20T18:58:38.752 INFO:teuthology.orchestra.run.smithi018.stdout:Get:80 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.3.0-5099-g88deadb8-1jammy [32.8 kB] 2024-09-20T18:58:38.753 INFO:teuthology.orchestra.run.smithi018.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-09-20T18:58:38.753 INFO:teuthology.orchestra.run.smithi018.stdout:Get:82 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.3.0-5099-g88deadb8-1jammy [180 kB] 2024-09-20T18:58:38.754 INFO:teuthology.orchestra.run.smithi018.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-20T18:58:38.757 INFO:teuthology.orchestra.run.smithi018.stdout:Get:84 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.3.0-5099-g88deadb8-1jammy [72.9 kB] 2024-09-20T18:58:38.758 INFO:teuthology.orchestra.run.smithi018.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-20T18:58:38.759 INFO:teuthology.orchestra.run.smithi018.stdout:Get:86 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.3.0-5099-g88deadb8-1jammy [340 kB] 2024-09-20T18:58:38.766 INFO:teuthology.orchestra.run.smithi018.stdout:Get:87 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.3.0-5099-g88deadb8-1jammy [7,965 kB] 2024-09-20T18:58:38.770 INFO:teuthology.orchestra.run.smithi018.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-20T18:58:38.771 INFO:teuthology.orchestra.run.smithi018.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-20T18:58:38.771 INFO:teuthology.orchestra.run.smithi018.stdout:Get:90 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-20T18:58:38.773 INFO:teuthology.orchestra.run.smithi018.stdout:Get:91 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-20T18:58:38.774 INFO:teuthology.orchestra.run.smithi018.stdout:Get:92 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-20T18:58:38.780 INFO:teuthology.orchestra.run.smithi018.stdout:Get:93 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-20T18:58:38.780 INFO:teuthology.orchestra.run.smithi018.stdout:Get:94 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-20T18:58:38.787 INFO:teuthology.orchestra.run.smithi018.stdout:Get:95 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-20T18:58:38.789 INFO:teuthology.orchestra.run.smithi018.stdout:Get:96 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-20T18:58:38.790 INFO:teuthology.orchestra.run.smithi018.stdout:Get:97 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-20T18:58:38.832 INFO:teuthology.orchestra.run.smithi137.stdout:Get:3 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.3.0-5099-g88deadb8-1jammy [3,335 kB] 2024-09-20T18:58:38.839 INFO:teuthology.orchestra.run.smithi137.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-09-20T18:58:38.852 INFO:teuthology.orchestra.run.smithi137.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-09-20T18:58:38.929 INFO:teuthology.orchestra.run.smithi082.stdout:Get:98 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.3.0-5099-g88deadb8-1jammy [112 kB] 2024-09-20T18:58:38.932 INFO:teuthology.orchestra.run.smithi082.stdout:Get:99 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.3.0-5099-g88deadb8-1jammy [473 kB] 2024-09-20T18:58:38.933 INFO:teuthology.orchestra.run.smithi137.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-09-20T18:58:38.954 INFO:teuthology.orchestra.run.smithi082.stdout:Get:100 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.3.0-5099-g88deadb8-1jammy [28.3 MB] 2024-09-20T18:58:39.095 INFO:teuthology.orchestra.run.smithi018.stdout:Get:98 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.3.0-5099-g88deadb8-1jammy [112 kB] 2024-09-20T18:58:39.098 INFO:teuthology.orchestra.run.smithi018.stdout:Get:99 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.3.0-5099-g88deadb8-1jammy [473 kB] 2024-09-20T18:58:39.107 INFO:teuthology.orchestra.run.smithi018.stdout:Get:100 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.3.0-5099-g88deadb8-1jammy [28.3 MB] 2024-09-20T18:58:39.162 INFO:teuthology.orchestra.run.smithi137.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-09-20T18:58:39.173 INFO:teuthology.orchestra.run.smithi137.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-09-20T18:58:39.192 INFO:teuthology.orchestra.run.smithi137.stdout:Get:9 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.3.0-5099-g88deadb8-1jammy [722 kB] 2024-09-20T18:58:39.204 INFO:teuthology.orchestra.run.smithi137.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-09-20T18:58:39.214 INFO:teuthology.orchestra.run.smithi137.stdout:Get:11 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.3.0-5099-g88deadb8-1jammy [356 kB] 2024-09-20T18:58:39.215 INFO:teuthology.orchestra.run.smithi137.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libnbd0 amd64 1.10.5-1 [71.3 kB] 2024-09-20T18:58:39.217 INFO:teuthology.orchestra.run.smithi137.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-09-20T18:58:39.218 INFO:teuthology.orchestra.run.smithi137.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-09-20T18:58:39.219 INFO:teuthology.orchestra.run.smithi137.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-09-20T18:58:39.233 INFO:teuthology.orchestra.run.smithi137.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-09-20T18:58:39.237 INFO:teuthology.orchestra.run.smithi137.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-09-20T18:58:39.244 INFO:teuthology.orchestra.run.smithi137.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-09-20T18:58:39.279 INFO:teuthology.orchestra.run.smithi137.stdout:Get:19 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.3.0-5099-g88deadb8-1jammy [32.8 kB] 2024-09-20T18:58:39.279 INFO:teuthology.orchestra.run.smithi137.stdout:Get:20 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.3.0-5099-g88deadb8-1jammy [180 kB] 2024-09-20T18:58:39.323 INFO:teuthology.orchestra.run.smithi137.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-09-20T18:58:39.324 INFO:teuthology.orchestra.run.smithi137.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-09-20T18:58:39.328 INFO:teuthology.orchestra.run.smithi137.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-09-20T18:58:39.332 INFO:teuthology.orchestra.run.smithi137.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-09-20T18:58:39.336 INFO:teuthology.orchestra.run.smithi137.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-09-20T18:58:39.337 INFO:teuthology.orchestra.run.smithi137.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-09-20T18:58:39.337 INFO:teuthology.orchestra.run.smithi137.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-09-20T18:58:39.339 INFO:teuthology.orchestra.run.smithi137.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-09-20T18:58:39.340 INFO:teuthology.orchestra.run.smithi137.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-09-20T18:58:39.352 INFO:teuthology.orchestra.run.smithi137.stdout:Get:30 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.3.0-5099-g88deadb8-1jammy [72.9 kB] 2024-09-20T18:58:39.354 INFO:teuthology.orchestra.run.smithi137.stdout:Get:31 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.3.0-5099-g88deadb8-1jammy [340 kB] 2024-09-20T18:58:39.360 INFO:teuthology.orchestra.run.smithi137.stdout:Get:32 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.3.0-5099-g88deadb8-1jammy [7,965 kB] 2024-09-20T18:58:39.407 INFO:teuthology.orchestra.run.smithi137.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-09-20T18:58:39.422 INFO:teuthology.orchestra.run.smithi137.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-09-20T18:58:39.423 INFO:teuthology.orchestra.run.smithi137.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-20T18:58:39.424 INFO:teuthology.orchestra.run.smithi137.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-20T18:58:39.425 INFO:teuthology.orchestra.run.smithi137.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-20T18:58:39.430 INFO:teuthology.orchestra.run.smithi137.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-20T18:58:39.488 INFO:teuthology.orchestra.run.smithi137.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-20T18:58:39.490 INFO:teuthology.orchestra.run.smithi137.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-20T18:58:39.491 INFO:teuthology.orchestra.run.smithi137.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-09-20T18:58:39.494 INFO:teuthology.orchestra.run.smithi137.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-20T18:58:39.569 INFO:teuthology.orchestra.run.smithi137.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-20T18:58:39.570 INFO:teuthology.orchestra.run.smithi137.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-webob all 1:1.8.6-1.1ubuntu0.1 [86.7 kB] 2024-09-20T18:58:39.572 INFO:teuthology.orchestra.run.smithi137.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-20T18:58:39.573 INFO:teuthology.orchestra.run.smithi137.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-20T18:58:39.574 INFO:teuthology.orchestra.run.smithi137.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-20T18:58:39.651 INFO:teuthology.orchestra.run.smithi137.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-20T18:58:39.651 INFO:teuthology.orchestra.run.smithi137.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-20T18:58:39.653 INFO:teuthology.orchestra.run.smithi137.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-20T18:58:39.655 INFO:teuthology.orchestra.run.smithi137.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-20T18:58:39.657 INFO:teuthology.orchestra.run.smithi137.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-20T18:58:39.732 INFO:teuthology.orchestra.run.smithi137.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-20T18:58:39.733 INFO:teuthology.orchestra.run.smithi137.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-09-20T18:58:39.736 INFO:teuthology.orchestra.run.smithi137.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-09-20T18:58:39.737 INFO:teuthology.orchestra.run.smithi137.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-20T18:58:39.743 INFO:teuthology.orchestra.run.smithi137.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-20T18:58:39.825 INFO:teuthology.orchestra.run.smithi137.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-20T18:58:39.825 INFO:teuthology.orchestra.run.smithi137.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-20T18:58:39.825 INFO:teuthology.orchestra.run.smithi137.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-09-20T18:58:39.980 INFO:teuthology.orchestra.run.smithi137.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-20T18:58:39.981 INFO:teuthology.orchestra.run.smithi137.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-20T18:58:39.983 INFO:teuthology.orchestra.run.smithi137.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-20T18:58:39.983 INFO:teuthology.orchestra.run.smithi137.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-20T18:58:39.985 INFO:teuthology.orchestra.run.smithi137.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-20T18:58:40.013 INFO:teuthology.orchestra.run.smithi137.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-20T18:58:40.064 INFO:teuthology.orchestra.run.smithi137.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-20T18:58:40.064 INFO:teuthology.orchestra.run.smithi137.stdout:Get:68 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.3.0-5099-g88deadb8-1jammy [112 kB] 2024-09-20T18:58:40.065 INFO:teuthology.orchestra.run.smithi137.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-20T18:58:40.066 INFO:teuthology.orchestra.run.smithi137.stdout:Get:70 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.3.0-5099-g88deadb8-1jammy [473 kB] 2024-09-20T18:58:40.076 INFO:teuthology.orchestra.run.smithi137.stdout:Get:71 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.3.0-5099-g88deadb8-1jammy [28.3 MB] 2024-09-20T18:58:40.087 INFO:teuthology.orchestra.run.smithi137.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-20T18:58:40.088 INFO:teuthology.orchestra.run.smithi137.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-20T18:58:40.145 INFO:teuthology.orchestra.run.smithi137.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-20T18:58:40.146 INFO:teuthology.orchestra.run.smithi137.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-20T18:58:40.147 INFO:teuthology.orchestra.run.smithi137.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-20T18:58:40.148 INFO:teuthology.orchestra.run.smithi137.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-09-20T18:58:40.149 INFO:teuthology.orchestra.run.smithi137.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-20T18:58:40.227 INFO:teuthology.orchestra.run.smithi137.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-20T18:58:40.234 INFO:teuthology.orchestra.run.smithi137.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-20T18:58:40.238 INFO:teuthology.orchestra.run.smithi137.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-20T18:58:40.238 INFO:teuthology.orchestra.run.smithi018.stdout:Get:101 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.3.0-5099-g88deadb8-1jammy [5,212 kB] 2024-09-20T18:58:40.241 INFO:teuthology.orchestra.run.smithi137.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-20T18:58:40.243 INFO:teuthology.orchestra.run.smithi137.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-20T18:58:40.308 INFO:teuthology.orchestra.run.smithi137.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-20T18:58:40.315 INFO:teuthology.orchestra.run.smithi137.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-09-20T18:58:40.317 INFO:teuthology.orchestra.run.smithi137.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-09-20T18:58:40.319 INFO:teuthology.orchestra.run.smithi137.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-20T18:58:40.330 INFO:teuthology.orchestra.run.smithi137.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-09-20T18:58:40.331 INFO:teuthology.orchestra.run.smithi018.stdout:Get:102 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.3.0-5099-g88deadb8-1jammy [252 kB] 2024-09-20T18:58:40.334 INFO:teuthology.orchestra.run.smithi018.stdout:Get:103 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.3.0-5099-g88deadb8-1jammy [124 kB] 2024-09-20T18:58:40.337 INFO:teuthology.orchestra.run.smithi018.stdout:Get:104 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.3.0-5099-g88deadb8-1jammy [1,561 kB] 2024-09-20T18:58:40.338 INFO:teuthology.orchestra.run.smithi082.stdout:Get:101 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.3.0-5099-g88deadb8-1jammy [5,212 kB] 2024-09-20T18:58:40.375 INFO:teuthology.orchestra.run.smithi018.stdout:Get:105 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.3.0-5099-g88deadb8-1jammy [6,310 kB] 2024-09-20T18:58:40.390 INFO:teuthology.orchestra.run.smithi137.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-20T18:58:40.398 INFO:teuthology.orchestra.run.smithi137.stdout:Get:90 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-20T18:58:40.400 INFO:teuthology.orchestra.run.smithi137.stdout:Get:91 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-20T18:58:40.403 INFO:teuthology.orchestra.run.smithi137.stdout:Get:92 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-20T18:58:40.406 INFO:teuthology.orchestra.run.smithi137.stdout:Get:93 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-20T18:58:40.471 INFO:teuthology.orchestra.run.smithi137.stdout:Get:94 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-20T18:58:40.473 INFO:teuthology.orchestra.run.smithi137.stdout:Get:95 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-20T18:58:40.490 INFO:teuthology.orchestra.run.smithi137.stdout:Get:96 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-20T18:58:40.491 INFO:teuthology.orchestra.run.smithi137.stdout:Get:97 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-20T18:58:40.492 INFO:teuthology.orchestra.run.smithi137.stdout:Get:98 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-20T18:58:40.501 INFO:teuthology.orchestra.run.smithi082.stdout:Get:102 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.3.0-5099-g88deadb8-1jammy [252 kB] 2024-09-20T18:58:40.507 INFO:teuthology.orchestra.run.smithi082.stdout:Get:103 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.3.0-5099-g88deadb8-1jammy [124 kB] 2024-09-20T18:58:40.510 INFO:teuthology.orchestra.run.smithi082.stdout:Get:104 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.3.0-5099-g88deadb8-1jammy [1,561 kB] 2024-09-20T18:58:40.552 INFO:teuthology.orchestra.run.smithi137.stdout:Get:99 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-20T18:58:40.554 INFO:teuthology.orchestra.run.smithi137.stdout:Get:100 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-20T18:58:40.573 INFO:teuthology.orchestra.run.smithi082.stdout:Get:105 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.3.0-5099-g88deadb8-1jammy [6,310 kB] 2024-09-20T18:58:40.605 INFO:teuthology.orchestra.run.smithi018.stdout:Get:106 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.3.0-5099-g88deadb8-1jammy [23.1 MB] 2024-09-20T18:58:40.871 INFO:teuthology.orchestra.run.smithi082.stdout:Get:106 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.3.0-5099-g88deadb8-1jammy [23.1 MB] 2024-09-20T18:58:41.553 INFO:teuthology.orchestra.run.smithi018.stdout:Get:107 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.3.0-5099-g88deadb8-1jammy [14.0 kB] 2024-09-20T18:58:41.553 INFO:teuthology.orchestra.run.smithi018.stdout:Get:108 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.3.0-5099-g88deadb8-1jammy [880 kB] 2024-09-20T18:58:41.570 INFO:teuthology.orchestra.run.smithi018.stdout:Get:109 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.3.0-5099-g88deadb8-1jammy [2,453 kB] 2024-09-20T18:58:41.613 INFO:teuthology.orchestra.run.smithi018.stdout:Get:110 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.3.0-5099-g88deadb8-1jammy [813 kB] 2024-09-20T18:58:41.629 INFO:teuthology.orchestra.run.smithi018.stdout:Get:111 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.3.0-5099-g88deadb8-1jammy [160 kB] 2024-09-20T18:58:41.632 INFO:teuthology.orchestra.run.smithi018.stdout:Get:112 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.3.0-5099-g88deadb8-1jammy [61.5 MB] 2024-09-20T18:58:41.987 INFO:teuthology.orchestra.run.smithi082.stdout:Get:107 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.3.0-5099-g88deadb8-1jammy [14.0 kB] 2024-09-20T18:58:41.987 INFO:teuthology.orchestra.run.smithi082.stdout:Get:108 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.3.0-5099-g88deadb8-1jammy [880 kB] 2024-09-20T18:58:42.005 INFO:teuthology.orchestra.run.smithi082.stdout:Get:109 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.3.0-5099-g88deadb8-1jammy [2,453 kB] 2024-09-20T18:58:42.051 INFO:teuthology.orchestra.run.smithi082.stdout:Get:110 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.3.0-5099-g88deadb8-1jammy [813 kB] 2024-09-20T18:58:42.077 INFO:teuthology.orchestra.run.smithi082.stdout:Get:111 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.3.0-5099-g88deadb8-1jammy [160 kB] 2024-09-20T18:58:42.080 INFO:teuthology.orchestra.run.smithi082.stdout:Get:112 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.3.0-5099-g88deadb8-1jammy [61.5 MB] 2024-09-20T18:58:42.604 INFO:teuthology.orchestra.run.smithi137.stdout:Get:101 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.3.0-5099-g88deadb8-1jammy [5,212 kB] 2024-09-20T18:58:42.964 INFO:teuthology.orchestra.run.smithi137.stdout:Get:102 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.3.0-5099-g88deadb8-1jammy [252 kB] 2024-09-20T18:58:43.024 INFO:teuthology.orchestra.run.smithi137.stdout:Get:103 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.3.0-5099-g88deadb8-1jammy [124 kB] 2024-09-20T18:58:43.027 INFO:teuthology.orchestra.run.smithi137.stdout:Get:104 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.3.0-5099-g88deadb8-1jammy [1,561 kB] 2024-09-20T18:58:43.174 INFO:teuthology.orchestra.run.smithi137.stdout:Get:105 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.3.0-5099-g88deadb8-1jammy [6,310 kB] 2024-09-20T18:58:43.771 INFO:teuthology.orchestra.run.smithi137.stdout:Get:106 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.3.0-5099-g88deadb8-1jammy [23.1 MB] 2024-09-20T18:58:44.266 INFO:teuthology.orchestra.run.smithi018.stdout:Get:113 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.3.0-5099-g88deadb8-1jammy [8,625 kB] 2024-09-20T18:58:44.497 INFO:teuthology.orchestra.run.smithi018.stdout:Get:114 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.3.0-5099-g88deadb8-1jammy [14.2 kB] 2024-09-20T18:58:44.498 INFO:teuthology.orchestra.run.smithi018.stdout:Get:115 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.3.0-5099-g88deadb8-1jammy [48.5 MB] 2024-09-20T18:58:44.775 INFO:teuthology.orchestra.run.smithi082.stdout:Get:113 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.3.0-5099-g88deadb8-1jammy [8,625 kB] 2024-09-20T18:58:45.010 INFO:teuthology.orchestra.run.smithi082.stdout:Get:114 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.3.0-5099-g88deadb8-1jammy [14.2 kB] 2024-09-20T18:58:45.011 INFO:teuthology.orchestra.run.smithi082.stdout:Get:115 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.3.0-5099-g88deadb8-1jammy [48.5 MB] 2024-09-20T18:58:45.930 INFO:teuthology.orchestra.run.smithi137.stdout:Get:107 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.3.0-5099-g88deadb8-1jammy [14.0 kB] 2024-09-20T18:58:45.931 INFO:teuthology.orchestra.run.smithi137.stdout:Get:108 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.3.0-5099-g88deadb8-1jammy [880 kB] 2024-09-20T18:58:45.988 INFO:teuthology.orchestra.run.smithi137.stdout:Get:109 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.3.0-5099-g88deadb8-1jammy [2,453 kB] 2024-09-20T18:58:46.301 INFO:teuthology.orchestra.run.smithi137.stdout:Get:110 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.3.0-5099-g88deadb8-1jammy [813 kB] 2024-09-20T18:58:46.373 INFO:teuthology.orchestra.run.smithi137.stdout:Get:111 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.3.0-5099-g88deadb8-1jammy [160 kB] 2024-09-20T18:58:46.382 INFO:teuthology.orchestra.run.smithi137.stdout:Get:112 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.3.0-5099-g88deadb8-1jammy [61.5 MB] 2024-09-20T18:58:46.477 INFO:teuthology.orchestra.run.smithi018.stdout:Get:116 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.3.0-5099-g88deadb8-1jammy [131 kB] 2024-09-20T18:58:46.480 INFO:teuthology.orchestra.run.smithi018.stdout:Get:117 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.3.0-5099-g88deadb8-1jammy [39.0 kB] 2024-09-20T18:58:46.481 INFO:teuthology.orchestra.run.smithi018.stdout:Get:118 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.3.0-5099-g88deadb8-1jammy [15.8 MB] 2024-09-20T18:58:46.984 INFO:teuthology.orchestra.run.smithi082.stdout:Get:116 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.3.0-5099-g88deadb8-1jammy [131 kB] 2024-09-20T18:58:46.987 INFO:teuthology.orchestra.run.smithi082.stdout:Get:117 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.3.0-5099-g88deadb8-1jammy [39.0 kB] 2024-09-20T18:58:46.988 INFO:teuthology.orchestra.run.smithi082.stdout:Get:118 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.3.0-5099-g88deadb8-1jammy [15.8 MB] 2024-09-20T18:58:47.035 INFO:teuthology.orchestra.run.smithi018.stdout:Get:119 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.3.0-5099-g88deadb8-1jammy [91.2 kB] 2024-09-20T18:58:47.349 INFO:teuthology.orchestra.run.smithi082.stdout:Get:119 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.3.0-5099-g88deadb8-1jammy [91.2 kB] 2024-09-20T18:58:47.638 INFO:teuthology.orchestra.run.smithi018.stdout:Fetched 244 MB in 9s (27.6 MB/s) 2024-09-20T18:58:47.822 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-20T18:58:47.919 INFO:teuthology.orchestra.run.smithi018.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 165990 files and directories currently installed.) 2024-09-20T18:58:47.921 INFO:teuthology.orchestra.run.smithi082.stdout:Fetched 244 MB in 9s (26.5 MB/s) 2024-09-20T18:58:47.924 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-20T18:58:48.012 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-20T18:58:48.085 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-20T18:58:48.186 INFO:teuthology.orchestra.run.smithi082.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 165990 files and directories currently installed.) 2024-09-20T18:58:48.191 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-20T18:58:48.275 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-20T18:58:48.440 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-20T18:58:48.467 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-20T18:58:48.515 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-20T18:58:48.629 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-20T18:58:48.655 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-20T18:58:48.696 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-20T18:58:48.870 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-20T18:58:48.895 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-20T18:58:48.934 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-20T18:58:49.020 INFO:teuthology.orchestra.run.smithi137.stdout:Get:113 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.3.0-5099-g88deadb8-1jammy [8,625 kB] 2024-09-20T18:58:49.040 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-20T18:58:49.066 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-20T18:58:49.107 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-20T18:58:49.195 INFO:teuthology.orchestra.run.smithi137.stdout:Get:114 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.3.0-5099-g88deadb8-1jammy [14.2 kB] 2024-09-20T18:58:49.195 INFO:teuthology.orchestra.run.smithi137.stdout:Get:115 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.3.0-5099-g88deadb8-1jammy [48.5 MB] 2024-09-20T18:58:49.371 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-20T18:58:49.398 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-20T18:58:49.447 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-20T18:58:49.494 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-20T18:58:49.520 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-20T18:58:49.568 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-20T18:58:49.907 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-20T18:58:49.934 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-20T18:58:49.974 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-20T18:58:49.988 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-20T18:58:50.016 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-20T18:58:50.055 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-20T18:58:50.302 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-20T18:58:50.323 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-20T18:58:50.360 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-20T18:58:50.533 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-20T18:58:50.559 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-20T18:58:50.599 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-20T18:58:50.713 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-20T18:58:50.740 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-20T18:58:50.780 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-20T18:58:50.867 INFO:teuthology.orchestra.run.smithi137.stdout:Get:116 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.3.0-5099-g88deadb8-1jammy [131 kB] 2024-09-20T18:58:50.869 INFO:teuthology.orchestra.run.smithi137.stdout:Get:117 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.3.0-5099-g88deadb8-1jammy [39.0 kB] 2024-09-20T18:58:50.871 INFO:teuthology.orchestra.run.smithi137.stdout:Get:118 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.3.0-5099-g88deadb8-1jammy [15.8 MB] 2024-09-20T18:58:51.086 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-20T18:58:51.112 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-20T18:58:51.141 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package librados2. 2024-09-20T18:58:51.152 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-20T18:58:51.168 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../007-librados2_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:51.216 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking librados2 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:51.335 INFO:teuthology.orchestra.run.smithi137.stdout:Get:119 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.3.0-5099-g88deadb8-1jammy [91.2 kB] 2024-09-20T18:58:51.480 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package librados2. 2024-09-20T18:58:51.507 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../007-librados2_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:51.547 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking librados2 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:51.761 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package libnbd0. 2024-09-20T18:58:51.788 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../008-libnbd0_1.10.5-1_amd64.deb ... 2024-09-20T18:58:51.844 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking libnbd0 (1.10.5-1) ... 2024-09-20T18:58:51.910 INFO:teuthology.orchestra.run.smithi137.stdout:Fetched 244 MB in 13s (18.6 MB/s) 2024-09-20T18:58:52.025 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package libnbd0. 2024-09-20T18:58:52.045 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-20T18:58:52.051 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../008-libnbd0_1.10.5-1_amd64.deb ... 2024-09-20T18:58:52.083 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking libnbd0 (1.10.5-1) ... 2024-09-20T18:58:52.103 INFO:teuthology.orchestra.run.smithi137.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 165990 files and directories currently installed.) 2024-09-20T18:58:52.108 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-20T18:58:52.155 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package librbd1. 2024-09-20T18:58:52.178 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-20T18:58:52.182 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../009-librbd1_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:52.221 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking librbd1 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:52.394 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package librbd1. 2024-09-20T18:58:52.421 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../009-librbd1_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:52.461 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking librbd1 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:52.540 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-20T18:58:52.566 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-20T18:58:52.607 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-20T18:58:52.658 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package libcephfs2. 2024-09-20T18:58:52.685 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../010-libcephfs2_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:52.724 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking libcephfs2 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:52.893 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-20T18:58:52.905 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package libcephfs2. 2024-09-20T18:58:52.919 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-20T18:58:52.932 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../010-libcephfs2_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:52.951 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-20T18:58:52.972 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking libcephfs2 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:53.060 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-rados. 2024-09-20T18:58:53.076 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../011-python3-rados_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:53.126 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-rados (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:53.249 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-rados. 2024-09-20T18:58:53.265 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../011-python3-rados_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:53.308 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-rados (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:53.404 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-20T18:58:53.431 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-20T18:58:53.454 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-20T18:58:53.481 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../012-python3-ceph-argparse_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:58:53.487 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-20T18:58:53.520 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-ceph-argparse (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:53.610 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-20T18:58:53.637 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../012-python3-ceph-argparse_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:58:53.677 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-ceph-argparse (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:53.773 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-cephfs. 2024-09-20T18:58:53.789 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../013-python3-cephfs_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:53.831 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-cephfs (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:53.908 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-20T18:58:53.921 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-cephfs. 2024-09-20T18:58:53.934 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-20T18:58:53.936 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../013-python3-cephfs_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:53.971 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-cephfs (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:53.974 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-20T18:58:54.126 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-20T18:58:54.153 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../014-python3-ceph-common_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:58:54.192 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-ceph-common (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:54.274 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-20T18:58:54.277 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-20T18:58:54.300 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../014-python3-ceph-common_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:58:54.303 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-20T18:58:54.335 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-20T18:58:54.340 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-ceph-common (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:54.579 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-20T18:58:54.606 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../015-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-20T18:58:54.668 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-20T18:58:54.695 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../015-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-20T18:58:54.697 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-20T18:58:54.723 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-20T18:58:54.735 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-20T18:58:54.763 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-20T18:58:54.870 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-20T18:58:55.063 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-prettytable. 2024-09-20T18:58:55.089 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../016-python3-prettytable_2.5.0-2_all.deb ... 2024-09-20T18:58:55.189 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-20T18:58:55.189 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package librados2. 2024-09-20T18:58:55.189 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../007-librados2_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:55.189 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking librados2 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:55.240 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-prettytable. 2024-09-20T18:58:55.267 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../016-python3-prettytable_2.5.0-2_all.deb ... 2024-09-20T18:58:55.306 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-20T18:58:55.373 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-rbd. 2024-09-20T18:58:55.389 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../017-python3-rbd_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:55.423 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-rbd (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:55.567 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-rbd. 2024-09-20T18:58:55.593 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../017-python3-rbd_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:55.619 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package libnbd0. 2024-09-20T18:58:55.634 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../008-libnbd0_1.10.5-1_amd64.deb ... 2024-09-20T18:58:55.659 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-rbd (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:55.668 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking libnbd0 (1.10.5-1) ... 2024-09-20T18:58:55.785 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-20T18:58:55.811 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../018-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-20T18:58:55.851 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-20T18:58:55.980 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package librbd1. 2024-09-20T18:58:56.006 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../009-librbd1_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:56.011 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-20T18:58:56.039 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../018-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-20T18:58:56.046 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking librbd1 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:56.078 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-20T18:58:56.137 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-09-20T18:58:56.153 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../019-libreadline-dev_8.1.2-1_amd64.deb ... 2024-09-20T18:58:56.195 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-09-20T18:58:56.381 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-09-20T18:58:56.408 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../019-libreadline-dev_8.1.2-1_amd64.deb ... 2024-09-20T18:58:56.455 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-09-20T18:58:56.482 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package libcephfs2. 2024-09-20T18:58:56.498 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../010-libcephfs2_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:56.541 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking libcephfs2 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:56.590 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-09-20T18:58:56.617 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../020-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-09-20T18:58:56.657 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-20T18:58:56.808 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-09-20T18:58:56.824 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../020-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-09-20T18:58:56.875 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-20T18:58:56.968 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package lua5.1. 2024-09-20T18:58:56.984 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../021-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-09-20T18:58:56.994 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-rados. 2024-09-20T18:58:57.018 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-09-20T18:58:57.020 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../011-python3-rados_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:57.060 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-rados (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:57.237 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package lua5.1. 2024-09-20T18:58:57.264 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../021-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-09-20T18:58:57.303 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-09-20T18:58:57.338 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package lua-any. 2024-09-20T18:58:57.346 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-20T18:58:57.364 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../022-lua-any_27ubuntu1_all.deb ... 2024-09-20T18:58:57.373 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../012-python3-ceph-argparse_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:58:57.404 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking lua-any (27ubuntu1) ... 2024-09-20T18:58:57.413 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-ceph-argparse (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:57.614 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package lua-any. 2024-09-20T18:58:57.632 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package zip. 2024-09-20T18:58:57.641 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../022-lua-any_27ubuntu1_all.deb ... 2024-09-20T18:58:57.659 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../023-zip_3.0-12build2_amd64.deb ... 2024-09-20T18:58:57.665 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-cephfs. 2024-09-20T18:58:57.680 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../013-python3-cephfs_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:57.681 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking lua-any (27ubuntu1) ... 2024-09-20T18:58:57.698 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking zip (3.0-12build2) ... 2024-09-20T18:58:57.723 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-cephfs (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:57.958 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package zip. 2024-09-20T18:58:57.985 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../023-zip_3.0-12build2_amd64.deb ... 2024-09-20T18:58:58.001 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package unzip. 2024-09-20T18:58:58.019 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../024-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-09-20T18:58:58.026 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-20T18:58:58.033 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking zip (3.0-12build2) ... 2024-09-20T18:58:58.041 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../014-python3-ceph-common_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:58:58.051 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-09-20T18:58:58.084 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-ceph-common (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:58.403 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package unzip. 2024-09-20T18:58:58.405 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package luarocks. 2024-09-20T18:58:58.429 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-20T18:58:58.430 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../024-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-09-20T18:58:58.432 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../025-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-09-20T18:58:58.456 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../015-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-20T18:58:58.472 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-09-20T18:58:58.478 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-09-20T18:58:58.495 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-20T18:58:58.782 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-prettytable. 2024-09-20T18:58:58.797 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../016-python3-prettytable_2.5.0-2_all.deb ... 2024-09-20T18:58:58.832 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-20T18:58:58.838 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package librgw2. 2024-09-20T18:58:58.864 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../026-librgw2_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:58.890 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package luarocks. 2024-09-20T18:58:58.904 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking librgw2 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:58.917 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../025-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-09-20T18:58:58.956 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-09-20T18:58:59.092 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-rbd. 2024-09-20T18:58:59.108 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../017-python3-rbd_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:59.151 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-rbd (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:59.339 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package librgw2. 2024-09-20T18:58:59.366 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../026-librgw2_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:59.405 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking librgw2 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:59.490 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-rgw. 2024-09-20T18:58:59.504 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-20T18:58:59.516 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../027-python3-rgw_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:58:59.530 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../018-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-20T18:58:59.556 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-rgw (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:58:59.570 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-20T18:58:59.851 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-20T18:58:59.856 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-09-20T18:58:59.871 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../019-libreadline-dev_8.1.2-1_amd64.deb ... 2024-09-20T18:58:59.877 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../028-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-20T18:58:59.906 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-09-20T18:58:59.934 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-20T18:59:00.066 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-rgw. 2024-09-20T18:59:00.093 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../027-python3-rgw_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:00.141 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-rgw (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:00.167 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-09-20T18:59:00.180 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../020-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-09-20T18:59:00.217 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-20T18:59:00.238 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package libradosstriper1. 2024-09-20T18:59:00.264 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../029-libradosstriper1_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:00.304 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking libradosstriper1 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:00.461 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-20T18:59:00.487 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../028-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-20T18:59:00.527 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-20T18:59:00.554 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package lua5.1. 2024-09-20T18:59:00.581 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../021-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-09-20T18:59:00.620 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-09-20T18:59:00.855 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package libradosstriper1. 2024-09-20T18:59:00.880 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../029-libradosstriper1_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:00.921 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking libradosstriper1 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:00.941 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package ceph-common. 2024-09-20T18:59:00.948 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package lua-any. 2024-09-20T18:59:00.964 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../022-lua-any_27ubuntu1_all.deb ... 2024-09-20T18:59:00.967 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../030-ceph-common_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:01.007 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking lua-any (27ubuntu1) ... 2024-09-20T18:59:01.007 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking ceph-common (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:01.259 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package zip. 2024-09-20T18:59:01.275 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../023-zip_3.0-12build2_amd64.deb ... 2024-09-20T18:59:01.317 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking zip (3.0-12build2) ... 2024-09-20T18:59:01.366 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package ceph-common. 2024-09-20T18:59:01.393 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../030-ceph-common_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:01.441 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking ceph-common (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:01.671 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package unzip. 2024-09-20T18:59:01.697 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../024-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-09-20T18:59:01.728 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-09-20T18:59:02.141 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package luarocks. 2024-09-20T18:59:02.168 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../025-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-09-20T18:59:02.207 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-09-20T18:59:02.454 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package ceph-base. 2024-09-20T18:59:02.480 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../031-ceph-base_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:02.522 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking ceph-base (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:02.574 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package librgw2. 2024-09-20T18:59:02.601 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../026-librgw2_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:02.640 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking librgw2 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:03.063 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package ceph-base. 2024-09-20T18:59:03.083 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-20T18:59:03.090 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../031-ceph-base_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:03.106 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../032-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-20T18:59:03.139 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking ceph-base (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:03.141 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-20T18:59:03.251 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-rgw. 2024-09-20T18:59:03.266 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../027-python3-rgw_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:03.309 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-rgw (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:03.427 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-cheroot. 2024-09-20T18:59:03.453 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../033-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-20T18:59:03.494 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-20T18:59:03.645 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-20T18:59:03.671 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../028-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-20T18:59:03.712 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-20T18:59:03.733 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-20T18:59:03.761 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../032-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-20T18:59:03.800 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-20T18:59:03.822 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-20T18:59:03.848 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../034-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-20T18:59:03.888 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-20T18:59:04.023 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package libradosstriper1. 2024-09-20T18:59:04.049 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../029-libradosstriper1_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:04.089 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking libradosstriper1 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:04.128 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-cheroot. 2024-09-20T18:59:04.154 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../033-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-20T18:59:04.191 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-20T18:59:04.194 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-20T18:59:04.217 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../035-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-20T18:59:04.258 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-20T18:59:04.451 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package ceph-common. 2024-09-20T18:59:04.478 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../030-ceph-common_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:04.506 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-20T18:59:04.518 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking ceph-common (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:04.533 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../034-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-20T18:59:04.552 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-20T18:59:04.572 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-20T18:59:04.578 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../036-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-20T18:59:04.610 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-20T18:59:04.858 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-20T18:59:04.885 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../035-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-20T18:59:04.896 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-tempora. 2024-09-20T18:59:04.923 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../037-python3-tempora_4.1.2-1_all.deb ... 2024-09-20T18:59:04.924 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-20T18:59:04.963 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-20T18:59:05.266 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-portend. 2024-09-20T18:59:05.293 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../038-python3-portend_3.0.0-1_all.deb ... 2024-09-20T18:59:05.332 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-20T18:59:05.353 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-20T18:59:05.379 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../036-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-20T18:59:05.419 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-20T18:59:05.635 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-20T18:59:05.662 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../039-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-20T18:59:05.702 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-20T18:59:05.722 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-tempora. 2024-09-20T18:59:05.748 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../037-python3-tempora_4.1.2-1_all.deb ... 2024-09-20T18:59:05.788 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-20T18:59:05.946 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-20T18:59:05.961 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../040-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-20T18:59:05.997 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-20T18:59:06.040 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package ceph-base. 2024-09-20T18:59:06.066 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../031-ceph-base_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:06.091 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-portend. 2024-09-20T18:59:06.115 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking ceph-base (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:06.118 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../038-python3-portend_3.0.0-1_all.deb ... 2024-09-20T18:59:06.158 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-20T18:59:06.341 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-natsort. 2024-09-20T18:59:06.367 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../041-python3-natsort_8.0.2-1_all.deb ... 2024-09-20T18:59:06.408 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-20T18:59:06.435 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-20T18:59:06.451 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../039-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-20T18:59:06.485 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-20T18:59:06.747 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-20T18:59:06.753 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-logutils. 2024-09-20T18:59:06.769 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-20T18:59:06.773 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../040-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-20T18:59:06.779 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../042-python3-logutils_0.3.3-8_all.deb ... 2024-09-20T18:59:06.795 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../032-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-20T18:59:06.813 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-20T18:59:06.819 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-20T18:59:06.835 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-20T18:59:07.100 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-natsort. 2024-09-20T18:59:07.122 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-20T18:59:07.127 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../041-python3-natsort_8.0.2-1_all.deb ... 2024-09-20T18:59:07.148 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../043-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-20T18:59:07.166 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-20T18:59:07.188 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-20T18:59:07.305 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-cheroot. 2024-09-20T18:59:07.331 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../033-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-20T18:59:07.363 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-20T18:59:07.450 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-mako. 2024-09-20T18:59:07.476 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../044-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-20T18:59:07.480 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-logutils. 2024-09-20T18:59:07.507 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../042-python3-logutils_0.3.3-8_all.deb ... 2024-09-20T18:59:07.508 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-20T18:59:07.546 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-20T18:59:07.658 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-20T18:59:07.684 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../034-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-20T18:59:07.724 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-20T18:59:07.828 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-20T18:59:07.854 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../045-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-20T18:59:07.857 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-20T18:59:07.885 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../043-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-20T18:59:07.894 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-20T18:59:07.924 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-20T18:59:08.027 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-20T18:59:08.053 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../035-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-20T18:59:08.093 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-20T18:59:08.197 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-20T18:59:08.223 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../046-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-20T18:59:08.227 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-mako. 2024-09-20T18:59:08.254 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../044-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-20T18:59:08.263 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-20T18:59:08.293 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-20T18:59:08.396 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-20T18:59:08.422 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../036-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-20T18:59:08.463 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-20T18:59:08.583 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-webob. 2024-09-20T18:59:08.609 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../047-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-20T18:59:08.613 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-20T18:59:08.641 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../045-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-20T18:59:08.649 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-20T18:59:08.700 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-20T18:59:08.766 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-tempora. 2024-09-20T18:59:08.792 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../037-python3-tempora_4.1.2-1_all.deb ... 2024-09-20T18:59:08.824 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-20T18:59:09.053 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-waitress. 2024-09-20T18:59:09.060 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-portend. 2024-09-20T18:59:09.066 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-20T18:59:09.075 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../038-python3-portend_3.0.0-1_all.deb ... 2024-09-20T18:59:09.079 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../048-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-20T18:59:09.093 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../046-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-20T18:59:09.110 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-20T18:59:09.123 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-20T18:59:09.141 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-20T18:59:09.405 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-20T18:59:09.430 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../039-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-20T18:59:09.439 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-tempita. 2024-09-20T18:59:09.452 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-webob. 2024-09-20T18:59:09.465 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../049-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-20T18:59:09.473 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-20T18:59:09.479 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../047-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-20T18:59:09.506 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-20T18:59:09.519 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-20T18:59:09.767 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-paste. 2024-09-20T18:59:09.776 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-20T18:59:09.793 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../050-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-20T18:59:09.803 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../040-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-20T18:59:09.825 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-20T18:59:09.842 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-20T18:59:09.880 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-waitress. 2024-09-20T18:59:09.907 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../048-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-20T18:59:09.950 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-20T18:59:10.164 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-20T18:59:10.171 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-natsort. 2024-09-20T18:59:10.179 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../051-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-20T18:59:10.198 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../041-python3-natsort_8.0.2-1_all.deb ... 2024-09-20T18:59:10.221 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-20T18:59:10.237 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-20T18:59:10.267 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-tempita. 2024-09-20T18:59:10.294 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../049-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-20T18:59:10.333 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-20T18:59:10.508 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-20T18:59:10.534 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../052-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-20T18:59:10.566 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-logutils. 2024-09-20T18:59:10.574 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-20T18:59:10.592 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../042-python3-logutils_0.3.3-8_all.deb ... 2024-09-20T18:59:10.632 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-20T18:59:10.877 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-webtest. 2024-09-20T18:59:10.904 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../053-python3-webtest_2.0.35-1_all.deb ... 2024-09-20T18:59:10.943 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-20T18:59:10.960 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-20T18:59:10.987 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../043-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-20T18:59:11.026 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-20T18:59:11.296 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-mako. 2024-09-20T18:59:11.323 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../044-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-20T18:59:11.354 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-20T18:59:11.430 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-pecan. 2024-09-20T18:59:11.457 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../054-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-20T18:59:11.496 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-20T18:59:11.537 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-paste. 2024-09-20T18:59:11.564 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../050-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-20T18:59:11.595 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-20T18:59:11.923 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-20T18:59:11.942 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../051-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-20T18:59:11.981 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-20T18:59:12.284 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-20T18:59:12.312 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../052-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-20T18:59:12.351 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-20T18:59:12.372 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-20T18:59:12.398 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../045-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-20T18:59:12.441 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-20T18:59:12.654 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-webtest. 2024-09-20T18:59:12.681 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../053-python3-webtest_2.0.35-1_all.deb ... 2024-09-20T18:59:12.709 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-certifi. 2024-09-20T18:59:12.710 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-20T18:59:12.729 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-20T18:59:12.736 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../055-python3-certifi_2020.6.20-1_all.deb ... 2024-09-20T18:59:12.737 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../046-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-20T18:59:12.768 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-20T18:59:12.775 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-20T18:59:13.024 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-pecan. 2024-09-20T18:59:13.050 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../054-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-20T18:59:13.071 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-webob. 2024-09-20T18:59:13.081 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-20T18:59:13.086 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-idna. 2024-09-20T18:59:13.098 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../047-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-20T18:59:13.113 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../056-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-20T18:59:13.129 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-20T18:59:13.153 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-20T18:59:13.448 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-urllib3. 2024-09-20T18:59:13.449 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-waitress. 2024-09-20T18:59:13.461 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-certifi. 2024-09-20T18:59:13.474 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../057-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-20T18:59:13.476 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../048-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-20T18:59:13.488 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../055-python3-certifi_2020.6.20-1_all.deb ... 2024-09-20T18:59:13.514 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-20T18:59:13.519 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-20T18:59:13.528 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-20T18:59:13.809 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-requests. 2024-09-20T18:59:13.827 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-tempita. 2024-09-20T18:59:13.836 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../058-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-20T18:59:13.854 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../049-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-20T18:59:13.864 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-idna. 2024-09-20T18:59:13.876 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-20T18:59:13.891 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../056-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-20T18:59:13.894 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-20T18:59:13.931 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-20T18:59:14.196 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-paste. 2024-09-20T18:59:14.203 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-20T18:59:14.209 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-urllib3. 2024-09-20T18:59:14.213 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../050-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-20T18:59:14.230 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../059-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-20T18:59:14.234 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../057-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-20T18:59:14.254 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-20T18:59:14.267 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-20T18:59:14.269 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-20T18:59:14.539 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-20T18:59:14.554 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-requests. 2024-09-20T18:59:14.554 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../060-ceph-mgr-modules-core_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:59:14.581 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../058-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-20T18:59:14.583 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-20T18:59:14.597 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking ceph-mgr-modules-core (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:14.609 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../051-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-20T18:59:14.611 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-20T18:59:14.641 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-20T18:59:14.907 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-20T18:59:14.911 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-20T18:59:14.933 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../059-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-20T18:59:14.937 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../052-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-20T18:59:14.973 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-20T18:59:14.977 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-20T18:59:14.977 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-20T18:59:15.004 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../061-libsqlite3-mod-ceph_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:15.043 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking libsqlite3-mod-ceph (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:15.234 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-20T18:59:15.250 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../060-ceph-mgr-modules-core_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:59:15.280 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-webtest. 2024-09-20T18:59:15.284 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking ceph-mgr-modules-core (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:15.306 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../053-python3-webtest_2.0.35-1_all.deb ... 2024-09-20T18:59:15.321 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-20T18:59:15.337 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../062-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-20T18:59:15.346 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-20T18:59:15.371 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-20T18:59:15.657 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-openssl. 2024-09-20T18:59:15.684 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../063-python3-openssl_21.0.0-1_all.deb ... 2024-09-20T18:59:15.691 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-pecan. 2024-09-20T18:59:15.717 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../054-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-20T18:59:15.723 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-20T18:59:15.758 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-20T18:59:15.889 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-20T18:59:15.917 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../061-libsqlite3-mod-ceph_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:15.956 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking libsqlite3-mod-ceph (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:16.077 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package ceph-mgr. 2024-09-20T18:59:16.103 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../064-ceph-mgr_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:16.121 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-certifi. 2024-09-20T18:59:16.147 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../055-python3-certifi_2020.6.20-1_all.deb ... 2024-09-20T18:59:16.151 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking ceph-mgr (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:16.187 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-20T18:59:16.242 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-20T18:59:16.269 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../062-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-20T18:59:16.308 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-20T18:59:16.515 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-idna. 2024-09-20T18:59:16.542 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../056-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-20T18:59:16.587 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-openssl. 2024-09-20T18:59:16.590 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-20T18:59:16.614 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../063-python3-openssl_21.0.0-1_all.deb ... 2024-09-20T18:59:16.653 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-20T18:59:16.655 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package ceph-mon. 2024-09-20T18:59:16.682 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../065-ceph-mon_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:16.729 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking ceph-mon (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:16.885 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-urllib3. 2024-09-20T18:59:16.911 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../057-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-20T18:59:16.943 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-20T18:59:17.006 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package ceph-mgr. 2024-09-20T18:59:17.034 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../064-ceph-mgr_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:17.073 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking ceph-mgr (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:17.271 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-requests. 2024-09-20T18:59:17.298 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../058-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-20T18:59:17.308 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package ceph-osd. 2024-09-20T18:59:17.335 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../066-ceph-osd_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:17.337 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-20T18:59:17.374 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking ceph-osd (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:17.476 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package ceph-mon. 2024-09-20T18:59:17.503 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../065-ceph-mon_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:17.542 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking ceph-mon (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:17.649 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-20T18:59:17.675 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../059-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-20T18:59:17.715 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-20T18:59:18.010 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-20T18:59:18.036 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../060-ceph-mgr-modules-core_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:59:18.076 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking ceph-mgr-modules-core (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:18.079 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package ceph-osd. 2024-09-20T18:59:18.107 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../066-ceph-osd_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:18.146 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking ceph-osd (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:18.452 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package ceph. 2024-09-20T18:59:18.467 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../067-ceph_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:18.489 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-20T18:59:18.510 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking ceph (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:18.516 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../061-libsqlite3-mod-ceph_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:18.556 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking libsqlite3-mod-ceph (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:18.868 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-20T18:59:18.894 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../062-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-20T18:59:18.905 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package ceph-fuse. 2024-09-20T18:59:18.932 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../068-ceph-fuse_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:18.934 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-20T18:59:18.979 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking ceph-fuse (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:19.249 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package ceph. 2024-09-20T18:59:19.277 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../067-ceph_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:19.278 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-openssl. 2024-09-20T18:59:19.305 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../063-python3-openssl_21.0.0-1_all.deb ... 2024-09-20T18:59:19.315 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking ceph (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:19.353 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-20T18:59:19.357 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package ceph-mds. 2024-09-20T18:59:19.384 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../069-ceph-mds_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:19.424 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking ceph-mds (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:19.635 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package ceph-fuse. 2024-09-20T18:59:19.662 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../068-ceph-fuse_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:19.701 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking ceph-fuse (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:19.764 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package ceph-mgr. 2024-09-20T18:59:19.791 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../064-ceph-mgr_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:19.827 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package cephadm. 2024-09-20T18:59:19.839 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking ceph-mgr (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:19.853 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../070-cephadm_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:19.893 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking cephadm (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:20.046 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package ceph-mds. 2024-09-20T18:59:20.073 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../069-ceph-mds_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:20.112 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking ceph-mds (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:20.246 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-20T18:59:20.259 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package ceph-mon. 2024-09-20T18:59:20.273 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../071-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-20T18:59:20.286 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../065-ceph-mon_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:20.321 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-20T18:59:20.326 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking ceph-mon (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:20.499 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package cephadm. 2024-09-20T18:59:20.527 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../070-cephadm_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:20.565 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking cephadm (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:20.640 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-20T18:59:20.667 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../072-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-20T18:59:20.707 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-20T18:59:20.885 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-20T18:59:20.913 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../071-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-20T18:59:20.930 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package ceph-osd. 2024-09-20T18:59:20.952 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-20T18:59:20.956 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../066-ceph-osd_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:20.996 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking ceph-osd (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:21.312 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-20T18:59:21.340 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../072-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-20T18:59:21.379 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-20T18:59:21.953 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-babel. 2024-09-20T18:59:21.980 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../073-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-20T18:59:22.019 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-20T18:59:22.032 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package ceph. 2024-09-20T18:59:22.048 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../067-ceph_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:22.082 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking ceph (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:22.339 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-jinja2. 2024-09-20T18:59:22.366 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../074-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-20T18:59:22.368 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package ceph-fuse. 2024-09-20T18:59:22.395 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../068-ceph-fuse_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:22.405 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-20T18:59:22.435 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking ceph-fuse (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:22.451 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-babel. 2024-09-20T18:59:22.478 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../073-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-20T18:59:22.517 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-20T18:59:22.759 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-20T18:59:22.785 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../075-ceph-mgr-cephadm_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:59:22.820 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-jinja2. 2024-09-20T18:59:22.825 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking ceph-mgr-cephadm (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:22.836 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../074-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-20T18:59:22.878 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-20T18:59:22.996 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package ceph-mds. 2024-09-20T18:59:23.023 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../069-ceph-mds_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:23.062 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking ceph-mds (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:23.136 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-20T18:59:23.163 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../076-python3-repoze.lru_0.7-2_all.deb ... 2024-09-20T18:59:23.198 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-20T18:59:23.203 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-20T18:59:23.226 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../075-ceph-mgr-cephadm_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:59:23.256 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking ceph-mgr-cephadm (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:23.457 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package cephadm. 2024-09-20T18:59:23.484 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../070-cephadm_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:23.505 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-routes. 2024-09-20T18:59:23.521 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../077-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-20T18:59:23.532 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking cephadm (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:23.564 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-20T18:59:23.576 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-20T18:59:23.604 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../076-python3-repoze.lru_0.7-2_all.deb ... 2024-09-20T18:59:23.643 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-20T18:59:23.801 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-20T18:59:23.817 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../071-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-20T18:59:23.851 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-20T18:59:23.900 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-20T18:59:23.927 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../078-ceph-mgr-dashboard_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:59:23.937 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-routes. 2024-09-20T18:59:23.965 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../077-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-20T18:59:23.966 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking ceph-mgr-dashboard (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:24.003 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-20T18:59:24.204 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-20T18:59:24.231 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../072-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-20T18:59:24.270 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-20T18:59:24.332 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-20T18:59:24.360 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../078-ceph-mgr-dashboard_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:59:24.390 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking ceph-mgr-dashboard (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:25.300 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-babel. 2024-09-20T18:59:25.327 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../073-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-20T18:59:25.367 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-20T18:59:25.670 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-jinja2. 2024-09-20T18:59:25.697 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../074-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-20T18:59:25.736 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-20T18:59:26.064 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-20T18:59:26.080 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../075-ceph-mgr-cephadm_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:59:26.114 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking ceph-mgr-cephadm (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:26.434 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-20T18:59:26.461 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../076-python3-repoze.lru_0.7-2_all.deb ... 2024-09-20T18:59:26.500 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-20T18:59:26.696 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-20T18:59:26.714 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../079-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-20T18:59:26.745 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-routes. 2024-09-20T18:59:26.754 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-20T18:59:26.761 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../077-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-20T18:59:26.803 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-20T18:59:27.106 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-20T18:59:27.129 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-20T18:59:27.134 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../078-ceph-mgr-dashboard_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:59:27.147 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../079-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-20T18:59:27.164 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking ceph-mgr-dashboard (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:27.187 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-20T18:59:27.266 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-joblib. 2024-09-20T18:59:27.294 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../080-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-20T18:59:27.332 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-20T18:59:27.652 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-20T18:59:27.680 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../081-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-20T18:59:27.682 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-joblib. 2024-09-20T18:59:27.710 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-20T18:59:27.711 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../080-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-20T18:59:27.748 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-20T18:59:28.013 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-sklearn. 2024-09-20T18:59:28.041 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../082-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-20T18:59:28.132 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-20T18:59:28.155 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../081-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-20T18:59:28.165 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-20T18:59:28.194 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-20T18:59:28.497 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-sklearn. 2024-09-20T18:59:28.525 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../082-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-20T18:59:28.649 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-20T18:59:28.849 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-20T18:59:28.878 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../083-ceph-mgr-diskprediction-local_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:59:28.915 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking ceph-mgr-diskprediction-local (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:29.325 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-20T18:59:29.364 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../083-ceph-mgr-diskprediction-local_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:59:29.391 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking ceph-mgr-diskprediction-local (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:29.894 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-cachetools. 2024-09-20T18:59:29.922 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../084-python3-cachetools_5.0.0-1_all.deb ... 2024-09-20T18:59:29.952 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-20T18:59:29.968 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-20T18:59:29.969 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../079-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-20T18:59:30.010 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-20T18:59:30.313 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-20T18:59:30.341 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../085-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-20T18:59:30.353 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-cachetools. 2024-09-20T18:59:30.381 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../084-python3-cachetools_5.0.0-1_all.deb ... 2024-09-20T18:59:30.387 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-20T18:59:30.419 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-20T18:59:30.447 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-joblib. 2024-09-20T18:59:30.475 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../080-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-20T18:59:30.505 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-20T18:59:30.731 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-20T18:59:30.759 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../085-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-20T18:59:30.783 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-20T18:59:30.797 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-20T18:59:30.810 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../086-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-20T18:59:30.857 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-20T18:59:30.893 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-20T18:59:30.920 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../081-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-20T18:59:30.959 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-20T18:59:31.109 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-20T18:59:31.126 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../086-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-20T18:59:31.158 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-20T18:59:31.235 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-rsa. 2024-09-20T18:59:31.261 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-sklearn. 2024-09-20T18:59:31.263 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../087-python3-rsa_4.8-1_all.deb ... 2024-09-20T18:59:31.289 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../082-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-20T18:59:31.310 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-20T18:59:31.413 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-20T18:59:31.639 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-google-auth. 2024-09-20T18:59:31.667 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../088-python3-google-auth_1.5.1-3_all.deb ... 2024-09-20T18:59:31.705 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-20T18:59:31.712 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-rsa. 2024-09-20T18:59:31.740 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../087-python3-rsa_4.8-1_all.deb ... 2024-09-20T18:59:31.903 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-20T18:59:32.131 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-20T18:59:32.160 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../083-ceph-mgr-diskprediction-local_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:59:32.198 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking ceph-mgr-diskprediction-local (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:32.224 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-google-auth. 2024-09-20T18:59:32.252 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../088-python3-google-auth_1.5.1-3_all.deb ... 2024-09-20T18:59:32.290 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-20T18:59:32.392 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-20T18:59:32.419 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../089-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-20T18:59:32.458 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-20T18:59:32.593 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-20T18:59:32.622 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../089-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-20T18:59:32.660 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-20T18:59:32.811 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-websocket. 2024-09-20T18:59:32.839 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../090-python3-websocket_1.2.3-1_all.deb ... 2024-09-20T18:59:32.894 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-20T18:59:33.038 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-websocket. 2024-09-20T18:59:33.067 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../090-python3-websocket_1.2.3-1_all.deb ... 2024-09-20T18:59:33.113 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-20T18:59:33.148 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-cachetools. 2024-09-20T18:59:33.176 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../084-python3-cachetools_5.0.0-1_all.deb ... 2024-09-20T18:59:33.298 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-20T18:59:33.325 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../091-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-20T18:59:33.342 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-20T18:59:33.372 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-20T18:59:33.491 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-20T18:59:33.520 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../091-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-20T18:59:33.558 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-20T18:59:33.646 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-20T18:59:33.673 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../085-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-20T18:59:33.712 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-20T18:59:34.028 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-20T18:59:34.044 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../092-ceph-mgr-k8sevents_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:59:34.058 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-20T18:59:34.085 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../086-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-20T18:59:34.085 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking ceph-mgr-k8sevents (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:34.123 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-20T18:59:34.205 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-20T18:59:34.222 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../092-ceph-mgr-k8sevents_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:59:34.263 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking ceph-mgr-k8sevents (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:34.422 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-20T18:59:34.435 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-rsa. 2024-09-20T18:59:34.450 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../093-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-20T18:59:34.463 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../087-python3-rsa_4.8-1_all.deb ... 2024-09-20T18:59:34.488 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-20T18:59:34.501 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-20T18:59:34.541 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-20T18:59:34.558 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../093-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-20T18:59:34.591 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-20T18:59:34.805 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-google-auth. 2024-09-20T18:59:34.808 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-20T18:59:34.821 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../088-python3-google-auth_1.5.1-3_all.deb ... 2024-09-20T18:59:34.835 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../094-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-20T18:59:34.854 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-20T18:59:34.874 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-20T18:59:34.919 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-20T18:59:34.948 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../094-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-20T18:59:34.985 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-20T18:59:35.127 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package jq. 2024-09-20T18:59:35.143 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../095-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-20T18:59:35.156 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-20T18:59:35.177 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-20T18:59:35.184 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../089-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-20T18:59:35.224 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-20T18:59:35.280 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package jq. 2024-09-20T18:59:35.298 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../095-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-20T18:59:35.338 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-20T18:59:35.404 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package socat. 2024-09-20T18:59:35.421 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../096-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-20T18:59:35.463 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-20T18:59:35.519 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-websocket. 2024-09-20T18:59:35.547 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../090-python3-websocket_1.2.3-1_all.deb ... 2024-09-20T18:59:35.566 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package socat. 2024-09-20T18:59:35.583 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../096-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-20T18:59:35.585 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-20T18:59:35.624 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-20T18:59:35.774 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package xmlstarlet. 2024-09-20T18:59:35.790 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../097-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-20T18:59:35.832 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-20T18:59:35.905 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-20T18:59:35.927 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package xmlstarlet. 2024-09-20T18:59:35.933 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../091-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-20T18:59:35.944 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../097-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-20T18:59:35.972 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-20T18:59:35.977 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-20T18:59:36.153 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package ceph-test. 2024-09-20T18:59:36.169 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../098-ceph-test_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:36.211 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking ceph-test (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:36.315 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package ceph-test. 2024-09-20T18:59:36.344 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../098-ceph-test_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:36.381 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking ceph-test (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:36.627 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-20T18:59:36.656 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../092-ceph-mgr-k8sevents_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:59:36.694 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking ceph-mgr-k8sevents (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:36.972 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-20T18:59:37.000 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../093-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-20T18:59:37.030 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-20T18:59:37.383 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-20T18:59:37.411 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../094-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-20T18:59:37.450 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-20T18:59:37.711 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package jq. 2024-09-20T18:59:37.727 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../095-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-20T18:59:37.769 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-20T18:59:38.013 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package socat. 2024-09-20T18:59:38.029 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../096-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-20T18:59:38.071 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-20T18:59:38.358 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package xmlstarlet. 2024-09-20T18:59:38.374 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../097-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-20T18:59:38.408 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-20T18:59:38.424 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package ceph-volume. 2024-09-20T18:59:38.452 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../099-ceph-volume_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:59:38.490 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking ceph-volume (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:38.653 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package ceph-volume. 2024-09-20T18:59:38.669 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../099-ceph-volume_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:59:38.702 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking ceph-volume (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:38.770 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package ceph-test. 2024-09-20T18:59:38.785 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-20T18:59:38.787 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../098-ceph-test_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:38.802 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../100-libcephfs-dev_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:38.828 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking ceph-test (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:38.835 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking libcephfs-dev (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:38.998 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-20T18:59:39.015 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../100-libcephfs-dev_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:39.048 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking libcephfs-dev (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:39.138 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package lua-socket:amd64. 2024-09-20T18:59:39.166 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../101-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-09-20T18:59:39.204 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-20T18:59:39.351 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package lua-socket:amd64. 2024-09-20T18:59:39.379 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../101-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-09-20T18:59:39.417 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-20T18:59:39.559 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package lua-sec:amd64. 2024-09-20T18:59:39.587 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../102-lua-sec_1.0.2-1_amd64.deb ... 2024-09-20T18:59:39.625 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-09-20T18:59:39.764 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package lua-sec:amd64. 2024-09-20T18:59:39.792 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../102-lua-sec_1.0.2-1_amd64.deb ... 2024-09-20T18:59:39.830 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-09-20T18:59:39.963 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package nvme-cli. 2024-09-20T18:59:39.991 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../103-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-20T18:59:40.029 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-20T18:59:40.184 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package nvme-cli. 2024-09-20T18:59:40.214 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../103-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-20T18:59:40.251 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-20T18:59:40.419 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package pkg-config. 2024-09-20T18:59:40.433 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../104-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-09-20T18:59:40.467 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-09-20T18:59:40.631 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package pkg-config. 2024-09-20T18:59:40.648 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../104-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-09-20T18:59:40.681 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-09-20T18:59:40.695 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-20T18:59:40.711 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../105-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-20T18:59:40.753 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-20T18:59:40.925 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-20T18:59:40.954 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../105-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-20T18:59:40.993 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-20T18:59:41.016 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package ceph-volume. 2024-09-20T18:59:41.044 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../099-ceph-volume_19.3.0-5099-g88deadb8-1jammy_all.deb ... 2024-09-20T18:59:41.083 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking ceph-volume (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:41.148 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-20T18:59:41.176 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../106-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-20T18:59:41.206 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-20T18:59:41.370 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-20T18:59:41.395 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-20T18:59:41.399 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../106-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-20T18:59:41.423 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../100-libcephfs-dev_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:41.436 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-20T18:59:41.461 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking libcephfs-dev (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:41.508 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-pastescript. 2024-09-20T18:59:41.537 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../107-python3-pastescript_2.0.2-4_all.deb ... 2024-09-20T18:59:41.575 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-20T18:59:41.748 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-pastescript. 2024-09-20T18:59:41.777 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../107-python3-pastescript_2.0.2-4_all.deb ... 2024-09-20T18:59:41.781 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package lua-socket:amd64. 2024-09-20T18:59:41.809 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../101-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-09-20T18:59:41.814 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-20T18:59:41.850 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-20T18:59:41.904 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-pluggy. 2024-09-20T18:59:41.932 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../108-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-20T18:59:41.970 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-20T18:59:42.135 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-pluggy. 2024-09-20T18:59:42.163 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../108-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-20T18:59:42.177 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package lua-sec:amd64. 2024-09-20T18:59:42.201 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-20T18:59:42.205 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../102-lua-sec_1.0.2-1_amd64.deb ... 2024-09-20T18:59:42.243 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-09-20T18:59:42.281 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-psutil. 2024-09-20T18:59:42.309 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../109-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-20T18:59:42.347 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-20T18:59:42.537 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-psutil. 2024-09-20T18:59:42.566 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../109-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-20T18:59:42.597 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package nvme-cli. 2024-09-20T18:59:42.603 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-20T18:59:42.625 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../103-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-20T18:59:42.664 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-20T18:59:42.667 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-py. 2024-09-20T18:59:42.695 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../110-python3-py_1.10.0-1_all.deb ... 2024-09-20T18:59:42.741 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-20T18:59:42.940 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-py. 2024-09-20T18:59:42.969 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../110-python3-py_1.10.0-1_all.deb ... 2024-09-20T18:59:43.015 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-20T18:59:43.070 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-pygments. 2024-09-20T18:59:43.098 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../111-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-20T18:59:43.101 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package pkg-config. 2024-09-20T18:59:43.129 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../104-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-09-20T18:59:43.136 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-20T18:59:43.169 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-09-20T18:59:43.335 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-pygments. 2024-09-20T18:59:43.364 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../111-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-20T18:59:43.401 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-20T18:59:43.430 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-20T18:59:43.446 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../105-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-20T18:59:43.488 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-20T18:59:43.582 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-20T18:59:43.610 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../112-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-20T18:59:43.648 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-20T18:59:43.856 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-20T18:59:43.884 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../112-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-20T18:59:43.916 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-20T18:59:43.917 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-toml. 2024-09-20T18:59:43.922 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-20T18:59:43.933 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../113-python3-toml_0.10.2-1_all.deb ... 2024-09-20T18:59:43.944 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../106-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-20T18:59:43.967 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-20T18:59:43.983 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-20T18:59:44.254 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-pytest. 2024-09-20T18:59:44.266 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-toml. 2024-09-20T18:59:44.282 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../114-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-20T18:59:44.285 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-pastescript. 2024-09-20T18:59:44.295 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../113-python3-toml_0.10.2-1_all.deb ... 2024-09-20T18:59:44.313 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../107-python3-pastescript_2.0.2-4_all.deb ... 2024-09-20T18:59:44.320 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-20T18:59:44.333 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-20T18:59:44.352 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-20T18:59:44.636 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-pytest. 2024-09-20T18:59:44.640 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package python3-simplejson. 2024-09-20T18:59:44.655 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-pluggy. 2024-09-20T18:59:44.664 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../114-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-20T18:59:44.668 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../115-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-20T18:59:44.683 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../108-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-20T18:59:44.698 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-20T18:59:44.702 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-20T18:59:44.713 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-20T18:59:44.967 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-20T18:59:44.992 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-psutil. 2024-09-20T18:59:44.995 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../116-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-20T18:59:45.019 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../109-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-20T18:59:45.025 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-20T18:59:45.056 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package python3-simplejson. 2024-09-20T18:59:45.058 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-20T18:59:45.085 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../115-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-20T18:59:45.122 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-20T18:59:45.392 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-20T18:59:45.403 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-py. 2024-09-20T18:59:45.408 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../116-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-20T18:59:45.431 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../110-python3-py_1.10.0-1_all.deb ... 2024-09-20T18:59:45.450 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-20T18:59:45.469 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-20T18:59:45.679 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package radosgw. 2024-09-20T18:59:45.708 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../117-radosgw_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:45.745 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking radosgw (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:45.764 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-pygments. 2024-09-20T18:59:45.792 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../111-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-20T18:59:45.830 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-20T18:59:46.154 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package radosgw. 2024-09-20T18:59:46.183 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../117-radosgw_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:46.212 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking radosgw (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:46.293 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-20T18:59:46.321 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../112-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-20T18:59:46.359 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-20T18:59:46.648 INFO:teuthology.orchestra.run.smithi082.stdout:Selecting previously unselected package rbd-fuse. 2024-09-20T18:59:46.665 INFO:teuthology.orchestra.run.smithi082.stdout:Preparing to unpack .../118-rbd-fuse_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:46.695 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-toml. 2024-09-20T18:59:46.706 INFO:teuthology.orchestra.run.smithi082.stdout:Unpacking rbd-fuse (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:46.723 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../113-python3-toml_0.10.2-1_all.deb ... 2024-09-20T18:59:46.762 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-20T18:59:47.011 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-20T18:59:47.048 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-pytest. 2024-09-20T18:59:47.076 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../114-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-20T18:59:47.106 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-20T18:59:47.167 INFO:teuthology.orchestra.run.smithi018.stdout:Selecting previously unselected package rbd-fuse. 2024-09-20T18:59:47.184 INFO:teuthology.orchestra.run.smithi018.stdout:Preparing to unpack .../118-rbd-fuse_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:47.217 INFO:teuthology.orchestra.run.smithi018.stdout:Unpacking rbd-fuse (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:47.261 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-20T18:59:47.387 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-20T18:59:47.435 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package python3-simplejson. 2024-09-20T18:59:47.463 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../115-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-20T18:59:47.497 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-20T18:59:47.501 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-20T18:59:47.747 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-20T18:59:47.804 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-20T18:59:47.820 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../116-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-20T18:59:47.862 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-20T18:59:47.907 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-20T18:59:47.924 INFO:teuthology.orchestra.run.smithi082.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-09-20T18:59:48.178 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-09-20T18:59:48.277 INFO:teuthology.orchestra.run.smithi082.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-20T18:59:48.512 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-20T18:59:48.583 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package radosgw. 2024-09-20T18:59:48.611 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../117-radosgw_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:48.649 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking radosgw (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:48.667 INFO:teuthology.orchestra.run.smithi082.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-20T18:59:48.755 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up cephadm (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:48.915 INFO:teuthology.orchestra.run.smithi018.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-20T18:59:48.975 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up cephadm (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:49.271 INFO:teuthology.orchestra.run.smithi082.stdout:Adding system user cephadm....done 2024-09-20T18:59:49.461 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-20T18:59:49.475 INFO:teuthology.orchestra.run.smithi018.stdout:Adding system user cephadm....done 2024-09-20T18:59:49.546 INFO:teuthology.orchestra.run.smithi137.stdout:Selecting previously unselected package rbd-fuse. 2024-09-20T18:59:49.574 INFO:teuthology.orchestra.run.smithi137.stdout:Preparing to unpack .../118-rbd-fuse_19.3.0-5099-g88deadb8-1jammy_amd64.deb ... 2024-09-20T18:59:49.612 INFO:teuthology.orchestra.run.smithi137.stdout:Unpacking rbd-fuse (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:49.639 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-20T18:59:49.729 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-20T18:59:49.925 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-20T18:59:49.988 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-20T18:59:50.008 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-20T18:59:50.114 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-20T18:59:50.175 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-20T18:59:50.259 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-20T18:59:50.310 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-20T18:59:50.360 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-20T18:59:50.365 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-20T18:59:50.573 INFO:teuthology.orchestra.run.smithi137.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-09-20T18:59:50.594 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-20T18:59:50.625 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-20T18:59:50.751 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-20T18:59:50.853 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-20T18:59:50.924 INFO:teuthology.orchestra.run.smithi137.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-20T18:59:50.980 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-20T18:59:51.069 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-20T18:59:51.298 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-20T18:59:51.322 INFO:teuthology.orchestra.run.smithi137.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-20T18:59:51.394 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up cephadm (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:51.429 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-20T18:59:51.667 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-20T18:59:51.689 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-20T18:59:51.894 INFO:teuthology.orchestra.run.smithi137.stdout:Adding system user cephadm....done 2024-09-20T18:59:51.901 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-20T18:59:51.974 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-09-20T18:59:52.050 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-20T18:59:52.194 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-09-20T18:59:52.225 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-20T18:59:52.352 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-20T18:59:52.446 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-20T18:59:52.476 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-20T18:59:52.603 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-20T18:59:52.706 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-20T18:59:52.721 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-20T18:59:52.777 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-20T18:59:52.963 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-20T18:59:52.981 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-20T18:59:53.203 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-ceph-argparse (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:53.231 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-20T18:59:53.266 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-ceph-argparse (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:53.357 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-20T18:59:53.446 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-20T18:59:53.525 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-20T18:59:53.572 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up libnbd0 (1.10.5-1) ... 2024-09-20T18:59:53.626 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up libnbd0 (1.10.5-1) ... 2024-09-20T18:59:53.693 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-20T18:59:53.697 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-20T18:59:53.736 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-20T18:59:53.824 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-09-20T18:59:53.862 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-09-20T18:59:53.941 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-20T18:59:53.987 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-20T18:59:54.078 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-20T18:59:54.184 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-09-20T18:59:54.247 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-09-20T18:59:54.321 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-20T18:59:54.538 INFO:teuthology.orchestra.run.smithi082.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-09-20T18:59:54.573 INFO:teuthology.orchestra.run.smithi082.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-09-20T18:59:54.588 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-09-20T18:59:54.610 INFO:teuthology.orchestra.run.smithi018.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-09-20T18:59:54.620 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-20T18:59:54.653 INFO:teuthology.orchestra.run.smithi018.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-09-20T18:59:54.717 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-20T18:59:54.746 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-20T18:59:54.823 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-20T18:59:54.826 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-20T18:59:55.083 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-20T18:59:55.114 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-20T18:59:55.178 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-20T18:59:55.240 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-20T18:59:55.303 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-20T18:59:55.359 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-20T18:59:55.508 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-20T18:59:55.580 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-20T18:59:55.618 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-ceph-argparse (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:55.767 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-20T18:59:55.847 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-20T18:59:55.878 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-20T18:59:55.982 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up libnbd0 (1.10.5-1) ... 2024-09-20T18:59:56.045 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up zip (3.0-12build2) ... 2024-09-20T18:59:56.080 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-20T18:59:56.165 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up zip (3.0-12build2) ... 2024-09-20T18:59:56.171 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-20T18:59:56.205 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-09-20T18:59:56.291 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-20T18:59:56.331 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-20T18:59:56.608 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-09-20T18:59:56.831 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-20T18:59:56.996 INFO:teuthology.orchestra.run.smithi137.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-09-20T18:59:57.010 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-20T18:59:57.047 INFO:teuthology.orchestra.run.smithi137.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-09-20T18:59:57.107 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-20T18:59:57.119 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-20T18:59:57.233 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-20T18:59:57.245 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-20T18:59:57.261 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-20T18:59:57.359 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-20T18:59:57.387 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-20T18:59:57.513 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-20T18:59:57.605 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-20T18:59:57.677 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-20T18:59:57.756 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-20T18:59:57.814 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-20T18:59:58.048 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-20T18:59:58.079 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-20T18:59:58.207 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-20T18:59:58.325 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-20T18:59:58.329 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-20T18:59:58.466 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-20T18:59:58.626 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up zip (3.0-12build2) ... 2024-09-20T18:59:58.698 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-20T18:59:58.752 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-20T18:59:58.854 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-20T18:59:58.991 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-20T18:59:59.136 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-20T18:59:59.325 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-20T18:59:59.462 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-20T18:59:59.479 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-20T18:59:59.576 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-20T18:59:59.703 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-ceph-common (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:59.722 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-20T18:59:59.738 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-20T18:59:59.848 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-20T18:59:59.873 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-ceph-common (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T18:59:59.974 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-20T19:00:00.020 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-20T19:00:00.199 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-20T19:00:00.283 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-20T19:00:00.330 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-20T19:00:00.508 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-20T19:00:00.684 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-20T19:00:00.935 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-20T19:00:01.312 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-20T19:00:01.444 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-09-20T19:00:01.596 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-20T19:00:01.704 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-20T19:00:01.781 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-09-20T19:00:01.838 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-20T19:00:01.956 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-20T19:00:02.041 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-20T19:00:02.098 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-20T19:00:02.150 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-20T19:00:02.215 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-20T19:00:02.224 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-20T19:00:02.341 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-ceph-common (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:02.350 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-20T19:00:02.393 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-20T19:00:02.519 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-20T19:00:02.645 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-20T19:00:02.651 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-20T19:00:02.652 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-20T19:00:02.894 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-20T19:00:02.946 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-20T19:00:02.969 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-20T19:00:03.137 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-20T19:00:03.214 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-20T19:00:03.263 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-20T19:00:03.474 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-20T19:00:03.564 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-20T19:00:03.575 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-20T19:00:03.832 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-20T19:00:03.859 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-20T19:00:04.091 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-20T19:00:04.119 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-20T19:00:04.175 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-09-20T19:00:04.359 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-20T19:00:04.427 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-20T19:00:04.428 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-20T19:00:04.536 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-20T19:00:04.585 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-20T19:00:04.696 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-20T19:00:04.795 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-20T19:00:04.836 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-20T19:00:04.938 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-20T19:00:04.954 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-20T19:00:04.955 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-20T19:00:05.089 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-20T19:00:05.232 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-20T19:00:05.238 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-20T19:00:05.358 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-20T19:00:05.364 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-20T19:00:05.415 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-20T19:00:05.642 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-20T19:00:05.657 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-20T19:00:05.692 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-20T19:00:05.760 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-20T19:00:05.951 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-20T19:00:05.958 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-20T19:00:06.061 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-20T19:00:06.077 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-20T19:00:06.201 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-20T19:00:06.303 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-09-20T19:00:06.379 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-20T19:00:06.404 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-20T19:00:06.404 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-20T19:00:06.493 INFO:teuthology.orchestra.run.smithi082.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-20T19:00:06.638 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-20T19:00:06.654 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-20T19:00:06.739 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-20T19:00:06.772 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-09-20T19:00:06.864 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-20T19:00:06.898 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-20T19:00:06.931 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-20T19:00:06.971 INFO:teuthology.orchestra.run.smithi018.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-20T19:00:07.198 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-20T19:00:07.234 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-20T19:00:07.266 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-20T19:00:07.335 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-20T19:00:07.474 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-20T19:00:07.517 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up lua-any (27ubuntu1) ... 2024-09-20T19:00:07.618 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-20T19:00:07.711 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-20T19:00:07.734 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-20T19:00:07.860 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-20T19:00:07.869 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-20T19:00:07.979 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-20T19:00:07.995 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up lua-any (27ubuntu1) ... 2024-09-20T19:00:08.121 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-20T19:00:08.127 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-20T19:00:08.237 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-20T19:00:08.305 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-20T19:00:08.389 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-20T19:00:08.507 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-20T19:00:08.538 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-20T19:00:08.614 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-20T19:00:08.816 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-20T19:00:08.848 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-20T19:00:08.890 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-20T19:00:09.016 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-20T19:00:09.115 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-20T19:00:09.117 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-20T19:00:09.276 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-20T19:00:09.284 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-09-20T19:00:09.385 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-20T19:00:09.392 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-20T19:00:09.491 INFO:teuthology.orchestra.run.smithi137.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-20T19:00:09.511 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-20T19:00:09.631 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-20T19:00:09.728 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-20T19:00:09.795 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-20T19:00:09.828 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-20T19:00:09.897 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-20T19:00:10.174 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-20T19:00:10.213 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-20T19:00:10.299 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-20T19:00:10.425 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-20T19:00:10.481 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up lua-any (27ubuntu1) ... 2024-09-20T19:00:10.583 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-20T19:00:10.632 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-20T19:00:10.827 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-20T19:00:10.903 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-20T19:00:10.925 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-20T19:00:11.029 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up librados2 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:11.059 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-20T19:00:11.112 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-20T19:00:11.155 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up libsqlite3-mod-ceph (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:11.281 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-09-20T19:00:11.368 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-20T19:00:11.464 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-20T19:00:11.574 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up librados2 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:11.633 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up libcephfs2 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:11.661 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-20T19:00:11.700 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up libsqlite3-mod-ceph (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:11.743 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up libradosstriper1 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:11.801 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-09-20T19:00:11.861 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-20T19:00:11.937 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-20T19:00:12.063 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-20T19:00:12.129 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up librbd1 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:12.154 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up libcephfs2 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:12.255 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up ceph-mgr-modules-core (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:12.280 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up libradosstriper1 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:12.340 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-20T19:00:12.389 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up ceph-fuse (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:12.414 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-20T19:00:12.598 INFO:teuthology.orchestra.run.smithi082.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-20T19:00:12.599 INFO:teuthology.orchestra.run.smithi082.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-20T19:00:12.699 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up librbd1 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:12.709 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-20T19:00:12.800 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up ceph-mgr-modules-core (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:12.910 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up ceph-fuse (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:12.969 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-20T19:00:13.057 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up libcephfs-dev (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:13.183 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-rados (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:13.309 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up librgw2 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:13.362 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-20T19:00:13.419 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-20T19:00:13.449 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-20T19:00:13.449 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-20T19:00:13.664 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-20T19:00:13.954 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up libcephfs-dev (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:14.008 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-20T19:00:14.078 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-rados (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:14.142 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up librados2 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:14.204 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up librgw2 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:14.252 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up libsqlite3-mod-ceph (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:14.330 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-20T19:00:14.353 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-09-20T19:00:14.647 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-rbd (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:14.672 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up libcephfs2 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:14.773 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up rbd-fuse (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:14.798 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up libradosstriper1 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:14.899 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-rgw (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:14.924 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-20T19:00:15.008 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up python3-cephfs (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:15.110 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up ceph-common (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:15.218 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up librbd1 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:15.327 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up ceph-mgr-modules-core (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:15.453 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up ceph-fuse (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:15.542 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-rbd (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:15.650 INFO:teuthology.orchestra.run.smithi137.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-20T19:00:15.650 INFO:teuthology.orchestra.run.smithi137.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-20T19:00:15.661 INFO:teuthology.orchestra.run.smithi082.stdout:Adding group ceph....done 2024-09-20T19:00:15.668 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up rbd-fuse (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:15.819 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-rgw (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:15.945 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up python3-cephfs (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:16.047 INFO:teuthology.orchestra.run.smithi082.stdout:Adding system user ceph....done 2024-09-20T19:00:16.071 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up ceph-common (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:16.162 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up libcephfs-dev (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:16.198 INFO:teuthology.orchestra.run.smithi082.stdout:Setting system user ceph properties....done 2024-09-20T19:00:16.215 INFO:teuthology.orchestra.run.smithi082.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-20T19:00:16.289 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-rados (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:16.358 INFO:teuthology.orchestra.run.smithi082.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-20T19:00:16.414 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up librgw2 (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:16.540 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-20T19:00:16.572 INFO:teuthology.orchestra.run.smithi018.stdout:Adding group ceph....done 2024-09-20T19:00:16.709 INFO:teuthology.orchestra.run.smithi082.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-20T19:00:16.908 INFO:teuthology.orchestra.run.smithi018.stdout:Adding system user ceph....done 2024-09-20T19:00:17.077 INFO:teuthology.orchestra.run.smithi018.stdout:Setting system user ceph properties....done 2024-09-20T19:00:17.090 INFO:teuthology.orchestra.run.smithi018.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-20T19:00:17.162 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up ceph-test (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:17.232 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-20T19:00:17.288 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up radosgw (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:17.566 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-20T19:00:17.719 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-rbd (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:17.743 INFO:teuthology.orchestra.run.smithi082.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-20T19:00:17.744 INFO:teuthology.orchestra.run.smithi082.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-20T19:00:17.862 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up rbd-fuse (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:18.013 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-rgw (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:18.023 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up ceph-test (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:18.124 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up radosgw (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:18.164 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up python3-cephfs (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:18.189 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up ceph-base (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:18.315 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up ceph-common (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:18.531 INFO:teuthology.orchestra.run.smithi082.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-20T19:00:18.556 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-20T19:00:18.556 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-20T19:00:18.867 INFO:teuthology.orchestra.run.smithi137.stdout:Adding group ceph....done 2024-09-20T19:00:18.984 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up ceph-base (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:19.179 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up ceph-mds (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:19.226 INFO:teuthology.orchestra.run.smithi137.stdout:Adding system user ceph....done 2024-09-20T19:00:19.334 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-20T19:00:19.395 INFO:teuthology.orchestra.run.smithi137.stdout:Setting system user ceph properties....done 2024-09-20T19:00:19.406 INFO:teuthology.orchestra.run.smithi082.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-20T19:00:19.406 INFO:teuthology.orchestra.run.smithi082.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-20T19:00:19.409 INFO:teuthology.orchestra.run.smithi137.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-20T19:00:19.545 INFO:teuthology.orchestra.run.smithi137.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-20T19:00:19.786 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up ceph-mds (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:19.853 INFO:teuthology.orchestra.run.smithi137.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-20T19:00:19.888 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up ceph-mgr (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:20.022 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-20T19:00:20.022 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-20T19:00:20.102 INFO:teuthology.orchestra.run.smithi082.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-20T19:00:20.102 INFO:teuthology.orchestra.run.smithi082.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-20T19:00:20.341 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up ceph-test (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:20.476 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up radosgw (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:20.487 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up ceph-mgr (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:20.540 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up ceph-osd (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:20.698 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-20T19:00:20.698 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-20T19:00:20.802 INFO:teuthology.orchestra.run.smithi082.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-20T19:00:20.802 INFO:teuthology.orchestra.run.smithi082.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-20T19:00:20.940 INFO:teuthology.orchestra.run.smithi137.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-20T19:00:20.940 INFO:teuthology.orchestra.run.smithi137.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-20T19:00:21.147 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up ceph-osd (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:21.233 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up ceph-mgr-k8sevents (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:21.343 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up ceph-mgr-diskprediction-local (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:21.419 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up ceph-base (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:21.424 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-20T19:00:21.424 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-20T19:00:21.477 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up ceph-mon (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:21.692 INFO:teuthology.orchestra.run.smithi082.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-20T19:00:21.693 INFO:teuthology.orchestra.run.smithi082.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-20T19:00:21.758 INFO:teuthology.orchestra.run.smithi137.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-20T19:00:21.915 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up ceph-mgr-k8sevents (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:22.016 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up ceph-mgr-diskprediction-local (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:22.142 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up ceph-mon (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:22.178 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up ceph-mgr-cephadm (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:22.279 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up ceph-mds (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:22.329 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up ceph (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:22.369 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-20T19:00:22.369 INFO:teuthology.orchestra.run.smithi018.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-20T19:00:22.455 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up ceph-mgr-dashboard (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:22.500 INFO:teuthology.orchestra.run.smithi137.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-20T19:00:22.501 INFO:teuthology.orchestra.run.smithi137.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-20T19:00:22.607 INFO:teuthology.orchestra.run.smithi082.stdout:Setting up ceph-volume (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:22.818 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up ceph-mgr-cephadm (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:22.960 INFO:teuthology.orchestra.run.smithi082.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-09-20T19:00:22.969 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up ceph (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:22.997 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up ceph-mgr (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:23.077 INFO:teuthology.orchestra.run.smithi082.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-20T19:00:23.095 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up ceph-mgr-dashboard (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:23.227 INFO:teuthology.orchestra.run.smithi137.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-20T19:00:23.227 INFO:teuthology.orchestra.run.smithi137.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-20T19:00:23.230 INFO:teuthology.orchestra.run.smithi082.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-20T19:00:23.238 INFO:teuthology.orchestra.run.smithi018.stdout:Setting up ceph-volume (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:23.608 INFO:teuthology.orchestra.run.smithi018.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-09-20T19:00:23.748 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up ceph-osd (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:23.768 INFO:teuthology.orchestra.run.smithi018.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-20T19:00:23.921 INFO:teuthology.orchestra.run.smithi018.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-20T19:00:24.025 INFO:teuthology.orchestra.run.smithi137.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-20T19:00:24.026 INFO:teuthology.orchestra.run.smithi137.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-20T19:00:24.448 INFO:teuthology.orchestra.run.smithi082.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-09-20T19:00:24.580 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up ceph-mgr-k8sevents (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:24.744 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up ceph-mgr-diskprediction-local (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:24.921 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up ceph-mon (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:25.046 INFO:teuthology.orchestra.run.smithi018.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-09-20T19:00:25.097 INFO:teuthology.orchestra.run.smithi082.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-20T19:00:25.102 DEBUG:teuthology.parallel:result is None 2024-09-20T19:00:25.128 INFO:teuthology.orchestra.run.smithi137.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-20T19:00:25.128 INFO:teuthology.orchestra.run.smithi137.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-20T19:00:25.612 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up ceph-mgr-cephadm (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:25.719 INFO:teuthology.orchestra.run.smithi018.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-20T19:00:25.724 DEBUG:teuthology.parallel:result is None 2024-09-20T19:00:25.871 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up ceph (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:26.112 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up ceph-mgr-dashboard (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:26.371 INFO:teuthology.orchestra.run.smithi137.stdout:Setting up ceph-volume (19.3.0-5099-g88deadb8-1jammy) ... 2024-09-20T19:00:26.771 INFO:teuthology.orchestra.run.smithi137.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-09-20T19:00:26.896 INFO:teuthology.orchestra.run.smithi137.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-20T19:00:27.057 INFO:teuthology.orchestra.run.smithi137.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-20T19:00:27.840 INFO:teuthology.orchestra.run.smithi137.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-09-20T19:00:28.495 INFO:teuthology.orchestra.run.smithi137.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-20T19:00:28.499 DEBUG:teuthology.parallel:result is None 2024-09-20T19:00:28.500 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=88deadb8082f4a33832e228ccefc59cedba158a5 2024-09-20T19:00:28.646 DEBUG:teuthology.orchestra.run.smithi018:> dpkg-query -W -f '${Version}' ceph 2024-09-20T19:00:28.667 INFO:teuthology.orchestra.run.smithi018.stdout:19.3.0-5099-g88deadb8-1jammy 2024-09-20T19:00:28.668 INFO:teuthology.packaging:The installed version of ceph is 19.3.0-5099-g88deadb8-1jammy 2024-09-20T19:00:28.668 INFO:teuthology.task.install:The correct ceph version 19.3.0-5099-g88deadb8-1jammy is installed. 2024-09-20T19:00:28.670 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=88deadb8082f4a33832e228ccefc59cedba158a5 2024-09-20T19:00:28.822 DEBUG:teuthology.orchestra.run.smithi082:> dpkg-query -W -f '${Version}' ceph 2024-09-20T19:00:28.841 INFO:teuthology.orchestra.run.smithi082.stdout:19.3.0-5099-g88deadb8-1jammy 2024-09-20T19:00:28.841 INFO:teuthology.packaging:The installed version of ceph is 19.3.0-5099-g88deadb8-1jammy 2024-09-20T19:00:28.841 INFO:teuthology.task.install:The correct ceph version 19.3.0-5099-g88deadb8-1jammy is installed. 2024-09-20T19:00:28.844 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=88deadb8082f4a33832e228ccefc59cedba158a5 2024-09-20T19:00:28.977 DEBUG:teuthology.orchestra.run.smithi137:> dpkg-query -W -f '${Version}' ceph 2024-09-20T19:00:28.996 INFO:teuthology.orchestra.run.smithi137.stdout:19.3.0-5099-g88deadb8-1jammy 2024-09-20T19:00:28.996 INFO:teuthology.packaging:The installed version of ceph is 19.3.0-5099-g88deadb8-1jammy 2024-09-20T19:00:28.997 INFO:teuthology.task.install:The correct ceph version 19.3.0-5099-g88deadb8-1jammy is installed. 2024-09-20T19:00:28.998 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-09-20T19:00:28.998 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-20T19:00:28.999 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-20T19:00:29.013 DEBUG:teuthology.orchestra.run.smithi082:> set -ex 2024-09-20T19:00:29.014 DEBUG:teuthology.orchestra.run.smithi082:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-20T19:00:29.028 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-09-20T19:00:29.028 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-20T19:00:29.052 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-09-20T19:00:29.052 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-20T19:00:29.052 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd of=/usr/bin/daemon-helper 2024-09-20T19:00:29.070 DEBUG:teuthology.orchestra.run.smithi018:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-20T19:00:29.126 DEBUG:teuthology.orchestra.run.smithi082:> set -ex 2024-09-20T19:00:29.126 DEBUG:teuthology.orchestra.run.smithi082:> sudo dd of=/usr/bin/daemon-helper 2024-09-20T19:00:29.139 DEBUG:teuthology.orchestra.run.smithi082:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-20T19:00:29.191 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-09-20T19:00:29.191 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd of=/usr/bin/daemon-helper 2024-09-20T19:00:29.204 DEBUG:teuthology.orchestra.run.smithi137:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-20T19:00:29.259 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-09-20T19:00:29.260 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-20T19:00:29.260 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-20T19:00:29.274 DEBUG:teuthology.orchestra.run.smithi018:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-20T19:00:29.330 DEBUG:teuthology.orchestra.run.smithi082:> set -ex 2024-09-20T19:00:29.330 DEBUG:teuthology.orchestra.run.smithi082:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-20T19:00:29.344 DEBUG:teuthology.orchestra.run.smithi082:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-20T19:00:29.399 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-09-20T19:00:29.399 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-20T19:00:29.412 DEBUG:teuthology.orchestra.run.smithi137:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-20T19:00:29.467 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-09-20T19:00:29.467 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-20T19:00:29.467 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd of=/usr/bin/stdin-killer 2024-09-20T19:00:29.480 DEBUG:teuthology.orchestra.run.smithi018:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-20T19:00:29.534 DEBUG:teuthology.orchestra.run.smithi082:> set -ex 2024-09-20T19:00:29.534 DEBUG:teuthology.orchestra.run.smithi082:> sudo dd of=/usr/bin/stdin-killer 2024-09-20T19:00:29.548 DEBUG:teuthology.orchestra.run.smithi082:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-20T19:00:29.603 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-09-20T19:00:29.603 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd of=/usr/bin/stdin-killer 2024-09-20T19:00:29.616 DEBUG:teuthology.orchestra.run.smithi137:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-20T19:00:29.675 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-20T19:00:29.770 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 1}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': False}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'MON_DOWN', 'mons down', 'mon down', 'out of quorum', 'CEPHADM_STRAY_HOST', 'CEPHADM_STRAY_DAEMON', 'CEPHADM_FAILED_DAEMON'], 'log-only-match': ['CEPHADM_'], 'sha1': '88deadb8082f4a33832e228ccefc59cedba158a5'} 2024-09-20T19:00:29.770 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 2024-09-20T19:00:29.770 INFO:tasks.cephadm:Cluster fsid is 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:00:29.770 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-20T19:00:29.771 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.18', 'mon.b': '172.21.15.82', 'mon.c': '172.21.15.137'} 2024-09-20T19:00:29.771 INFO:tasks.cephadm:First mon is mon.a on smithi018 2024-09-20T19:00:29.771 INFO:tasks.cephadm:First mgr is a 2024-09-20T19:00:29.771 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-20T19:00:29.771 DEBUG:teuthology.orchestra.run.smithi018:> sudo hostname $(hostname -s) 2024-09-20T19:00:29.786 DEBUG:teuthology.orchestra.run.smithi082:> sudo hostname $(hostname -s) 2024-09-20T19:00:29.801 DEBUG:teuthology.orchestra.run.smithi137:> sudo hostname $(hostname -s) 2024-09-20T19:00:29.816 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-20T19:00:29.816 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=88deadb8082f4a33832e228ccefc59cedba158a5 2024-09-20T19:00:29.953 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '88deadb8082f4a33832e228ccefc59cedba158a5', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic/83186/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.3.0-5099-g88deadb8', 'node_name': '172.21.2.3+braggi03', 'job_name': 'ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic', 'package_manager_version': '19.3.0-5099-g88deadb8-1jammy'}, 'url': 'https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-09-20 12:13:16.402626', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'wip-guits-main-2024-09-20-1028', 'chacra_url': 'https://2.chacra.ceph.com/repos/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-09-20T19:00:30.090 INFO:tasks.util.chacra:got chacra host 2.chacra.ceph.com, ref wip-guits-main-2024-09-20-1028, sha1 88deadb8082f4a33832e228ccefc59cedba158a5 from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=88deadb8082f4a33832e228ccefc59cedba158a5 2024-09-20T19:00:30.092 INFO:tasks.cephadm:Discovered cachra url: https://2.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-20T19:00:30.092 INFO:tasks.cephadm:Downloading cephadm from url: https://2.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-20T19:00:30.092 DEBUG:teuthology.orchestra.run.smithi018:> curl --silent -L https://2.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-20T19:00:30.542 INFO:teuthology.orchestra.run.smithi018.stdout:-rw-rw-r-- 1 ubuntu ubuntu 811803 Sep 20 19:00 /home/ubuntu/cephtest/cephadm 2024-09-20T19:00:30.542 DEBUG:teuthology.orchestra.run.smithi082:> curl --silent -L https://2.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-20T19:00:30.976 INFO:teuthology.orchestra.run.smithi082.stdout:-rw-rw-r-- 1 ubuntu ubuntu 811803 Sep 20 19:00 /home/ubuntu/cephtest/cephadm 2024-09-20T19:00:30.977 DEBUG:teuthology.orchestra.run.smithi137:> curl --silent -L https://2.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-09-20-1028/88deadb8082f4a33832e228ccefc59cedba158a5/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-20T19:00:31.417 INFO:teuthology.orchestra.run.smithi137.stdout:-rw-rw-r-- 1 ubuntu ubuntu 811803 Sep 20 19:00 /home/ubuntu/cephtest/cephadm 2024-09-20T19:00:31.417 DEBUG:teuthology.orchestra.run.smithi018:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-20T19:00:31.425 DEBUG:teuthology.orchestra.run.smithi082:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-20T19:00:31.433 DEBUG:teuthology.orchestra.run.smithi137:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-20T19:00:31.453 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 on all hosts... 2024-09-20T19:00:31.453 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 pull 2024-09-20T19:00:31.472 DEBUG:teuthology.orchestra.run.smithi082:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 pull 2024-09-20T19:00:31.477 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 pull 2024-09-20T19:00:31.660 INFO:teuthology.orchestra.run.smithi018.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5... 2024-09-20T19:00:31.661 INFO:teuthology.orchestra.run.smithi082.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5... 2024-09-20T19:00:31.667 INFO:teuthology.orchestra.run.smithi137.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5... 2024-09-20T19:01:35.462 INFO:teuthology.orchestra.run.smithi018.stdout:{ 2024-09-20T19:01:35.463 INFO:teuthology.orchestra.run.smithi018.stdout: "ceph_version": "ceph version 19.3.0-5099-g88deadb8 (88deadb8082f4a33832e228ccefc59cedba158a5) squid (dev)", 2024-09-20T19:01:35.463 INFO:teuthology.orchestra.run.smithi018.stdout: "image_id": "441f9a3fe51528ef653b21f42e9d884db6124a0c7d482e865382bdfdb9ec979c", 2024-09-20T19:01:35.463 INFO:teuthology.orchestra.run.smithi018.stdout: "repo_digests": [ 2024-09-20T19:01:35.463 INFO:teuthology.orchestra.run.smithi018.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:8a1a6edbc97129e01d4344a6578add33aaab808082c84049bd2e48e1f97b80d2" 2024-09-20T19:01:35.463 INFO:teuthology.orchestra.run.smithi018.stdout: ] 2024-09-20T19:01:35.463 INFO:teuthology.orchestra.run.smithi018.stdout:} 2024-09-20T19:02:10.524 INFO:teuthology.orchestra.run.smithi082.stdout:{ 2024-09-20T19:02:10.524 INFO:teuthology.orchestra.run.smithi082.stdout: "ceph_version": "ceph version 19.3.0-5099-g88deadb8 (88deadb8082f4a33832e228ccefc59cedba158a5) squid (dev)", 2024-09-20T19:02:10.524 INFO:teuthology.orchestra.run.smithi082.stdout: "image_id": "441f9a3fe51528ef653b21f42e9d884db6124a0c7d482e865382bdfdb9ec979c", 2024-09-20T19:02:10.525 INFO:teuthology.orchestra.run.smithi082.stdout: "repo_digests": [ 2024-09-20T19:02:10.525 INFO:teuthology.orchestra.run.smithi082.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:8a1a6edbc97129e01d4344a6578add33aaab808082c84049bd2e48e1f97b80d2" 2024-09-20T19:02:10.525 INFO:teuthology.orchestra.run.smithi082.stdout: ] 2024-09-20T19:02:10.525 INFO:teuthology.orchestra.run.smithi082.stdout:} 2024-09-20T19:02:18.763 INFO:teuthology.orchestra.run.smithi137.stdout:{ 2024-09-20T19:02:18.763 INFO:teuthology.orchestra.run.smithi137.stdout: "ceph_version": "ceph version 19.3.0-5099-g88deadb8 (88deadb8082f4a33832e228ccefc59cedba158a5) squid (dev)", 2024-09-20T19:02:18.764 INFO:teuthology.orchestra.run.smithi137.stdout: "image_id": "441f9a3fe51528ef653b21f42e9d884db6124a0c7d482e865382bdfdb9ec979c", 2024-09-20T19:02:18.764 INFO:teuthology.orchestra.run.smithi137.stdout: "repo_digests": [ 2024-09-20T19:02:18.764 INFO:teuthology.orchestra.run.smithi137.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:8a1a6edbc97129e01d4344a6578add33aaab808082c84049bd2e48e1f97b80d2" 2024-09-20T19:02:18.764 INFO:teuthology.orchestra.run.smithi137.stdout: ] 2024-09-20T19:02:18.764 INFO:teuthology.orchestra.run.smithi137.stdout:} 2024-09-20T19:02:18.813 DEBUG:teuthology.orchestra.run.smithi018:> sudo mkdir -p /etc/ceph 2024-09-20T19:02:18.829 DEBUG:teuthology.orchestra.run.smithi082:> sudo mkdir -p /etc/ceph 2024-09-20T19:02:18.843 DEBUG:teuthology.orchestra.run.smithi137:> sudo mkdir -p /etc/ceph 2024-09-20T19:02:18.857 DEBUG:teuthology.orchestra.run.smithi018:> sudo chmod 777 /etc/ceph 2024-09-20T19:02:18.883 DEBUG:teuthology.orchestra.run.smithi082:> sudo chmod 777 /etc/ceph 2024-09-20T19:02:18.896 DEBUG:teuthology.orchestra.run.smithi137:> sudo chmod 777 /etc/ceph 2024-09-20T19:02:18.913 INFO:tasks.cephadm:Writing seed config... 2024-09-20T19:02:18.914 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2024-09-20T19:02:18.914 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-20T19:02:18.914 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-20T19:02:18.914 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = False 2024-09-20T19:02:18.914 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-20T19:02:18.914 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-20T19:02:18.914 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-20T19:02:18.914 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-20T19:02:18.914 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-20T19:02:18.915 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-20T19:02:18.915 DEBUG:teuthology.orchestra.run.smithi018:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-20T19:02:18.934 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log to file = true mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = 9ac321c2-7782-11ef-baf5-efdc52797490 mon election default strategy = 1 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = true bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 mgr/cephadm/use_agent = False [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2024-09-20T19:02:18.934 DEBUG:teuthology.orchestra.run.smithi018:mon.a> sudo journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mon.a.service 2024-09-20T19:02:18.981 DEBUG:teuthology.orchestra.run.smithi018:mgr.a> sudo journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mgr.a.service 2024-09-20T19:02:19.024 INFO:tasks.cephadm:Bootstrapping... 2024-09-20T19:02:19.024 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 -v bootstrap --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-id a --mgr-id a --orphan-initial-daemons --skip-monitoring-stack --mon-ip 172.21.15.18 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-20T19:02:19.261 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------------------------------------------------------------------- 2024-09-20T19:02:19.262 INFO:teuthology.orchestra.run.smithi018.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5', '-v', 'bootstrap', '--fsid', '9ac321c2-7782-11ef-baf5-efdc52797490', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-id', 'a', '--mgr-id', 'a', '--orphan-initial-daemons', '--skip-monitoring-stack', '--mon-ip', '172.21.15.18', '--skip-admin-label'] 2024-09-20T19:02:19.262 INFO:teuthology.orchestra.run.smithi018.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-20T19:02:19.263 INFO:teuthology.orchestra.run.smithi018.stdout:Verifying podman|docker is present... 2024-09-20T19:02:19.263 INFO:teuthology.orchestra.run.smithi018.stdout:Verifying lvm2 is present... 2024-09-20T19:02:19.263 INFO:teuthology.orchestra.run.smithi018.stdout:Verifying time synchronization is in place... 2024-09-20T19:02:19.268 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-20T19:02:19.268 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-20T19:02:19.273 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-20T19:02:19.273 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout inactive 2024-09-20T19:02:19.278 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-20T19:02:19.278 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-20T19:02:19.281 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-20T19:02:19.281 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout inactive 2024-09-20T19:02:19.285 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-20T19:02:19.285 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout masked 2024-09-20T19:02:19.289 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-20T19:02:19.289 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout inactive 2024-09-20T19:02:19.292 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-20T19:02:19.292 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-20T19:02:19.296 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-20T19:02:19.296 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout inactive 2024-09-20T19:02:19.301 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout enabled 2024-09-20T19:02:19.305 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout active 2024-09-20T19:02:19.305 INFO:teuthology.orchestra.run.smithi018.stdout:Unit ntp.service is enabled and running 2024-09-20T19:02:19.305 INFO:teuthology.orchestra.run.smithi018.stdout:Repeating the final host check... 2024-09-20T19:02:19.305 INFO:teuthology.orchestra.run.smithi018.stdout:docker (/usr/bin/docker) is present 2024-09-20T19:02:19.305 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl is present 2024-09-20T19:02:19.305 INFO:teuthology.orchestra.run.smithi018.stdout:lvcreate is present 2024-09-20T19:02:19.308 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-20T19:02:19.308 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-20T19:02:19.312 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-20T19:02:19.312 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout inactive 2024-09-20T19:02:19.315 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-20T19:02:19.315 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-20T19:02:19.319 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-20T19:02:19.319 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout inactive 2024-09-20T19:02:19.323 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-20T19:02:19.323 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout masked 2024-09-20T19:02:19.327 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-20T19:02:19.327 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout inactive 2024-09-20T19:02:19.330 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-20T19:02:19.330 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-20T19:02:19.334 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-20T19:02:19.334 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout inactive 2024-09-20T19:02:19.338 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout enabled 2024-09-20T19:02:19.343 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stdout active 2024-09-20T19:02:19.343 INFO:teuthology.orchestra.run.smithi018.stdout:Unit ntp.service is enabled and running 2024-09-20T19:02:19.343 INFO:teuthology.orchestra.run.smithi018.stdout:Host looks OK 2024-09-20T19:02:19.343 INFO:teuthology.orchestra.run.smithi018.stdout:Cluster fsid: 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:02:19.343 INFO:teuthology.orchestra.run.smithi018.stdout:Acquiring lock 140360415110832 on /run/cephadm/9ac321c2-7782-11ef-baf5-efdc52797490.lock 2024-09-20T19:02:19.343 INFO:teuthology.orchestra.run.smithi018.stdout:Lock 140360415110832 acquired on /run/cephadm/9ac321c2-7782-11ef-baf5-efdc52797490.lock 2024-09-20T19:02:19.343 INFO:teuthology.orchestra.run.smithi018.stdout:Verifying IP 172.21.15.18 port 3300 ... 2024-09-20T19:02:19.343 INFO:teuthology.orchestra.run.smithi018.stdout:Verifying IP 172.21.15.18 port 6789 ... 2024-09-20T19:02:19.343 INFO:teuthology.orchestra.run.smithi018.stdout:Base mon IP(s) is [172.21.15.18:3300, 172.21.15.18:6789], mon addrv is [v2:172.21.15.18:3300,v1:172.21.15.18:6789] 2024-09-20T19:02:19.346 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 2024-09-20T19:02:19.346 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-09-20T19:02:19.346 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.18 2024-09-20T19:02:19.348 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-20T19:02:19.348 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-09-20T19:02:19.348 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1799sec hoplimit 64 pref medium 2024-09-20T19:02:19.350 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-20T19:02:19.350 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-20T19:02:19.351 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-20T19:02:19.351 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-09-20T19:02:19.351 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/sbin/ip: stdout inet6 fe80::ec4:7aff:febd:1362/64 scope link 2024-09-20T19:02:19.351 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-20T19:02:19.352 INFO:teuthology.orchestra.run.smithi018.stdout:Mon IP `172.21.15.18` is in CIDR network `172.21.0.0/20` 2024-09-20T19:02:19.352 INFO:teuthology.orchestra.run.smithi018.stdout:Mon IP `172.21.15.18` is in CIDR network `172.21.0.0/20` 2024-09-20T19:02:19.352 INFO:teuthology.orchestra.run.smithi018.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-20T19:02:19.352 INFO:teuthology.orchestra.run.smithi018.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-20T19:02:19.352 INFO:teuthology.orchestra.run.smithi018.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5... 2024-09-20T19:02:19.609 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/docker: stdout 88deadb8082f4a33832e228ccefc59cedba158a5: Pulling from ceph-ci/ceph 2024-09-20T19:02:19.609 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/docker: stdout Digest: sha256:8a1a6edbc97129e01d4344a6578add33aaab808082c84049bd2e48e1f97b80d2 2024-09-20T19:02:19.609 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 2024-09-20T19:02:19.609 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 2024-09-20T19:02:21.212 INFO:teuthology.orchestra.run.smithi018.stdout:ceph: stdout ceph version 19.3.0-5099-g88deadb8 (88deadb8082f4a33832e228ccefc59cedba158a5) squid (dev) 2024-09-20T19:02:21.212 INFO:teuthology.orchestra.run.smithi018.stdout:Ceph version: ceph version 19.3.0-5099-g88deadb8 (88deadb8082f4a33832e228ccefc59cedba158a5) squid (dev) 2024-09-20T19:02:21.212 INFO:teuthology.orchestra.run.smithi018.stdout:Extracting ceph user uid/gid from container image... 2024-09-20T19:02:22.608 INFO:teuthology.orchestra.run.smithi018.stdout:stat: stdout 167 167 2024-09-20T19:02:22.608 INFO:teuthology.orchestra.run.smithi018.stdout:Creating initial keys... 2024-09-20T19:02:24.013 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-authtool: stdout AQC/xu1mCAywGhAAxiF2dXEz9EKC39yO4Vr+MA== 2024-09-20T19:02:25.470 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-authtool: stdout AQDAxu1m8QERNhAA7bIOK5bWe5+DLfB+goi2KQ== 2024-09-20T19:02:26.892 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-authtool: stdout AQDCxu1mCc7xFBAAq146XMZx3MQam23LZopA0A== 2024-09-20T19:02:26.893 INFO:teuthology.orchestra.run.smithi018.stdout:Creating initial monmap... 2024-09-20T19:02:28.414 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-20T19:02:28.414 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-09-20T19:02:28.414 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:02:28.415 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-20T19:02:28.415 INFO:teuthology.orchestra.run.smithi018.stdout:monmaptool for a [v2:172.21.15.18:3300,v1:172.21.15.18:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-20T19:02:28.415 INFO:teuthology.orchestra.run.smithi018.stdout:setting min_mon_release = quincy 2024-09-20T19:02:28.415 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/monmaptool: set fsid to 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:02:28.415 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-20T19:02:28.415 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:02:28.415 INFO:teuthology.orchestra.run.smithi018.stdout:Creating mon... 2024-09-20T19:02:29.894 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.364+0000 7fb10c913c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-20T19:02:29.894 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.364+0000 7fb10c913c80 1 imported monmap: 2024-09-20T19:02:29.894 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-09-20T19:02:29.895 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:02:29.895 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-09-20T19:02:27.869950+0000 2024-09-20T19:02:29.895 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:02:29.895 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr min_mon_release 17 (quincy) 2024-09-20T19:02:29.895 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-09-20T19:02:29.895 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:02:29.895 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T19:02:29.895 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.364+0000 7fb10c913c80 0 /usr/bin/ceph-mon: set fsid to 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:02:29.895 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-20T19:02:29.895 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T19:02:29.895 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Git sha 0 2024-09-20T19:02:29.895 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Compile date 2024-09-20 10:48:39 2024-09-20T19:02:29.895 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: DB SUMMARY 2024-09-20T19:02:29.896 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T19:02:29.896 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: DB Session ID: 2PFZ3WF0SDRWW3W0VTVQ 2024-09-20T19:02:29.896 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T19:02:29.896 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 0, files: 2024-09-20T19:02:29.896 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T19:02:29.896 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 2024-09-20T19:02:29.896 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T19:02:29.896 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.error_if_exists: 0 2024-09-20T19:02:29.896 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.create_if_missing: 1 2024-09-20T19:02:29.896 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-20T19:02:29.896 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-20T19:02:29.896 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-20T19:02:29.896 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-20T19:02:29.897 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.env: 0x55a991b0f120 2024-09-20T19:02:29.897 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-20T19:02:29.897 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.info_log: 0x55a99284abc0 2024-09-20T19:02:29.897 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-20T19:02:29.897 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.statistics: (nil) 2024-09-20T19:02:29.897 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.use_fsync: 0 2024-09-20T19:02:29.897 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-20T19:02:29.897 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-20T19:02:29.897 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-20T19:02:29.897 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-20T19:02:29.897 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-20T19:02:29.897 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-20T19:02:29.897 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-20T19:02:29.897 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-20T19:02:29.898 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-20T19:02:29.898 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-20T19:02:29.898 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-20T19:02:29.898 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.db_log_dir: 2024-09-20T19:02:29.898 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.wal_dir: 2024-09-20T19:02:29.898 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-20T19:02:29.898 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-20T19:02:29.898 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-20T19:02:29.898 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-20T19:02:29.898 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-20T19:02:29.898 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-20T19:02:29.898 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-20T19:02:29.898 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-20T19:02:29.899 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.write_buffer_manager: 0x55a992843cc0 2024-09-20T19:02:29.899 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-20T19:02:29.899 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-20T19:02:29.899 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-20T19:02:29.899 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-20T19:02:29.899 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-20T19:02:29.899 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-20T19:02:29.899 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-20T19:02:29.899 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-20T19:02:29.899 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.unordered_write: 0 2024-09-20T19:02:29.899 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-20T19:02:29.899 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-20T19:02:29.899 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-20T19:02:29.900 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-20T19:02:29.900 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.row_cache: None 2024-09-20T19:02:29.900 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.wal_filter: None 2024-09-20T19:02:29.900 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-20T19:02:29.900 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-20T19:02:29.900 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.two_write_queues: 0 2024-09-20T19:02:29.900 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-20T19:02:29.900 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.wal_compression: 0 2024-09-20T19:02:29.900 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.atomic_flush: 0 2024-09-20T19:02:29.900 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-20T19:02:29.900 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-20T19:02:29.900 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-20T19:02:29.901 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-20T19:02:29.901 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-20T19:02:29.901 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-20T19:02:29.901 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-20T19:02:29.901 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-20T19:02:29.901 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-20T19:02:29.901 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-20T19:02:29.901 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-20T19:02:29.901 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-20T19:02:29.901 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-20T19:02:29.901 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-20T19:02:29.901 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-20T19:02:29.901 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-20T19:02:29.902 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-20T19:02:29.902 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-20T19:02:29.902 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-20T19:02:29.902 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-20T19:02:29.902 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-20T19:02:29.902 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-20T19:02:29.902 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_open_files: -1 2024-09-20T19:02:29.902 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-20T19:02:29.902 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-20T19:02:29.902 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-20T19:02:29.902 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-20T19:02:29.902 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-20T19:02:29.902 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Compression algorithms supported: 2024-09-20T19:02:29.903 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: kZSTD supported: 0 2024-09-20T19:02:29.903 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: kXpressCompression supported: 0 2024-09-20T19:02:29.903 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-20T19:02:29.903 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-20T19:02:29.903 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-20T19:02:29.903 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: kZlibCompression supported: 1 2024-09-20T19:02:29.903 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-20T19:02:29.903 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-20T19:02:29.903 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-20T19:02:29.903 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-20T19:02:29.903 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-09-20T19:02:29.903 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T19:02:29.903 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000001 2024-09-20T19:02:29.904 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T19:02:29.904 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-20T19:02:29.904 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T19:02:29.904 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-20T19:02:29.904 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.merge_operator: 2024-09-20T19:02:29.904 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compaction_filter: None 2024-09-20T19:02:29.904 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-20T19:02:29.904 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-20T19:02:29.904 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-20T19:02:29.904 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-20T19:02:29.904 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55a99284a820) 2024-09-20T19:02:29.904 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-09-20T19:02:29.905 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-09-20T19:02:29.905 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-20T19:02:29.905 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-09-20T19:02:29.905 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-09-20T19:02:29.905 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-09-20T19:02:29.905 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-09-20T19:02:29.905 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-09-20T19:02:29.905 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-09-20T19:02:29.905 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-09-20T19:02:29.905 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x55a992833610 2024-09-20T19:02:29.905 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-09-20T19:02:29.905 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-09-20T19:02:29.905 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-09-20T19:02:29.906 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-09-20T19:02:29.906 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-09-20T19:02:29.906 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-09-20T19:02:29.906 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-09-20T19:02:29.906 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-09-20T19:02:29.906 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-09-20T19:02:29.906 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-09-20T19:02:29.906 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-09-20T19:02:29.906 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-09-20T19:02:29.906 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-09-20T19:02:29.906 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-09-20T19:02:29.906 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-09-20T19:02:29.906 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-09-20T19:02:29.906 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-09-20T19:02:29.907 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-09-20T19:02:29.907 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-09-20T19:02:29.907 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-09-20T19:02:29.907 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-09-20T19:02:29.907 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-09-20T19:02:29.907 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-09-20T19:02:29.907 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-09-20T19:02:29.907 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-09-20T19:02:29.907 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-09-20T19:02:29.907 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T19:02:29.907 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-20T19:02:29.907 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-20T19:02:29.907 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compression: NoCompression 2024-09-20T19:02:29.907 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-20T19:02:29.908 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-20T19:02:29.908 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-20T19:02:29.908 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.num_levels: 7 2024-09-20T19:02:29.908 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-20T19:02:29.908 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-20T19:02:29.908 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-20T19:02:29.908 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-20T19:02:29.908 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-20T19:02:29.908 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-20T19:02:29.908 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-20T19:02:29.908 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-20T19:02:29.908 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-20T19:02:29.908 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-20T19:02:29.908 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-20T19:02:29.908 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-20T19:02:29.909 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-20T19:02:29.909 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-20T19:02:29.909 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-20T19:02:29.909 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-20T19:02:29.909 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-20T19:02:29.909 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-20T19:02:29.909 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-20T19:02:29.909 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-20T19:02:29.909 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-20T19:02:29.909 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-20T19:02:29.909 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-20T19:02:29.909 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-20T19:02:29.909 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-20T19:02:29.909 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-20T19:02:29.909 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-20T19:02:29.910 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-20T19:02:29.910 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-20T19:02:29.910 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-20T19:02:29.910 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-20T19:02:29.910 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-20T19:02:29.910 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-20T19:02:29.910 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-20T19:02:29.910 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-20T19:02:29.910 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-20T19:02:29.910 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-20T19:02:29.910 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-20T19:02:29.910 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-20T19:02:29.910 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-20T19:02:29.910 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-20T19:02:29.910 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-20T19:02:29.911 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-20T19:02:29.911 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-20T19:02:29.911 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-20T19:02:29.911 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-20T19:02:29.911 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-20T19:02:29.911 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-20T19:02:29.911 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-20T19:02:29.911 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-20T19:02:29.911 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-20T19:02:29.911 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-20T19:02:29.911 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-20T19:02:29.911 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-20T19:02:29.911 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-20T19:02:29.911 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-20T19:02:29.912 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-20T19:02:29.912 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-20T19:02:29.912 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-20T19:02:29.912 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.bloom_locality: 0 2024-09-20T19:02:29.912 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-20T19:02:29.912 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-20T19:02:29.912 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-20T19:02:29.912 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-20T19:02:29.912 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-20T19:02:29.912 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.ttl: 2592000 2024-09-20T19:02:29.932 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-20T19:02:29.932 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-20T19:02:29.932 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-20T19:02:29.932 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.enable_blob_files: false 2024-09-20T19:02:29.932 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.min_blob_size: 0 2024-09-20T19:02:29.932 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-20T19:02:29.932 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-20T19:02:29.932 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-20T19:02:29.932 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-20T19:02:29.932 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-20T19:02:29.932 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-20T19:02:29.937 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-20T19:02:29.937 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-20T19:02:29.937 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000001 succeeded,manifest_file_number is 1, next_file_number is 3, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-20T19:02:29.937 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T19:02:29.937 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-20T19:02:29.937 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T19:02:29.938 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.368+0000 7fb10c913c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: c2e86912-8f65-4fbf-a3b9-2defa7c75ffb 2024-09-20T19:02:29.938 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T19:02:29.938 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.372+0000 7fb10c913c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-09-20T19:02:29.938 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T19:02:29.938 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.372+0000 7fb10c913c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55a992862e00 2024-09-20T19:02:29.938 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.372+0000 7fb10c913c80 4 rocksdb: DB pointer 0x55a992944000 2024-09-20T19:02:29.938 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.372+0000 7fb10409e640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-20T19:02:29.938 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.372+0000 7fb10409e640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-20T19:02:29.938 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-09-20T19:02:29.938 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-20T19:02:29.938 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-20T19:02:29.938 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-20T19:02:29.938 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-20T19:02:29.938 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-20T19:02:29.939 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-20T19:02:29.939 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-20T19:02:29.939 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T19:02:29.939 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-20T19:02:29.939 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-20T19:02:29.939 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-20T19:02:29.939 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 2024-09-20T19:02:29.939 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 2024-09-20T19:02:29.939 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T19:02:29.939 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-20T19:02:29.939 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-20T19:02:29.939 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-20T19:02:29.939 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T19:02:29.939 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-20T19:02:29.940 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T19:02:29.940 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-20T19:02:29.940 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-09-20T19:02:29.940 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-09-20T19:02:29.940 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-09-20T19:02:29.940 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-09-20T19:02:29.940 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-09-20T19:02:29.940 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-20T19:02:29.940 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-20T19:02:29.940 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-20T19:02:29.940 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x55a992833610#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.4e-05 secs_since: 0 2024-09-20T19:02:29.940 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-09-20T19:02:29.940 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T19:02:29.940 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-09-20T19:02:29.940 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr 2024-09-20T19:02:29.941 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.372+0000 7fb10c913c80 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-09-20T19:02:29.941 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.372+0000 7fb10c913c80 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-09-20T19:02:29.941 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-20T19:02:29.372+0000 7fb10c913c80 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-a for mon.a 2024-09-20T19:02:29.941 INFO:teuthology.orchestra.run.smithi018.stdout:create mon.a on 2024-09-20T19:02:30.141 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Removed /etc/systemd/system/multi-user.target.wants/ceph.target. 2024-09-20T19:02:30.330 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-09-20T19:02:30.546 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-9ac321c2-7782-11ef-baf5-efdc52797490.target -> /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490.target. 2024-09-20T19:02:30.546 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-9ac321c2-7782-11ef-baf5-efdc52797490.target -> /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490.target. 2024-09-20T19:02:30.830 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mon.a 2024-09-20T19:02:30.830 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Failed to reset failed state of unit ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mon.a.service: Unit ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mon.a.service not loaded. 2024-09-20T19:02:31.021 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490.target.wants/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mon.a.service -> /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service. 2024-09-20T19:02:31.030 INFO:teuthology.orchestra.run.smithi018.stdout:firewalld does not appear to be present 2024-09-20T19:02:31.031 INFO:teuthology.orchestra.run.smithi018.stdout:Not possible to enable service . firewalld.service is not available 2024-09-20T19:02:31.031 INFO:teuthology.orchestra.run.smithi018.stdout:Waiting for mon to start... 2024-09-20T19:02:31.031 INFO:teuthology.orchestra.run.smithi018.stdout:Waiting for mon... 2024-09-20T19:02:31.126 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:31 smithi018 systemd[1]: Started Ceph mon.a for 9ac321c2-7782-11ef-baf5-efdc52797490. 2024-09-20T19:02:32.822 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:32 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.574679+0000 mon.a (mon.0) 0 : cluster [INF] mkfs 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:02:32.822 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:32 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.574679+0000 mon.a (mon.0) 0 : cluster [INF] mkfs 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:02:32.822 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:32 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.569862+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-20T19:02:32.822 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:32 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.569862+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-20T19:02:33.409 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout cluster: 2024-09-20T19:02:33.409 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout id: 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:02:33.409 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-20T19:02:33.409 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-20T19:02:33.409 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout services: 2024-09-20T19:02:33.409 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.231362s) 2024-09-20T19:02:33.409 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-20T19:02:33.410 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-20T19:02:33.410 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-20T19:02:33.410 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout data: 2024-09-20T19:02:33.410 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-20T19:02:33.410 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-20T19:02:33.410 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-20T19:02:33.410 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout pgs: 2024-09-20T19:02:33.410 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-20T19:02:33.410 INFO:teuthology.orchestra.run.smithi018.stdout:mon is available 2024-09-20T19:02:33.410 INFO:teuthology.orchestra.run.smithi018.stdout:Assimilating anything we can from ceph.conf... 2024-09-20T19:02:33.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.573531+0000 mon.a (mon.0) 2 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-20T19:02:33.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.573531+0000 mon.a (mon.0) 2 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-20T19:02:33.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.573724+0000 mon.a (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-09-20T19:02:33.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.573724+0000 mon.a (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-09-20T19:02:33.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.573755+0000 mon.a (mon.0) 4 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:02:33.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.573755+0000 mon.a (mon.0) 4 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:02:33.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.573782+0000 mon.a (mon.0) 5 : cluster [DBG] last_changed 2024-09-20T19:02:27.869950+0000 2024-09-20T19:02:33.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.573782+0000 mon.a (mon.0) 5 : cluster [DBG] last_changed 2024-09-20T19:02:27.869950+0000 2024-09-20T19:02:33.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.573807+0000 mon.a (mon.0) 6 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:02:33.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.573807+0000 mon.a (mon.0) 6 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:02:33.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.573832+0000 mon.a (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:02:33.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.573832+0000 mon.a (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:02:33.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.573855+0000 mon.a (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-09-20T19:02:33.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.573855+0000 mon.a (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-09-20T19:02:33.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.573879+0000 mon.a (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:02:33.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.573879+0000 mon.a (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:02:33.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.576307+0000 mon.a (mon.0) 10 : cluster [DBG] fsmap 2024-09-20T19:02:33.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.576307+0000 mon.a (mon.0) 10 : cluster [DBG] fsmap 2024-09-20T19:02:33.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.578736+0000 mon.a (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-20T19:02:33.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.578736+0000 mon.a (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-20T19:02:33.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.579248+0000 mon.a (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-09-20T19:02:33.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: cluster 2024-09-20T19:02:32.579248+0000 mon.a (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-09-20T19:02:33.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: audit 2024-09-20T19:02:32.804858+0000 mon.a (mon.0) 13 : audit [DBG] from='client.? 172.21.15.18:0/3286788409' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-20T19:02:33.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:33 smithi018 bash[22275]: audit 2024-09-20T19:02:32.804858+0000 mon.a (mon.0) 13 : audit [DBG] from='client.? 172.21.15.18:0/3286788409' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-20T19:02:34.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:34 smithi018 bash[22275]: audit 2024-09-20T19:02:34.557942+0000 mon.a (mon.0) 14 : audit [INF] from='client.? 172.21.15.18:0/3035860022' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-20T19:02:34.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:34 smithi018 bash[22275]: audit 2024-09-20T19:02:34.557942+0000 mon.a (mon.0) 14 : audit [INF] from='client.? 172.21.15.18:0/3035860022' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-20T19:02:34.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:34 smithi018 bash[22275]: audit 2024-09-20T19:02:34.561993+0000 mon.a (mon.0) 15 : audit [INF] from='client.? 172.21.15.18:0/3035860022' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-20T19:02:34.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:34 smithi018 bash[22275]: audit 2024-09-20T19:02:34.561993+0000 mon.a (mon.0) 15 : audit [INF] from='client.? 172.21.15.18:0/3035860022' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-20T19:02:35.140 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-20T19:02:35.140 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout [global] 2024-09-20T19:02:35.140 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout fsid = 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:02:35.140 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-20T19:02:35.140 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.18:3300,v1:172.21.15.18:6789] 2024-09-20T19:02:35.141 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-20T19:02:35.141 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-20T19:02:35.141 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-20T19:02:35.141 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-20T19:02:35.141 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-20T19:02:35.141 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-20T19:02:35.142 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2024-09-20T19:02:35.142 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-20T19:02:35.142 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-20T19:02:35.142 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout [osd] 2024-09-20T19:02:35.142 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-20T19:02:35.142 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-20T19:02:35.142 INFO:teuthology.orchestra.run.smithi018.stdout:Generating new minimal ceph.conf... 2024-09-20T19:02:36.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:36 smithi018 bash[22275]: audit 2024-09-20T19:02:36.252346+0000 mon.a (mon.0) 16 : audit [DBG] from='client.? 172.21.15.18:0/953679151' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:02:36.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:36 smithi018 bash[22275]: audit 2024-09-20T19:02:36.252346+0000 mon.a (mon.0) 16 : audit [DBG] from='client.? 172.21.15.18:0/953679151' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:02:36.845 INFO:teuthology.orchestra.run.smithi018.stdout:Restarting the monitor... 2024-09-20T19:02:37.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:36 smithi018 systemd[1]: Stopping Ceph mon.a for 9ac321c2-7782-11ef-baf5-efdc52797490... 2024-09-20T19:02:37.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:36 smithi018 bash[22275]: debug 2024-09-20T19:02:36.952+0000 7f660d51e640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-09-20T19:02:37.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:36 smithi018 bash[22275]: debug 2024-09-20T19:02:36.952+0000 7f660d51e640 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-09-20T19:02:37.698 INFO:teuthology.orchestra.run.smithi018.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-20T19:02:37.813 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:37 smithi018 bash[22663]: ceph-9ac321c2-7782-11ef-baf5-efdc52797490-mon-a 2024-09-20T19:02:37.814 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:37 smithi018 bash[22723]: ceph-9ac321c2-7782-11ef-baf5-efdc52797490-mon-a 2024-09-20T19:02:37.814 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:37 smithi018 systemd[1]: ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mon.a.service: Deactivated successfully. 2024-09-20T19:02:37.814 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:37 smithi018 systemd[1]: Stopped Ceph mon.a for 9ac321c2-7782-11ef-baf5-efdc52797490. 2024-09-20T19:02:37.814 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:37 smithi018 systemd[1]: Started Ceph mon.a for 9ac321c2-7782-11ef-baf5-efdc52797490. 2024-09-20T19:02:39.255 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.232+0000 7f7e2d440c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-20T19:02:39.255 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.232+0000 7f7e2d440c80 0 ceph version 19.3.0-5099-g88deadb8 (88deadb8082f4a33832e228ccefc59cedba158a5) squid (dev), process ceph-mon, pid 7 2024-09-20T19:02:39.255 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.232+0000 7f7e2d440c80 0 pidfile_write: ignore empty --pid-file 2024-09-20T19:02:39.255 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 0 load: jerasure load: lrc 2024-09-20T19:02:39.255 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-20T19:02:39.256 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Git sha 0 2024-09-20T19:02:39.256 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Compile date 2024-09-20 10:48:39 2024-09-20T19:02:39.256 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: DB SUMMARY 2024-09-20T19:02:39.256 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: DB Session ID: EA0XHUQ5YIAO3P6HYUZU 2024-09-20T19:02:39.256 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: CURRENT file: CURRENT 2024-09-20T19:02:39.256 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: IDENTITY file: IDENTITY 2024-09-20T19:02:39.256 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-20T19:02:39.256 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-09-20T19:02:39.256 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 88806 ; 2024-09-20T19:02:39.256 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.error_if_exists: 0 2024-09-20T19:02:39.256 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.create_if_missing: 0 2024-09-20T19:02:39.256 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-20T19:02:39.257 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-20T19:02:39.257 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-20T19:02:39.257 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-20T19:02:39.257 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.env: 0x5598321cc120 2024-09-20T19:02:39.257 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-20T19:02:39.257 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.info_log: 0x5598346ed700 2024-09-20T19:02:39.257 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-20T19:02:39.257 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.statistics: (nil) 2024-09-20T19:02:39.257 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.use_fsync: 0 2024-09-20T19:02:39.257 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-20T19:02:39.257 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-20T19:02:39.257 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-20T19:02:39.257 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-20T19:02:39.258 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-20T19:02:39.258 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-20T19:02:39.258 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-20T19:02:39.258 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-20T19:02:39.258 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-20T19:02:39.258 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-20T19:02:39.258 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-20T19:02:39.258 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.db_log_dir: 2024-09-20T19:02:39.258 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.wal_dir: 2024-09-20T19:02:39.258 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-20T19:02:39.258 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-20T19:02:39.258 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-20T19:02:39.259 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-20T19:02:39.259 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-20T19:02:39.259 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-20T19:02:39.259 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-20T19:02:39.259 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-20T19:02:39.259 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.write_buffer_manager: 0x5598346f1b80 2024-09-20T19:02:39.259 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-20T19:02:39.259 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-20T19:02:39.259 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-20T19:02:39.259 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-20T19:02:39.259 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-20T19:02:39.259 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-20T19:02:39.259 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-20T19:02:39.260 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-20T19:02:39.260 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.unordered_write: 0 2024-09-20T19:02:39.260 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-20T19:02:39.260 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-20T19:02:39.260 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-20T19:02:39.260 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-20T19:02:39.260 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.row_cache: None 2024-09-20T19:02:39.260 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.wal_filter: None 2024-09-20T19:02:39.260 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-20T19:02:39.260 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-20T19:02:39.260 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.two_write_queues: 0 2024-09-20T19:02:39.260 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-20T19:02:39.260 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.wal_compression: 0 2024-09-20T19:02:39.261 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.atomic_flush: 0 2024-09-20T19:02:39.261 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-20T19:02:39.261 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-20T19:02:39.261 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-20T19:02:39.261 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-20T19:02:39.261 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-20T19:02:39.261 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-20T19:02:39.261 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-20T19:02:39.261 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-20T19:02:39.261 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-20T19:02:39.261 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-20T19:02:39.261 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-20T19:02:39.261 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-20T19:02:39.261 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-20T19:02:39.262 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-20T19:02:39.262 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-20T19:02:39.262 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-20T19:02:39.262 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-20T19:02:39.262 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-20T19:02:39.262 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-20T19:02:39.262 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-20T19:02:39.262 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-20T19:02:39.262 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-20T19:02:39.262 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_open_files: -1 2024-09-20T19:02:39.262 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-20T19:02:39.262 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-20T19:02:39.263 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-20T19:02:39.263 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-20T19:02:39.263 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-20T19:02:39.263 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Compression algorithms supported: 2024-09-20T19:02:39.263 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: kZSTD supported: 0 2024-09-20T19:02:39.263 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: kXpressCompression supported: 0 2024-09-20T19:02:39.263 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-20T19:02:39.263 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-20T19:02:39.263 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-20T19:02:39.263 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: kZlibCompression supported: 1 2024-09-20T19:02:39.263 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-20T19:02:39.263 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-20T19:02:39.263 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-20T19:02:39.264 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-20T19:02:39.264 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-09-20T19:02:39.264 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-20T19:02:39.264 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-20T19:02:39.264 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.merge_operator: 2024-09-20T19:02:39.264 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compaction_filter: None 2024-09-20T19:02:39.264 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-20T19:02:39.264 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-20T19:02:39.264 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-20T19:02:39.264 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-20T19:02:39.264 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5598346ed320) 2024-09-20T19:02:39.264 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: cache_index_and_filter_blocks: 1 2024-09-20T19:02:39.264 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-20T19:02:39.265 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-20T19:02:39.265 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: pin_top_level_index_and_filter: 1 2024-09-20T19:02:39.265 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: index_type: 0 2024-09-20T19:02:39.265 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: data_block_index_type: 0 2024-09-20T19:02:39.265 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: index_shortening: 1 2024-09-20T19:02:39.265 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: data_block_hash_table_util_ratio: 0.750000 2024-09-20T19:02:39.265 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: checksum: 4 2024-09-20T19:02:39.265 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: no_block_cache: 0 2024-09-20T19:02:39.265 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: block_cache: 0x5598346e3610 2024-09-20T19:02:39.265 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: block_cache_name: BinnedLRUCache 2024-09-20T19:02:39.265 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: block_cache_options: 2024-09-20T19:02:39.265 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: capacity : 536870912 2024-09-20T19:02:39.265 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: num_shard_bits : 4 2024-09-20T19:02:39.265 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: strict_capacity_limit : 0 2024-09-20T19:02:39.265 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: high_pri_pool_ratio: 0.000 2024-09-20T19:02:39.266 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: block_cache_compressed: (nil) 2024-09-20T19:02:39.266 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: persistent_cache: (nil) 2024-09-20T19:02:39.266 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: block_size: 4096 2024-09-20T19:02:39.266 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: block_size_deviation: 10 2024-09-20T19:02:39.266 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: block_restart_interval: 16 2024-09-20T19:02:39.266 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: index_block_restart_interval: 1 2024-09-20T19:02:39.266 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: metadata_block_size: 4096 2024-09-20T19:02:39.266 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: partition_filters: 0 2024-09-20T19:02:39.266 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: use_delta_encoding: 1 2024-09-20T19:02:39.266 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: filter_policy: bloomfilter 2024-09-20T19:02:39.266 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: whole_key_filtering: 1 2024-09-20T19:02:39.267 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: verify_compression: 0 2024-09-20T19:02:39.267 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: read_amp_bytes_per_bit: 0 2024-09-20T19:02:39.267 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: format_version: 5 2024-09-20T19:02:39.267 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: enable_index_compression: 1 2024-09-20T19:02:39.267 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: block_align: 0 2024-09-20T19:02:39.267 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: max_auto_readahead_size: 262144 2024-09-20T19:02:39.267 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: prepopulate_block_cache: 0 2024-09-20T19:02:39.267 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: initial_auto_readahead_size: 8192 2024-09-20T19:02:39.267 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: num_file_reads_for_auto_readahead: 2 2024-09-20T19:02:39.267 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-20T19:02:39.267 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-20T19:02:39.268 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compression: NoCompression 2024-09-20T19:02:39.268 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-20T19:02:39.269 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-20T19:02:39.269 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-20T19:02:39.269 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.num_levels: 7 2024-09-20T19:02:39.269 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-20T19:02:39.269 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-20T19:02:39.269 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-20T19:02:39.269 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-20T19:02:39.269 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-20T19:02:39.269 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-20T19:02:39.269 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-20T19:02:39.269 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-20T19:02:39.269 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-20T19:02:39.269 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-20T19:02:39.269 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-20T19:02:39.269 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-20T19:02:39.270 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-20T19:02:39.270 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-20T19:02:39.270 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-20T19:02:39.270 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-20T19:02:39.270 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-20T19:02:39.270 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-20T19:02:39.270 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-20T19:02:39.270 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-20T19:02:39.270 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-20T19:02:39.270 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-20T19:02:39.270 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-20T19:02:39.270 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-20T19:02:39.270 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-20T19:02:39.271 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-20T19:02:39.271 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-20T19:02:39.271 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-20T19:02:39.271 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-20T19:02:39.271 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-20T19:02:39.271 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-20T19:02:39.271 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-20T19:02:39.271 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-20T19:02:39.271 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-20T19:02:39.271 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-20T19:02:39.271 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-20T19:02:39.271 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-20T19:02:39.272 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-20T19:02:39.272 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-20T19:02:39.272 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-20T19:02:39.272 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-20T19:02:39.272 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-20T19:02:39.272 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-20T19:02:39.272 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-20T19:02:39.272 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-20T19:02:39.272 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-20T19:02:39.272 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-20T19:02:39.272 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-20T19:02:39.272 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-20T19:02:39.272 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-20T19:02:39.272 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-20T19:02:39.272 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-20T19:02:39.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-20T19:02:39.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-20T19:02:39.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-20T19:02:39.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-20T19:02:39.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-20T19:02:39.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-20T19:02:39.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-20T19:02:39.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.bloom_locality: 0 2024-09-20T19:02:39.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-20T19:02:39.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-20T19:02:39.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-20T19:02:39.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-20T19:02:39.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-20T19:02:39.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.ttl: 2592000 2024-09-20T19:02:39.274 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-20T19:02:39.274 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-20T19:02:39.274 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-20T19:02:39.274 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.enable_blob_files: false 2024-09-20T19:02:39.274 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.min_blob_size: 0 2024-09-20T19:02:39.274 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-20T19:02:39.274 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-20T19:02:39.274 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-20T19:02:39.274 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-20T19:02:39.274 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-20T19:02:39.274 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-20T19:02:39.274 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-20T19:02:39.275 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-20T19:02:39.275 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2024-09-20T19:02:39.275 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-20T19:02:39.275 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: c2e86912-8f65-4fbf-a3b9-2defa7c75ffb 2024-09-20T19:02:39.275 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726858959241114, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-20T19:02:39.275 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.236+0000 7f7e2d440c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-20T19:02:39.275 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.240+0000 7f7e2d440c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726858959242278, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85551, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 259, "table_properties": {"data_size": 83698, "index_size": 237, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 581, "raw_key_size": 10145, "raw_average_key_size": 46, "raw_value_size": 77838, "raw_average_value_size": 357, "num_data_blocks": 11, "num_entries": 218, "num_filter_entries": 218, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1726858959, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "c2e86912-8f65-4fbf-a3b9-2defa7c75ffb", "db_session_id": "EA0XHUQ5YIAO3P6HYUZU", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-20T19:02:39.275 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.240+0000 7f7e2d440c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726858959242405, "job": 1, "event": "recovery_finished"} 2024-09-20T19:02:39.275 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.240+0000 7f7e2d440c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-20T19:02:39.275 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.240+0000 7f7e2d440c80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-a/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-20T19:02:39.275 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.240+0000 7f7e2d440c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x559834710e00 2024-09-20T19:02:39.275 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.240+0000 7f7e2d440c80 4 rocksdb: DB pointer 0x559834814000 2024-09-20T19:02:39.275 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.240+0000 7f7e23208640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-20T19:02:39.276 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.240+0000 7f7e23208640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-20T19:02:39.276 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: ** DB Stats ** 2024-09-20T19:02:39.276 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-20T19:02:39.276 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-20T19:02:39.276 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-20T19:02:39.276 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-20T19:02:39.276 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-20T19:02:39.276 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-20T19:02:39.276 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-20T19:02:39.276 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: ** Compaction Stats [default] ** 2024-09-20T19:02:39.276 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-20T19:02:39.276 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-20T19:02:39.276 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: L0 2/0 85.41 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 115.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-20T19:02:39.276 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: Sum 2/0 85.41 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 115.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-20T19:02:39.277 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 115.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-20T19:02:39.277 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: ** Compaction Stats [default] ** 2024-09-20T19:02:39.277 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-20T19:02:39.277 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-20T19:02:39.277 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 115.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-20T19:02:39.277 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-20T19:02:39.277 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-20T19:02:39.277 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-20T19:02:39.277 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-20T19:02:39.277 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: AddFile(Total Files): cumulative 0, interval 0 2024-09-20T19:02:39.277 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-20T19:02:39.277 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: AddFile(Keys): cumulative 0, interval 0 2024-09-20T19:02:39.277 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: Cumulative compaction: 0.00 GB write, 19.75 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-20T19:02:39.277 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: Interval compaction: 0.00 GB write, 19.75 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-20T19:02:39.278 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-20T19:02:39.278 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: Block cache BinnedLRUCache@0x5598346e3610#7 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.2e-05 secs_since: 0 2024-09-20T19:02:39.278 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.42 KB,8.04663e-05%) Misc(1,0.00 KB,0%) 2024-09-20T19:02:39.278 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: ** File Read Latency Histogram By Level [default] ** 2024-09-20T19:02:39.278 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.240+0000 7f7e2d440c80 0 starting mon.a rank 0 at public addrs [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] at bind addrs [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:02:39.278 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.244+0000 7f7e2d440c80 1 mon.a@-1(???) e1 preinit fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:02:39.278 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.244+0000 7f7e2d440c80 0 mon.a@-1(???).mds e1 new map 2024-09-20T19:02:39.278 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.244+0000 7f7e2d440c80 0 mon.a@-1(???).mds e1 print_map 2024-09-20T19:02:39.278 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: e1 2024-09-20T19:02:39.278 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: btime 2024-09-20T19:02:32:574284+0000 2024-09-20T19:02:39.279 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-20T19:02:39.279 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-09-20T19:02:39.279 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: legacy client fscid: -1 2024-09-20T19:02:39.279 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: 2024-09-20T19:02:39.279 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: No filesystems configured 2024-09-20T19:02:39.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.244+0000 7f7e2d440c80 0 mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-20T19:02:39.426 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.244+0000 7f7e2d440c80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-20T19:02:39.426 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.244+0000 7f7e2d440c80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-20T19:02:39.426 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.244+0000 7f7e2d440c80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-20T19:02:39.426 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:39 smithi018 bash[22763]: debug 2024-09-20T19:02:39.244+0000 7f7e2d440c80 1 mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-20T19:02:40.081 INFO:teuthology.orchestra.run.smithi018.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-20T19:02:40.100 INFO:teuthology.orchestra.run.smithi018.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-20T19:02:40.100 INFO:teuthology.orchestra.run.smithi018.stdout:Creating mgr... 2024-09-20T19:02:40.100 INFO:teuthology.orchestra.run.smithi018.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-20T19:02:40.101 INFO:teuthology.orchestra.run.smithi018.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-20T19:02:40.417 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:02:40 smithi018 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:02:40.417 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.269879+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-20T19:02:40.417 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.269879+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-20T19:02:40.418 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.269963+0000 mon.a (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-09-20T19:02:40.418 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.269963+0000 mon.a (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-09-20T19:02:40.418 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.269972+0000 mon.a (mon.0) 3 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:02:40.418 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.269972+0000 mon.a (mon.0) 3 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:02:40.418 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.269985+0000 mon.a (mon.0) 4 : cluster [DBG] last_changed 2024-09-20T19:02:27.869950+0000 2024-09-20T19:02:40.418 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.269985+0000 mon.a (mon.0) 4 : cluster [DBG] last_changed 2024-09-20T19:02:27.869950+0000 2024-09-20T19:02:40.418 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.269997+0000 mon.a (mon.0) 5 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:02:40.418 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.269997+0000 mon.a (mon.0) 5 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:02:40.418 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.270008+0000 mon.a (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:02:40.418 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.270008+0000 mon.a (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:02:40.418 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.270018+0000 mon.a (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-09-20T19:02:40.418 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.270018+0000 mon.a (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-09-20T19:02:40.418 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.270028+0000 mon.a (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:02:40.419 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.270028+0000 mon.a (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:02:40.419 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.270453+0000 mon.a (mon.0) 9 : cluster [DBG] fsmap 2024-09-20T19:02:40.419 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.270453+0000 mon.a (mon.0) 9 : cluster [DBG] fsmap 2024-09-20T19:02:40.419 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.270484+0000 mon.a (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-20T19:02:40.419 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.270484+0000 mon.a (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-20T19:02:40.419 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.270828+0000 mon.a (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-09-20T19:02:40.419 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: cluster 2024-09-20T19:02:39.270828+0000 mon.a (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-09-20T19:02:40.419 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: audit 2024-09-20T19:02:39.443989+0000 mon.a (mon.0) 12 : audit [INF] from='client.? 172.21.15.18:0/2195346081' entity='client.admin' 2024-09-20T19:02:40.419 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 bash[22763]: audit 2024-09-20T19:02:39.443989+0000 mon.a (mon.0) 12 : audit [INF] from='client.? 172.21.15.18:0/2195346081' entity='client.admin' 2024-09-20T19:02:40.419 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:02:40.421 INFO:teuthology.orchestra.run.smithi018.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mgr.a 2024-09-20T19:02:40.421 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Failed to reset failed state of unit ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mgr.a.service: Unit ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mgr.a.service not loaded. 2024-09-20T19:02:40.619 INFO:teuthology.orchestra.run.smithi018.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490.target.wants/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mgr.a.service -> /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service. 2024-09-20T19:02:40.628 INFO:teuthology.orchestra.run.smithi018.stdout:firewalld does not appear to be present 2024-09-20T19:02:40.628 INFO:teuthology.orchestra.run.smithi018.stdout:Not possible to enable service . firewalld.service is not available 2024-09-20T19:02:40.629 INFO:teuthology.orchestra.run.smithi018.stdout:firewalld does not appear to be present 2024-09-20T19:02:40.629 INFO:teuthology.orchestra.run.smithi018.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-09-20T19:02:40.629 INFO:teuthology.orchestra.run.smithi018.stdout:Waiting for mgr to start... 2024-09-20T19:02:40.629 INFO:teuthology.orchestra.run.smithi018.stdout:Waiting for mgr... 2024-09-20T19:02:40.848 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:40 smithi018 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:02:40.849 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:02:40 smithi018 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:02:40.849 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:02:40 smithi018 systemd[1]: Started Ceph mgr.a for 9ac321c2-7782-11ef-baf5-efdc52797490. 2024-09-20T19:02:43.168 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:42 smithi018 bash[22763]: audit 2024-09-20T19:02:42.921542+0000 mon.a (mon.0) 13 : audit [DBG] from='client.? 172.21.15.18:0/2158977173' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-20T19:02:43.168 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:42 smithi018 bash[22763]: audit 2024-09-20T19:02:42.921542+0000 mon.a (mon.0) 13 : audit [DBG] from='client.? 172.21.15.18:0/2158977173' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-20T19:02:43.716 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-20T19:02:43.717 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout { 2024-09-20T19:02:43.717 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "fsid": "9ac321c2-7782-11ef-baf5-efdc52797490", 2024-09-20T19:02:43.717 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "health": { 2024-09-20T19:02:43.717 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-20T19:02:43.717 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-20T19:02:43.717 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-20T19:02:43.717 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:43.717 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-20T19:02:43.717 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-20T19:02:43.717 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 0 2024-09-20T19:02:43.717 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout ], 2024-09-20T19:02:43.717 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-20T19:02:43.718 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "a" 2024-09-20T19:02:43.718 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout ], 2024-09-20T19:02:43.718 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "quorum_age": 3, 2024-09-20T19:02:43.718 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-20T19:02:43.718 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T19:02:43.718 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-20T19:02:43.718 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-20T19:02:43.718 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:43.718 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-20T19:02:43.718 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T19:02:43.718 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-20T19:02:43.718 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-20T19:02:43.718 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-20T19:02:43.719 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-20T19:02:43.719 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-20T19:02:43.719 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-20T19:02:43.719 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:43.719 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-20T19:02:43.719 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-20T19:02:43.719 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-20T19:02:43.719 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-20T19:02:43.719 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-20T19:02:43.719 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-20T19:02:43.719 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-20T19:02:43.719 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-20T19:02:43.719 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-20T19:02:43.719 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:43.720 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-20T19:02:43.720 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T19:02:43.720 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "btime": "2024-09-20T19:02:32:574284+0000", 2024-09-20T19:02:43.720 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-20T19:02:43.720 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-20T19:02:43.720 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:43.720 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-20T19:02:43.720 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-20T19:02:43.720 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-20T19:02:43.720 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-20T19:02:43.720 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-20T19:02:43.720 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-20T19:02:43.720 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "restful" 2024-09-20T19:02:43.720 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout ], 2024-09-20T19:02:43.721 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-20T19:02:43.721 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:43.721 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-20T19:02:43.721 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T19:02:43.721 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "modified": "2024-09-20T19:02:32.575183+0000", 2024-09-20T19:02:43.721 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-20T19:02:43.721 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:43.721 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-20T19:02:43.721 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout } 2024-09-20T19:02:43.721 INFO:teuthology.orchestra.run.smithi018.stdout:mgr not available, waiting (1/15)... 2024-09-20T19:02:47.426 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:47 smithi018 bash[22763]: audit 2024-09-20T19:02:46.984867+0000 mon.a (mon.0) 14 : audit [DBG] from='client.? 172.21.15.18:0/2735529123' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-20T19:02:47.426 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:47 smithi018 bash[22763]: audit 2024-09-20T19:02:46.984867+0000 mon.a (mon.0) 14 : audit [DBG] from='client.? 172.21.15.18:0/2735529123' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-20T19:02:47.562 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-20T19:02:47.562 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout { 2024-09-20T19:02:47.562 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "fsid": "9ac321c2-7782-11ef-baf5-efdc52797490", 2024-09-20T19:02:47.562 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "health": { 2024-09-20T19:02:47.562 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-20T19:02:47.562 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-20T19:02:47.562 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-20T19:02:47.563 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:47.563 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-20T19:02:47.563 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-20T19:02:47.563 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 0 2024-09-20T19:02:47.563 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout ], 2024-09-20T19:02:47.563 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-20T19:02:47.563 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "a" 2024-09-20T19:02:47.563 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout ], 2024-09-20T19:02:47.563 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "quorum_age": 7, 2024-09-20T19:02:47.563 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-20T19:02:47.563 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T19:02:47.563 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-20T19:02:47.563 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-20T19:02:47.564 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:47.564 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-20T19:02:47.564 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T19:02:47.564 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-20T19:02:47.564 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-20T19:02:47.564 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-20T19:02:47.564 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-20T19:02:47.564 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-20T19:02:47.564 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-20T19:02:47.564 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:47.564 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-20T19:02:47.564 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-20T19:02:47.564 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-20T19:02:47.565 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-20T19:02:47.565 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-20T19:02:47.565 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-20T19:02:47.565 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-20T19:02:47.565 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-20T19:02:47.565 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-20T19:02:47.565 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:47.565 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-20T19:02:47.565 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T19:02:47.565 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "btime": "2024-09-20T19:02:32:574284+0000", 2024-09-20T19:02:47.565 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-20T19:02:47.565 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-20T19:02:47.565 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:47.565 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-20T19:02:47.566 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-20T19:02:47.566 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-20T19:02:47.566 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-20T19:02:47.566 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-20T19:02:47.566 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-20T19:02:47.566 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "restful" 2024-09-20T19:02:47.566 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout ], 2024-09-20T19:02:47.566 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-20T19:02:47.566 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:47.566 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-20T19:02:47.566 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T19:02:47.566 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "modified": "2024-09-20T19:02:32.575183+0000", 2024-09-20T19:02:47.566 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-20T19:02:47.566 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:47.567 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-20T19:02:47.567 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout } 2024-09-20T19:02:47.567 INFO:teuthology.orchestra.run.smithi018.stdout:mgr not available, waiting (2/15)... 2024-09-20T19:02:49.652 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:49 smithi018 bash[22763]: cluster 2024-09-20T19:02:49.200470+0000 mon.a (mon.0) 15 : cluster [INF] Activating manager daemon a 2024-09-20T19:02:49.652 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:49 smithi018 bash[22763]: cluster 2024-09-20T19:02:49.200470+0000 mon.a (mon.0) 15 : cluster [INF] Activating manager daemon a 2024-09-20T19:02:49.652 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:49 smithi018 bash[22763]: cluster 2024-09-20T19:02:49.208415+0000 mon.a (mon.0) 16 : cluster [DBG] mgrmap e2: a(active, starting, since 0.00846868s) 2024-09-20T19:02:49.652 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:49 smithi018 bash[22763]: cluster 2024-09-20T19:02:49.208415+0000 mon.a (mon.0) 16 : cluster [DBG] mgrmap e2: a(active, starting, since 0.00846868s) 2024-09-20T19:02:49.652 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:49 smithi018 bash[22763]: audit 2024-09-20T19:02:49.209519+0000 mon.a (mon.0) 17 : audit [DBG] from='mgr.14102 172.21.15.18:0/3148449225' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-20T19:02:49.652 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:49 smithi018 bash[22763]: audit 2024-09-20T19:02:49.209519+0000 mon.a (mon.0) 17 : audit [DBG] from='mgr.14102 172.21.15.18:0/3148449225' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-20T19:02:49.653 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:49 smithi018 bash[22763]: audit 2024-09-20T19:02:49.209797+0000 mon.a (mon.0) 18 : audit [DBG] from='mgr.14102 172.21.15.18:0/3148449225' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-20T19:02:49.653 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:49 smithi018 bash[22763]: audit 2024-09-20T19:02:49.209797+0000 mon.a (mon.0) 18 : audit [DBG] from='mgr.14102 172.21.15.18:0/3148449225' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-20T19:02:49.653 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:49 smithi018 bash[22763]: audit 2024-09-20T19:02:49.210060+0000 mon.a (mon.0) 19 : audit [DBG] from='mgr.14102 172.21.15.18:0/3148449225' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-20T19:02:49.653 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:49 smithi018 bash[22763]: audit 2024-09-20T19:02:49.210060+0000 mon.a (mon.0) 19 : audit [DBG] from='mgr.14102 172.21.15.18:0/3148449225' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-20T19:02:49.653 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:49 smithi018 bash[22763]: audit 2024-09-20T19:02:49.210224+0000 mon.a (mon.0) 20 : audit [DBG] from='mgr.14102 172.21.15.18:0/3148449225' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:02:49.653 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:49 smithi018 bash[22763]: audit 2024-09-20T19:02:49.210224+0000 mon.a (mon.0) 20 : audit [DBG] from='mgr.14102 172.21.15.18:0/3148449225' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:02:49.653 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:49 smithi018 bash[22763]: audit 2024-09-20T19:02:49.210473+0000 mon.a (mon.0) 21 : audit [DBG] from='mgr.14102 172.21.15.18:0/3148449225' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-20T19:02:49.653 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:49 smithi018 bash[22763]: audit 2024-09-20T19:02:49.210473+0000 mon.a (mon.0) 21 : audit [DBG] from='mgr.14102 172.21.15.18:0/3148449225' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-20T19:02:49.653 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:49 smithi018 bash[22763]: cluster 2024-09-20T19:02:49.235852+0000 mon.a (mon.0) 22 : cluster [INF] Manager daemon a is now available 2024-09-20T19:02:49.653 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:49 smithi018 bash[22763]: cluster 2024-09-20T19:02:49.235852+0000 mon.a (mon.0) 22 : cluster [INF] Manager daemon a is now available 2024-09-20T19:02:49.653 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:49 smithi018 bash[22763]: audit 2024-09-20T19:02:49.247977+0000 mon.a (mon.0) 23 : audit [INF] from='mgr.14102 172.21.15.18:0/3148449225' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-20T19:02:49.653 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:49 smithi018 bash[22763]: audit 2024-09-20T19:02:49.247977+0000 mon.a (mon.0) 23 : audit [INF] from='mgr.14102 172.21.15.18:0/3148449225' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-20T19:02:49.653 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:49 smithi018 bash[22763]: audit 2024-09-20T19:02:49.249705+0000 mon.a (mon.0) 24 : audit [INF] from='mgr.14102 172.21.15.18:0/3148449225' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-20T19:02:49.654 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:49 smithi018 bash[22763]: audit 2024-09-20T19:02:49.249705+0000 mon.a (mon.0) 24 : audit [INF] from='mgr.14102 172.21.15.18:0/3148449225' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-20T19:02:50.534 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:50 smithi018 bash[22763]: audit 2024-09-20T19:02:49.253457+0000 mon.a (mon.0) 25 : audit [INF] from='mgr.14102 172.21.15.18:0/3148449225' entity='mgr.a' 2024-09-20T19:02:50.535 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:50 smithi018 bash[22763]: audit 2024-09-20T19:02:49.253457+0000 mon.a (mon.0) 25 : audit [INF] from='mgr.14102 172.21.15.18:0/3148449225' entity='mgr.a' 2024-09-20T19:02:50.535 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:50 smithi018 bash[22763]: audit 2024-09-20T19:02:49.257903+0000 mon.a (mon.0) 26 : audit [INF] from='mgr.14102 172.21.15.18:0/3148449225' entity='mgr.a' 2024-09-20T19:02:50.535 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:50 smithi018 bash[22763]: audit 2024-09-20T19:02:49.257903+0000 mon.a (mon.0) 26 : audit [INF] from='mgr.14102 172.21.15.18:0/3148449225' entity='mgr.a' 2024-09-20T19:02:50.535 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:50 smithi018 bash[22763]: audit 2024-09-20T19:02:49.260309+0000 mon.a (mon.0) 27 : audit [INF] from='mgr.14102 172.21.15.18:0/3148449225' entity='mgr.a' 2024-09-20T19:02:50.535 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:50 smithi018 bash[22763]: audit 2024-09-20T19:02:49.260309+0000 mon.a (mon.0) 27 : audit [INF] from='mgr.14102 172.21.15.18:0/3148449225' entity='mgr.a' 2024-09-20T19:02:50.535 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:50 smithi018 bash[22763]: cluster 2024-09-20T19:02:50.215732+0000 mon.a (mon.0) 28 : cluster [DBG] mgrmap e3: a(active, since 1.01578s) 2024-09-20T19:02:50.535 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:50 smithi018 bash[22763]: cluster 2024-09-20T19:02:50.215732+0000 mon.a (mon.0) 28 : cluster [DBG] mgrmap e3: a(active, since 1.01578s) 2024-09-20T19:02:51.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:51 smithi018 bash[22763]: audit 2024-09-20T19:02:51.239901+0000 mon.a (mon.0) 29 : audit [DBG] from='client.? 172.21.15.18:0/4146924132' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-20T19:02:51.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:51 smithi018 bash[22763]: audit 2024-09-20T19:02:51.239901+0000 mon.a (mon.0) 29 : audit [DBG] from='client.? 172.21.15.18:0/4146924132' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-20T19:02:51.857 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-20T19:02:51.857 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout { 2024-09-20T19:02:51.857 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "fsid": "9ac321c2-7782-11ef-baf5-efdc52797490", 2024-09-20T19:02:51.857 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "health": { 2024-09-20T19:02:51.858 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-20T19:02:51.858 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-20T19:02:51.858 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-20T19:02:51.858 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:51.858 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-20T19:02:51.858 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-20T19:02:51.858 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 0 2024-09-20T19:02:51.858 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout ], 2024-09-20T19:02:51.858 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-20T19:02:51.858 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "a" 2024-09-20T19:02:51.858 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout ], 2024-09-20T19:02:51.858 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "quorum_age": 11, 2024-09-20T19:02:51.858 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-20T19:02:51.859 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T19:02:51.859 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-20T19:02:51.859 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-20T19:02:51.859 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:51.859 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-20T19:02:51.859 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T19:02:51.859 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-20T19:02:51.859 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-20T19:02:51.859 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-20T19:02:51.859 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-20T19:02:51.859 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-20T19:02:51.859 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-20T19:02:51.859 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:51.860 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-20T19:02:51.860 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-20T19:02:51.860 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-20T19:02:51.860 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-20T19:02:51.860 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-20T19:02:51.860 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-20T19:02:51.860 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-20T19:02:51.860 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-20T19:02:51.860 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-20T19:02:51.860 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:51.860 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-20T19:02:51.860 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T19:02:51.860 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "btime": "2024-09-20T19:02:32:574284+0000", 2024-09-20T19:02:51.860 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-20T19:02:51.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-20T19:02:51.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:51.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-20T19:02:51.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-20T19:02:51.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-20T19:02:51.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-20T19:02:51.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-20T19:02:51.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-20T19:02:51.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "restful" 2024-09-20T19:02:51.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout ], 2024-09-20T19:02:51.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-20T19:02:51.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:51.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-20T19:02:51.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-20T19:02:51.862 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "modified": "2024-09-20T19:02:32.575183+0000", 2024-09-20T19:02:51.862 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-20T19:02:51.862 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout }, 2024-09-20T19:02:51.862 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-20T19:02:51.862 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout } 2024-09-20T19:02:51.862 INFO:teuthology.orchestra.run.smithi018.stdout:mgr is available 2024-09-20T19:02:52.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:52 smithi018 bash[22763]: cluster 2024-09-20T19:02:51.259660+0000 mon.a (mon.0) 30 : cluster [DBG] mgrmap e4: a(active, since 2s) 2024-09-20T19:02:52.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:52 smithi018 bash[22763]: cluster 2024-09-20T19:02:51.259660+0000 mon.a (mon.0) 30 : cluster [DBG] mgrmap e4: a(active, since 2s) 2024-09-20T19:02:53.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:53 smithi018 bash[22763]: audit 2024-09-20T19:02:53.283123+0000 mon.a (mon.0) 31 : audit [INF] from='client.? 172.21.15.18:0/387130241' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-20T19:02:53.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:53 smithi018 bash[22763]: audit 2024-09-20T19:02:53.283123+0000 mon.a (mon.0) 31 : audit [INF] from='client.? 172.21.15.18:0/387130241' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-20T19:02:53.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:53 smithi018 bash[22763]: audit 2024-09-20T19:02:53.287612+0000 mon.a (mon.0) 32 : audit [INF] from='client.? 172.21.15.18:0/387130241' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-20T19:02:53.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:53 smithi018 bash[22763]: audit 2024-09-20T19:02:53.287612+0000 mon.a (mon.0) 32 : audit [INF] from='client.? 172.21.15.18:0/387130241' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-20T19:02:53.860 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-20T19:02:53.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout [global] 2024-09-20T19:02:53.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout fsid = 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:02:53.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-20T19:02:53.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.18:3300,v1:172.21.15.18:6789] 2024-09-20T19:02:53.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-20T19:02:53.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-20T19:02:53.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-20T19:02:53.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-20T19:02:53.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-20T19:02:53.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-20T19:02:53.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-20T19:02:53.861 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 2024-09-20T19:02:53.862 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout [osd] 2024-09-20T19:02:53.862 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-20T19:02:53.862 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-20T19:02:53.862 INFO:teuthology.orchestra.run.smithi018.stdout:Enabling cephadm module... 2024-09-20T19:02:55.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:55 smithi018 bash[22763]: audit 2024-09-20T19:02:55.343654+0000 mon.a (mon.0) 33 : audit [INF] from='client.? 172.21.15.18:0/1036023019' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-20T19:02:55.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:55 smithi018 bash[22763]: audit 2024-09-20T19:02:55.343654+0000 mon.a (mon.0) 33 : audit [INF] from='client.? 172.21.15.18:0/1036023019' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-20T19:02:55.676 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:02:55 smithi018 bash[23020]: ignoring --setuser ceph since I am not root 2024-09-20T19:02:55.676 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:02:55 smithi018 bash[23020]: ignoring --setgroup ceph since I am not root 2024-09-20T19:02:56.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:56 smithi018 bash[22763]: audit 2024-09-20T19:02:55.395497+0000 mon.a (mon.0) 34 : audit [INF] from='client.? 172.21.15.18:0/1036023019' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-20T19:02:56.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:56 smithi018 bash[22763]: audit 2024-09-20T19:02:55.395497+0000 mon.a (mon.0) 34 : audit [INF] from='client.? 172.21.15.18:0/1036023019' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-20T19:02:56.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:56 smithi018 bash[22763]: cluster 2024-09-20T19:02:55.400714+0000 mon.a (mon.0) 35 : cluster [DBG] mgrmap e5: a(active, since 6s) 2024-09-20T19:02:56.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:56 smithi018 bash[22763]: cluster 2024-09-20T19:02:55.400714+0000 mon.a (mon.0) 35 : cluster [DBG] mgrmap e5: a(active, since 6s) 2024-09-20T19:02:57.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:57 smithi018 bash[22763]: audit 2024-09-20T19:02:57.482538+0000 mon.a (mon.0) 36 : audit [DBG] from='client.? 172.21.15.18:0/1366939399' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-20T19:02:57.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:02:57 smithi018 bash[22763]: audit 2024-09-20T19:02:57.482538+0000 mon.a (mon.0) 36 : audit [DBG] from='client.? 172.21.15.18:0/1366939399' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-20T19:02:58.090 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout { 2024-09-20T19:02:58.090 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-20T19:02:58.090 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-20T19:02:58.090 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-20T19:02:58.090 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-20T19:02:58.090 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout } 2024-09-20T19:02:58.090 INFO:teuthology.orchestra.run.smithi018.stdout:Waiting for the mgr to restart... 2024-09-20T19:02:58.090 INFO:teuthology.orchestra.run.smithi018.stdout:Waiting for mgr epoch 5... 2024-09-20T19:03:02.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:01 smithi018 bash[22763]: cluster 2024-09-20T19:03:01.687248+0000 mon.a (mon.0) 37 : cluster [INF] Active manager daemon a restarted 2024-09-20T19:03:02.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:01 smithi018 bash[22763]: cluster 2024-09-20T19:03:01.687248+0000 mon.a (mon.0) 37 : cluster [INF] Active manager daemon a restarted 2024-09-20T19:03:02.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:01 smithi018 bash[22763]: cluster 2024-09-20T19:03:01.687709+0000 mon.a (mon.0) 38 : cluster [INF] Activating manager daemon a 2024-09-20T19:03:02.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:01 smithi018 bash[22763]: cluster 2024-09-20T19:03:01.687709+0000 mon.a (mon.0) 38 : cluster [INF] Activating manager daemon a 2024-09-20T19:03:02.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:01 smithi018 bash[22763]: cluster 2024-09-20T19:03:01.694706+0000 mon.a (mon.0) 39 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-20T19:03:02.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:01 smithi018 bash[22763]: cluster 2024-09-20T19:03:01.694706+0000 mon.a (mon.0) 39 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-20T19:03:02.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:01 smithi018 bash[22763]: cluster 2024-09-20T19:03:01.694979+0000 mon.a (mon.0) 40 : cluster [DBG] mgrmap e6: a(active, starting, since 0.00744946s) 2024-09-20T19:03:02.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:01 smithi018 bash[22763]: cluster 2024-09-20T19:03:01.694979+0000 mon.a (mon.0) 40 : cluster [DBG] mgrmap e6: a(active, starting, since 0.00744946s) 2024-09-20T19:03:02.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:01 smithi018 bash[22763]: audit 2024-09-20T19:03:01.697370+0000 mon.a (mon.0) 41 : audit [DBG] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:03:02.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:01 smithi018 bash[22763]: audit 2024-09-20T19:03:01.697370+0000 mon.a (mon.0) 41 : audit [DBG] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:03:02.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:01 smithi018 bash[22763]: audit 2024-09-20T19:03:01.699837+0000 mon.a (mon.0) 42 : audit [DBG] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-20T19:03:02.177 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:01 smithi018 bash[22763]: audit 2024-09-20T19:03:01.699837+0000 mon.a (mon.0) 42 : audit [DBG] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-20T19:03:02.177 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:01 smithi018 bash[22763]: audit 2024-09-20T19:03:01.701582+0000 mon.a (mon.0) 43 : audit [DBG] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-20T19:03:02.177 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:01 smithi018 bash[22763]: audit 2024-09-20T19:03:01.701582+0000 mon.a (mon.0) 43 : audit [DBG] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-20T19:03:02.177 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:01 smithi018 bash[22763]: audit 2024-09-20T19:03:01.701917+0000 mon.a (mon.0) 44 : audit [DBG] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-20T19:03:02.177 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:01 smithi018 bash[22763]: audit 2024-09-20T19:03:01.701917+0000 mon.a (mon.0) 44 : audit [DBG] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-20T19:03:02.177 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:01 smithi018 bash[22763]: audit 2024-09-20T19:03:01.702217+0000 mon.a (mon.0) 45 : audit [DBG] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-20T19:03:02.177 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:01 smithi018 bash[22763]: audit 2024-09-20T19:03:01.702217+0000 mon.a (mon.0) 45 : audit [DBG] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-20T19:03:02.177 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:01 smithi018 bash[22763]: cluster 2024-09-20T19:03:01.728276+0000 mon.a (mon.0) 46 : cluster [INF] Manager daemon a is now available 2024-09-20T19:03:02.177 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:01 smithi018 bash[22763]: cluster 2024-09-20T19:03:01.728276+0000 mon.a (mon.0) 46 : cluster [INF] Manager daemon a is now available 2024-09-20T19:03:03.268 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout { 2024-09-20T19:03:03.269 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-20T19:03:03.269 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-20T19:03:03.269 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout } 2024-09-20T19:03:03.269 INFO:teuthology.orchestra.run.smithi018.stdout:mgr epoch 5 is available 2024-09-20T19:03:03.269 INFO:teuthology.orchestra.run.smithi018.stdout:Verifying orchestrator module is enabled... 2024-09-20T19:03:04.031 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: audit 2024-09-20T19:03:02.697921+0000 mgr.a (mgr.14118) 1 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-20T19:03:04.032 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: audit 2024-09-20T19:03:02.697921+0000 mgr.a (mgr.14118) 1 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-20T19:03:04.032 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: cluster 2024-09-20T19:03:02.699793+0000 mon.a (mon.0) 47 : cluster [DBG] mgrmap e7: a(active, since 1.01226s) 2024-09-20T19:03:04.032 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: cluster 2024-09-20T19:03:02.699793+0000 mon.a (mon.0) 47 : cluster [DBG] mgrmap e7: a(active, since 1.01226s) 2024-09-20T19:03:04.032 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: audit 2024-09-20T19:03:02.712820+0000 mgr.a (mgr.14118) 2 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-20T19:03:04.032 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: audit 2024-09-20T19:03:02.712820+0000 mgr.a (mgr.14118) 2 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-20T19:03:04.032 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: audit 2024-09-20T19:03:03.583003+0000 mon.a (mon.0) 48 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:04.032 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: audit 2024-09-20T19:03:03.583003+0000 mon.a (mon.0) 48 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:04.032 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: audit 2024-09-20T19:03:03.588048+0000 mon.a (mon.0) 49 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:04.032 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: audit 2024-09-20T19:03:03.588048+0000 mon.a (mon.0) 49 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:04.032 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: audit 2024-09-20T19:03:03.592932+0000 mon.a (mon.0) 50 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:04.032 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: audit 2024-09-20T19:03:03.592932+0000 mon.a (mon.0) 50 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:04.032 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: audit 2024-09-20T19:03:03.599022+0000 mon.a (mon.0) 51 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:04.033 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: audit 2024-09-20T19:03:03.599022+0000 mon.a (mon.0) 51 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:04.033 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: audit 2024-09-20T19:03:03.602887+0000 mon.a (mon.0) 52 : audit [DBG] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:03:04.033 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: audit 2024-09-20T19:03:03.602887+0000 mon.a (mon.0) 52 : audit [DBG] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:03:04.033 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: audit 2024-09-20T19:03:03.605988+0000 mon.a (mon.0) 53 : audit [DBG] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:03:04.033 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: audit 2024-09-20T19:03:03.605988+0000 mon.a (mon.0) 53 : audit [DBG] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:03:04.033 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: audit 2024-09-20T19:03:03.617323+0000 mon.a (mon.0) 54 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-20T19:03:04.033 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: audit 2024-09-20T19:03:03.617323+0000 mon.a (mon.0) 54 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-20T19:03:04.033 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: audit 2024-09-20T19:03:03.619728+0000 mon.a (mon.0) 55 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-20T19:03:04.033 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:03 smithi018 bash[22763]: audit 2024-09-20T19:03:03.619728+0000 mon.a (mon.0) 55 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-20T19:03:05.161 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:04 smithi018 bash[22763]: cephadm 2024-09-20T19:03:03.589054+0000 mgr.a (mgr.14118) 3 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-20T19:03:05.162 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:04 smithi018 bash[22763]: cephadm 2024-09-20T19:03:03.589054+0000 mgr.a (mgr.14118) 3 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-20T19:03:05.162 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:04 smithi018 bash[22763]: audit 2024-09-20T19:03:04.681553+0000 mon.a (mon.0) 56 : audit [INF] from='client.? 172.21.15.18:0/513561987' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2024-09-20T19:03:05.162 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:04 smithi018 bash[22763]: audit 2024-09-20T19:03:04.681553+0000 mon.a (mon.0) 56 : audit [INF] from='client.? 172.21.15.18:0/513561987' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2024-09-20T19:03:05.283 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stderr module 'orchestrator' is already enabled (always-on) 2024-09-20T19:03:05.283 INFO:teuthology.orchestra.run.smithi018.stdout:Setting orchestrator backend to cephadm... 2024-09-20T19:03:05.425 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[23020]: debug 2024-09-20T19:03:05.152+0000 7f6cde1d5640 -1 log_channel(cephadm) log [ERR] : [20/Sep/2024:19:03:05] ENGINE Error in HTTPServer.serve 2024-09-20T19:03:05.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[23020]: Traceback (most recent call last): 2024-09-20T19:03:05.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[23020]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-20T19:03:05.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[23020]: self._connections.run(self.expiration_interval) 2024-09-20T19:03:05.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[23020]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-20T19:03:05.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[23020]: self._run(expiration_interval) 2024-09-20T19:03:05.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[23020]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-20T19:03:05.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[23020]: new_conn = self._from_server_socket(self.server.socket) 2024-09-20T19:03:05.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[23020]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-20T19:03:05.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[23020]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-20T19:03:05.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[23020]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-20T19:03:05.427 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[23020]: s = self.context.wrap_socket( 2024-09-20T19:03:05.427 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[23020]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-20T19:03:05.427 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[23020]: return self.sslsocket_class._create( 2024-09-20T19:03:05.427 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[23020]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-20T19:03:05.427 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[23020]: self.do_handshake() 2024-09-20T19:03:05.427 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[23020]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-20T19:03:05.427 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[23020]: self._sslobj.do_handshake() 2024-09-20T19:03:05.427 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[23020]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-20T19:03:06.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: audit 2024-09-20T19:03:04.698234+0000 mon.a (mon.0) 57 : audit [INF] from='client.? 172.21.15.18:0/513561987' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2024-09-20T19:03:06.177 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: audit 2024-09-20T19:03:04.698234+0000 mon.a (mon.0) 57 : audit [INF] from='client.? 172.21.15.18:0/513561987' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2024-09-20T19:03:06.177 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: cluster 2024-09-20T19:03:04.703271+0000 mon.a (mon.0) 58 : cluster [DBG] mgrmap e8: a(active, since 3s) 2024-09-20T19:03:06.177 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: cluster 2024-09-20T19:03:04.703271+0000 mon.a (mon.0) 58 : cluster [DBG] mgrmap e8: a(active, since 3s) 2024-09-20T19:03:06.177 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: cephadm 2024-09-20T19:03:05.027748+0000 mgr.a (mgr.14118) 4 : cephadm [INF] [20/Sep/2024:19:03:05] ENGINE Bus STARTING 2024-09-20T19:03:06.177 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: cephadm 2024-09-20T19:03:05.027748+0000 mgr.a (mgr.14118) 4 : cephadm [INF] [20/Sep/2024:19:03:05] ENGINE Bus STARTING 2024-09-20T19:03:06.177 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: cephadm 2024-09-20T19:03:05.152389+0000 mgr.a (mgr.14118) 5 : cephadm [INF] [20/Sep/2024:19:03:05] ENGINE Serving on https://172.21.15.18:7150 2024-09-20T19:03:06.178 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: cephadm 2024-09-20T19:03:05.152389+0000 mgr.a (mgr.14118) 5 : cephadm [INF] [20/Sep/2024:19:03:05] ENGINE Serving on https://172.21.15.18:7150 2024-09-20T19:03:06.178 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: cephadm 2024-09-20T19:03:05.156395+0000 mgr.a (mgr.14118) 6 : cephadm [ERR] [20/Sep/2024:19:03:05] ENGINE Error in HTTPServer.serve 2024-09-20T19:03:06.178 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: Traceback (most recent call last): 2024-09-20T19:03:06.178 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-20T19:03:06.178 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: self._connections.run(self.expiration_interval) 2024-09-20T19:03:06.179 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-20T19:03:06.179 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: self._run(expiration_interval) 2024-09-20T19:03:06.179 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-20T19:03:06.179 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: new_conn = self._from_server_socket(self.server.socket) 2024-09-20T19:03:06.179 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-20T19:03:06.179 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-20T19:03:06.180 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-20T19:03:06.180 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: s = self.context.wrap_socket( 2024-09-20T19:03:06.180 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-20T19:03:06.180 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: return self.sslsocket_class._create( 2024-09-20T19:03:06.180 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-20T19:03:06.180 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: self.do_handshake() 2024-09-20T19:03:06.181 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-20T19:03:06.181 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: self._sslobj.do_handshake() 2024-09-20T19:03:06.181 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-20T19:03:06.181 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: cephadm 2024-09-20T19:03:05.156395+0000 mgr.a (mgr.14118) 6 : cephadm [ERR] [20/Sep/2024:19:03:05] ENGINE Error in HTTPServer.serve 2024-09-20T19:03:06.181 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: Traceback (most recent call last): 2024-09-20T19:03:06.181 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-20T19:03:06.182 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: self._connections.run(self.expiration_interval) 2024-09-20T19:03:06.182 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-20T19:03:06.182 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: self._run(expiration_interval) 2024-09-20T19:03:06.182 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-20T19:03:06.182 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: new_conn = self._from_server_socket(self.server.socket) 2024-09-20T19:03:06.182 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-20T19:03:06.183 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-20T19:03:06.183 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-20T19:03:06.183 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: s = self.context.wrap_socket( 2024-09-20T19:03:06.183 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-20T19:03:06.183 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: return self.sslsocket_class._create( 2024-09-20T19:03:06.183 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-20T19:03:06.184 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: self.do_handshake() 2024-09-20T19:03:06.184 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-20T19:03:06.184 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: self._sslobj.do_handshake() 2024-09-20T19:03:06.184 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-20T19:03:06.184 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: cephadm 2024-09-20T19:03:05.253440+0000 mgr.a (mgr.14118) 7 : cephadm [INF] [20/Sep/2024:19:03:05] ENGINE Serving on http://172.21.15.18:8765 2024-09-20T19:03:06.184 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: cephadm 2024-09-20T19:03:05.253440+0000 mgr.a (mgr.14118) 7 : cephadm [INF] [20/Sep/2024:19:03:05] ENGINE Serving on http://172.21.15.18:8765 2024-09-20T19:03:06.185 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: cephadm 2024-09-20T19:03:05.253565+0000 mgr.a (mgr.14118) 8 : cephadm [INF] [20/Sep/2024:19:03:05] ENGINE Bus STARTED 2024-09-20T19:03:06.185 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: cephadm 2024-09-20T19:03:05.253565+0000 mgr.a (mgr.14118) 8 : cephadm [INF] [20/Sep/2024:19:03:05] ENGINE Bus STARTED 2024-09-20T19:03:06.185 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: audit 2024-09-20T19:03:05.254551+0000 mon.a (mon.0) 59 : audit [DBG] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:03:06.185 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:05 smithi018 bash[22763]: audit 2024-09-20T19:03:05.254551+0000 mon.a (mon.0) 59 : audit [DBG] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:03:08.372 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:07 smithi018 bash[22763]: audit 2024-09-20T19:03:06.940882+0000 mgr.a (mgr.14118) 9 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:08.372 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:07 smithi018 bash[22763]: audit 2024-09-20T19:03:06.940882+0000 mgr.a (mgr.14118) 9 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:08.373 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:07 smithi018 bash[22763]: audit 2024-09-20T19:03:06.947661+0000 mon.a (mon.0) 60 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:08.373 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:07 smithi018 bash[22763]: audit 2024-09-20T19:03:06.947661+0000 mon.a (mon.0) 60 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:08.373 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:07 smithi018 bash[22763]: audit 2024-09-20T19:03:06.957842+0000 mon.a (mon.0) 61 : audit [DBG] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:03:08.373 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:07 smithi018 bash[22763]: audit 2024-09-20T19:03:06.957842+0000 mon.a (mon.0) 61 : audit [DBG] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:03:09.426 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-20T19:03:09.426 INFO:teuthology.orchestra.run.smithi018.stdout:Generating ssh key... 2024-09-20T19:03:09.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:09 smithi018 bash[22763]: audit 2024-09-20T19:03:08.877453+0000 mgr.a (mgr.14118) 10 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:09.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:09 smithi018 bash[22763]: audit 2024-09-20T19:03:08.877453+0000 mgr.a (mgr.14118) 10 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:11.425 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:11 smithi018 bash[23020]: Generating public/private rsa key pair. 2024-09-20T19:03:11.425 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:11 smithi018 bash[23020]: Your identification has been saved in /tmp/tmpbvw4k46f/key 2024-09-20T19:03:11.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:11 smithi018 bash[23020]: Your public key has been saved in /tmp/tmpbvw4k46f/key.pub 2024-09-20T19:03:11.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:11 smithi018 bash[23020]: The key fingerprint is: 2024-09-20T19:03:11.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:11 smithi018 bash[23020]: SHA256:jAvgJJyLvvwVZ/J482uKdKQP8L/8TiF2ViHCvb56XZA ceph-9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:03:11.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:11 smithi018 bash[23020]: The key's randomart image is: 2024-09-20T19:03:11.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:11 smithi018 bash[23020]: +---[RSA 3072]----+ 2024-09-20T19:03:11.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:11 smithi018 bash[23020]: | .... . | 2024-09-20T19:03:11.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:11 smithi018 bash[23020]: |. . .... . | 2024-09-20T19:03:11.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:11 smithi018 bash[23020]: |.oo ... | 2024-09-20T19:03:11.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:11 smithi018 bash[23020]: |.+.. o ..E | 2024-09-20T19:03:11.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:11 smithi018 bash[23020]: |.....o.*S+ . | 2024-09-20T19:03:11.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:11 smithi018 bash[23020]: |. o.@.+.. . | 2024-09-20T19:03:11.427 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:11 smithi018 bash[23020]: | . B.= .o . | 2024-09-20T19:03:11.427 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:11 smithi018 bash[23020]: |. . o O ++ . | 2024-09-20T19:03:11.427 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:11 smithi018 bash[23020]: | o.. . BO=. | 2024-09-20T19:03:11.427 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:11 smithi018 bash[23020]: +----[SHA256]-----+ 2024-09-20T19:03:12.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:12 smithi018 bash[22763]: audit 2024-09-20T19:03:10.826944+0000 mgr.a (mgr.14118) 11 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:12.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:12 smithi018 bash[22763]: audit 2024-09-20T19:03:10.826944+0000 mgr.a (mgr.14118) 11 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:12.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:12 smithi018 bash[22763]: cephadm 2024-09-20T19:03:10.827364+0000 mgr.a (mgr.14118) 12 : cephadm [INF] Generating ssh key... 2024-09-20T19:03:12.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:12 smithi018 bash[22763]: cephadm 2024-09-20T19:03:10.827364+0000 mgr.a (mgr.14118) 12 : cephadm [INF] Generating ssh key... 2024-09-20T19:03:12.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:12 smithi018 bash[22763]: audit 2024-09-20T19:03:11.120178+0000 mon.a (mon.0) 62 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:12.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:12 smithi018 bash[22763]: audit 2024-09-20T19:03:11.120178+0000 mon.a (mon.0) 62 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:12.426 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:12 smithi018 bash[22763]: audit 2024-09-20T19:03:11.125000+0000 mon.a (mon.0) 63 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:12.426 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:12 smithi018 bash[22763]: audit 2024-09-20T19:03:11.125000+0000 mon.a (mon.0) 63 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:13.749 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCVjYA3/SAVgZA8tVwCoJE/jJinHDks+UIK/1TSXyKQbpqr9LGaTKKzmcg9yrHAccBaDVcpZeCDbypioDZIv+9BI7yG3pkkgcJCUf5g6sU4XaEbX/Z0PJqu6vauXESLN8jpBdsNwoBN/1ivWaym/imHgBRTNdVpvWhklHJGMeS3v4aVTB8ZUFJol5lvi01fVIdtcJJig2PW4fvIzQqtHxGLUORBqpdGjF3kDwhlC3Q69VbgphElEoAImvKamNjpPS6HCZiBCVuG9Mc0uNK8BU5gzl2J0LzsZiN1yF9YZTgKKKFEpujR+nlG9zREMqsL6k3U5LT6lex/W7ZIFFCglvKp9Bnk/dfnw4T77X1cXutX/OIfuuXmx0+paFvtS11UiqfKyzvGiLvkj5c38/7igO6BSNeNXVvt+NKP/dqmR9N3f+7VagsWwIG8kcbo6U02V57D8USPXkAka47iT/ueuOIYfWZ9RasLI0ncQNNG9FaL7BozpGwMJlFEUya45QQ1/X0= ceph-9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:03:13.749 INFO:teuthology.orchestra.run.smithi018.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-20T19:03:13.749 INFO:teuthology.orchestra.run.smithi018.stdout:Adding key to root@localhost authorized_keys... 2024-09-20T19:03:13.749 INFO:teuthology.orchestra.run.smithi018.stdout:Adding host smithi018... 2024-09-20T19:03:13.839 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:13 smithi018 bash[22763]: audit 2024-09-20T19:03:13.176959+0000 mgr.a (mgr.14118) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:13.839 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:13 smithi018 bash[22763]: audit 2024-09-20T19:03:13.176959+0000 mgr.a (mgr.14118) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:15.704 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:15 smithi018 bash[22763]: audit 2024-09-20T19:03:15.235504+0000 mgr.a (mgr.14118) 14 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi018", "addr": "172.21.15.18", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:15.704 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:15 smithi018 bash[22763]: audit 2024-09-20T19:03:15.235504+0000 mgr.a (mgr.14118) 14 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi018", "addr": "172.21.15.18", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:17.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:17 smithi018 bash[22763]: cephadm 2024-09-20T19:03:16.506994+0000 mgr.a (mgr.14118) 15 : cephadm [INF] Deploying cephadm binary to smithi018 2024-09-20T19:03:17.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:17 smithi018 bash[22763]: cephadm 2024-09-20T19:03:16.506994+0000 mgr.a (mgr.14118) 15 : cephadm [INF] Deploying cephadm binary to smithi018 2024-09-20T19:03:21.065 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout Added host 'smithi018' with addr '172.21.15.18' 2024-09-20T19:03:21.065 INFO:teuthology.orchestra.run.smithi018.stdout:Deploying unmanaged mon service... 2024-09-20T19:03:21.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:21 smithi018 bash[22763]: audit 2024-09-20T19:03:20.117783+0000 mon.a (mon.0) 64 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:21.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:21 smithi018 bash[22763]: audit 2024-09-20T19:03:20.117783+0000 mon.a (mon.0) 64 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:21.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:21 smithi018 bash[22763]: cephadm 2024-09-20T19:03:20.118193+0000 mgr.a (mgr.14118) 16 : cephadm [INF] Added host smithi018 2024-09-20T19:03:21.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:21 smithi018 bash[22763]: cephadm 2024-09-20T19:03:20.118193+0000 mgr.a (mgr.14118) 16 : cephadm [INF] Added host smithi018 2024-09-20T19:03:21.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:21 smithi018 bash[22763]: audit 2024-09-20T19:03:20.118698+0000 mon.a (mon.0) 65 : audit [DBG] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:03:21.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:21 smithi018 bash[22763]: audit 2024-09-20T19:03:20.118698+0000 mon.a (mon.0) 65 : audit [DBG] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:03:22.852 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:22 smithi018 bash[22763]: cluster 2024-09-20T19:03:21.702954+0000 mgr.a (mgr.14118) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:03:22.852 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:22 smithi018 bash[22763]: cluster 2024-09-20T19:03:21.702954+0000 mgr.a (mgr.14118) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:03:23.743 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-20T19:03:23.743 INFO:teuthology.orchestra.run.smithi018.stdout:Deploying unmanaged mgr service... 2024-09-20T19:03:24.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:24 smithi018 bash[22763]: audit 2024-09-20T19:03:23.092169+0000 mgr.a (mgr.14118) 18 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:24.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:24 smithi018 bash[22763]: audit 2024-09-20T19:03:23.092169+0000 mgr.a (mgr.14118) 18 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:24.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:24 smithi018 bash[22763]: cephadm 2024-09-20T19:03:23.095114+0000 mgr.a (mgr.14118) 19 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-20T19:03:24.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:24 smithi018 bash[22763]: cephadm 2024-09-20T19:03:23.095114+0000 mgr.a (mgr.14118) 19 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-20T19:03:24.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:24 smithi018 bash[22763]: audit 2024-09-20T19:03:23.098429+0000 mon.a (mon.0) 66 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:24.426 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:24 smithi018 bash[22763]: audit 2024-09-20T19:03:23.098429+0000 mon.a (mon.0) 66 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:24.426 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:24 smithi018 bash[22763]: audit 2024-09-20T19:03:23.379614+0000 mon.a (mon.0) 67 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:24.426 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:24 smithi018 bash[22763]: audit 2024-09-20T19:03:23.379614+0000 mon.a (mon.0) 67 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:24.426 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:24 smithi018 bash[22763]: audit 2024-09-20T19:03:23.978909+0000 mon.a (mon.0) 68 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:24.426 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:24 smithi018 bash[22763]: audit 2024-09-20T19:03:23.978909+0000 mon.a (mon.0) 68 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:25.668 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:25 smithi018 bash[22763]: cluster 2024-09-20T19:03:23.703353+0000 mgr.a (mgr.14118) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:03:25.669 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:25 smithi018 bash[22763]: cluster 2024-09-20T19:03:23.703353+0000 mgr.a (mgr.14118) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:03:26.043 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-20T19:03:26.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:26 smithi018 bash[22763]: audit 2024-09-20T19:03:25.447443+0000 mgr.a (mgr.14118) 21 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:26.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:26 smithi018 bash[22763]: audit 2024-09-20T19:03:25.447443+0000 mgr.a (mgr.14118) 21 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:26.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:26 smithi018 bash[22763]: cephadm 2024-09-20T19:03:25.449709+0000 mgr.a (mgr.14118) 22 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-20T19:03:26.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:26 smithi018 bash[22763]: cephadm 2024-09-20T19:03:25.449709+0000 mgr.a (mgr.14118) 22 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-20T19:03:26.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:26 smithi018 bash[22763]: audit 2024-09-20T19:03:25.454142+0000 mon.a (mon.0) 69 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:26.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:26 smithi018 bash[22763]: audit 2024-09-20T19:03:25.454142+0000 mon.a (mon.0) 69 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:27.818 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:27 smithi018 bash[22763]: cluster 2024-09-20T19:03:25.703772+0000 mgr.a (mgr.14118) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:03:27.818 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:27 smithi018 bash[22763]: cluster 2024-09-20T19:03:25.703772+0000 mgr.a (mgr.14118) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:03:28.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:28 smithi018 bash[22763]: audit 2024-09-20T19:03:27.599707+0000 mon.a (mon.0) 70 : audit [INF] from='client.? 172.21.15.18:0/2958521771' entity='client.admin' 2024-09-20T19:03:28.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:28 smithi018 bash[22763]: audit 2024-09-20T19:03:27.599707+0000 mon.a (mon.0) 70 : audit [INF] from='client.? 172.21.15.18:0/2958521771' entity='client.admin' 2024-09-20T19:03:28.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:28 smithi018 bash[22763]: cluster 2024-09-20T19:03:27.704054+0000 mgr.a (mgr.14118) 24 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:03:28.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:28 smithi018 bash[22763]: cluster 2024-09-20T19:03:27.704054+0000 mgr.a (mgr.14118) 24 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:03:30.207 INFO:teuthology.orchestra.run.smithi018.stdout:Enabling the dashboard module... 2024-09-20T19:03:30.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:30 smithi018 bash[22763]: audit 2024-09-20T19:03:29.582262+0000 mon.a (mon.0) 71 : audit [INF] from='client.? 172.21.15.18:0/2785078712' entity='client.admin' 2024-09-20T19:03:30.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:30 smithi018 bash[22763]: audit 2024-09-20T19:03:29.582262+0000 mon.a (mon.0) 71 : audit [INF] from='client.? 172.21.15.18:0/2785078712' entity='client.admin' 2024-09-20T19:03:30.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:30 smithi018 bash[22763]: cluster 2024-09-20T19:03:29.704319+0000 mgr.a (mgr.14118) 25 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:03:30.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:30 smithi018 bash[22763]: cluster 2024-09-20T19:03:29.704319+0000 mgr.a (mgr.14118) 25 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:03:30.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:30 smithi018 bash[22763]: audit 2024-09-20T19:03:29.836327+0000 mon.a (mon.0) 72 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:30.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:30 smithi018 bash[22763]: audit 2024-09-20T19:03:29.836327+0000 mon.a (mon.0) 72 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:32.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:32 smithi018 bash[22763]: audit 2024-09-20T19:03:31.088096+0000 mon.a (mon.0) 73 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:32.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:32 smithi018 bash[22763]: audit 2024-09-20T19:03:31.088096+0000 mon.a (mon.0) 73 : audit [INF] from='mgr.14118 172.21.15.18:0/2265565851' entity='mgr.a' 2024-09-20T19:03:32.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:32 smithi018 bash[22763]: audit 2024-09-20T19:03:31.795722+0000 mon.a (mon.0) 74 : audit [INF] from='client.? 172.21.15.18:0/1615607141' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2024-09-20T19:03:32.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:32 smithi018 bash[22763]: audit 2024-09-20T19:03:31.795722+0000 mon.a (mon.0) 74 : audit [INF] from='client.? 172.21.15.18:0/1615607141' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2024-09-20T19:03:32.425 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:32 smithi018 bash[23020]: ignoring --setuser ceph since I am not root 2024-09-20T19:03:32.425 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:32 smithi018 bash[23020]: ignoring --setgroup ceph since I am not root 2024-09-20T19:03:33.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:33 smithi018 bash[22763]: audit 2024-09-20T19:03:32.087886+0000 mon.a (mon.0) 75 : audit [INF] from='client.? 172.21.15.18:0/1615607141' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-20T19:03:33.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:33 smithi018 bash[22763]: audit 2024-09-20T19:03:32.087886+0000 mon.a (mon.0) 75 : audit [INF] from='client.? 172.21.15.18:0/1615607141' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-20T19:03:33.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:33 smithi018 bash[22763]: cluster 2024-09-20T19:03:32.093433+0000 mon.a (mon.0) 76 : cluster [DBG] mgrmap e9: a(active, since 30s) 2024-09-20T19:03:33.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:33 smithi018 bash[22763]: cluster 2024-09-20T19:03:32.093433+0000 mon.a (mon.0) 76 : cluster [DBG] mgrmap e9: a(active, since 30s) 2024-09-20T19:03:34.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:34 smithi018 bash[22763]: audit 2024-09-20T19:03:34.224080+0000 mon.a (mon.0) 77 : audit [DBG] from='client.? 172.21.15.18:0/3708570304' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-20T19:03:34.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:34 smithi018 bash[22763]: audit 2024-09-20T19:03:34.224080+0000 mon.a (mon.0) 77 : audit [DBG] from='client.? 172.21.15.18:0/3708570304' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-20T19:03:34.815 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout { 2024-09-20T19:03:34.815 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-20T19:03:34.815 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-20T19:03:34.815 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-20T19:03:34.815 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-20T19:03:34.815 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout } 2024-09-20T19:03:34.815 INFO:teuthology.orchestra.run.smithi018.stdout:Waiting for the mgr to restart... 2024-09-20T19:03:34.815 INFO:teuthology.orchestra.run.smithi018.stdout:Waiting for mgr epoch 9... 2024-09-20T19:03:38.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:38 smithi018 bash[22763]: cluster 2024-09-20T19:03:38.407778+0000 mon.a (mon.0) 78 : cluster [INF] Active manager daemon a restarted 2024-09-20T19:03:38.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:38 smithi018 bash[22763]: cluster 2024-09-20T19:03:38.407778+0000 mon.a (mon.0) 78 : cluster [INF] Active manager daemon a restarted 2024-09-20T19:03:38.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:38 smithi018 bash[22763]: cluster 2024-09-20T19:03:38.408248+0000 mon.a (mon.0) 79 : cluster [INF] Activating manager daemon a 2024-09-20T19:03:38.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:38 smithi018 bash[22763]: cluster 2024-09-20T19:03:38.408248+0000 mon.a (mon.0) 79 : cluster [INF] Activating manager daemon a 2024-09-20T19:03:38.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:38 smithi018 bash[22763]: cluster 2024-09-20T19:03:38.411862+0000 mon.a (mon.0) 80 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-09-20T19:03:38.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:38 smithi018 bash[22763]: cluster 2024-09-20T19:03:38.411862+0000 mon.a (mon.0) 80 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-09-20T19:03:38.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:38 smithi018 bash[22763]: cluster 2024-09-20T19:03:38.412021+0000 mon.a (mon.0) 81 : cluster [DBG] mgrmap e10: a(active, starting, since 0.00394981s) 2024-09-20T19:03:38.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:38 smithi018 bash[22763]: cluster 2024-09-20T19:03:38.412021+0000 mon.a (mon.0) 81 : cluster [DBG] mgrmap e10: a(active, starting, since 0.00394981s) 2024-09-20T19:03:38.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:38 smithi018 bash[22763]: audit 2024-09-20T19:03:38.413686+0000 mon.a (mon.0) 82 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:03:38.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:38 smithi018 bash[22763]: audit 2024-09-20T19:03:38.413686+0000 mon.a (mon.0) 82 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:03:38.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:38 smithi018 bash[22763]: audit 2024-09-20T19:03:38.414842+0000 mon.a (mon.0) 83 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-20T19:03:38.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:38 smithi018 bash[22763]: audit 2024-09-20T19:03:38.414842+0000 mon.a (mon.0) 83 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-20T19:03:38.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:38 smithi018 bash[22763]: audit 2024-09-20T19:03:38.415717+0000 mon.a (mon.0) 84 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-20T19:03:38.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:38 smithi018 bash[22763]: audit 2024-09-20T19:03:38.415717+0000 mon.a (mon.0) 84 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-20T19:03:38.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:38 smithi018 bash[22763]: audit 2024-09-20T19:03:38.415909+0000 mon.a (mon.0) 85 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-20T19:03:38.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:38 smithi018 bash[22763]: audit 2024-09-20T19:03:38.415909+0000 mon.a (mon.0) 85 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-20T19:03:38.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:38 smithi018 bash[22763]: audit 2024-09-20T19:03:38.416083+0000 mon.a (mon.0) 86 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-20T19:03:38.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:38 smithi018 bash[22763]: audit 2024-09-20T19:03:38.416083+0000 mon.a (mon.0) 86 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-20T19:03:38.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:38 smithi018 bash[22763]: cluster 2024-09-20T19:03:38.439282+0000 mon.a (mon.0) 87 : cluster [INF] Manager daemon a is now available 2024-09-20T19:03:38.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:38 smithi018 bash[22763]: cluster 2024-09-20T19:03:38.439282+0000 mon.a (mon.0) 87 : cluster [INF] Manager daemon a is now available 2024-09-20T19:03:39.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:39 smithi018 bash[22763]: audit 2024-09-20T19:03:38.855181+0000 mon.a (mon.0) 88 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:03:39.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:39 smithi018 bash[22763]: audit 2024-09-20T19:03:38.855181+0000 mon.a (mon.0) 88 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:03:39.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:39 smithi018 bash[22763]: audit 2024-09-20T19:03:38.873210+0000 mon.a (mon.0) 89 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-20T19:03:39.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:39 smithi018 bash[22763]: audit 2024-09-20T19:03:38.873210+0000 mon.a (mon.0) 89 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-20T19:03:39.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:39 smithi018 bash[22763]: audit 2024-09-20T19:03:38.875056+0000 mon.a (mon.0) 90 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-20T19:03:39.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:39 smithi018 bash[22763]: audit 2024-09-20T19:03:38.875056+0000 mon.a (mon.0) 90 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-20T19:03:39.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:39 smithi018 bash[22763]: cluster 2024-09-20T19:03:39.420979+0000 mon.a (mon.0) 91 : cluster [DBG] mgrmap e11: a(active, since 1.01289s) 2024-09-20T19:03:39.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:39 smithi018 bash[22763]: cluster 2024-09-20T19:03:39.420979+0000 mon.a (mon.0) 91 : cluster [DBG] mgrmap e11: a(active, since 1.01289s) 2024-09-20T19:03:40.053 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout { 2024-09-20T19:03:40.053 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-20T19:03:40.053 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-20T19:03:40.053 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout } 2024-09-20T19:03:40.053 INFO:teuthology.orchestra.run.smithi018.stdout:mgr epoch 9 is available 2024-09-20T19:03:40.054 INFO:teuthology.orchestra.run.smithi018.stdout:Using certmgr to generate dashboard self-signed certificate... 2024-09-20T19:03:40.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[22763]: audit 2024-09-20T19:03:39.418684+0000 mgr.a (mgr.14152) 1 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-20T19:03:40.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[22763]: audit 2024-09-20T19:03:39.418684+0000 mgr.a (mgr.14152) 1 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-20T19:03:40.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[22763]: audit 2024-09-20T19:03:39.433253+0000 mgr.a (mgr.14152) 2 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-20T19:03:40.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[22763]: audit 2024-09-20T19:03:39.433253+0000 mgr.a (mgr.14152) 2 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-20T19:03:41.425 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[23020]: debug 2024-09-20T19:03:40.951+0000 7f0f98dc1640 -1 log_channel(cephadm) log [ERR] : [20/Sep/2024:19:03:40] ENGINE Error in HTTPServer.serve 2024-09-20T19:03:41.425 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[23020]: Traceback (most recent call last): 2024-09-20T19:03:41.425 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[23020]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-20T19:03:41.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[23020]: self._connections.run(self.expiration_interval) 2024-09-20T19:03:41.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[23020]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-20T19:03:41.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[23020]: self._run(expiration_interval) 2024-09-20T19:03:41.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[23020]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-20T19:03:41.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[23020]: new_conn = self._from_server_socket(self.server.socket) 2024-09-20T19:03:41.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[23020]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-20T19:03:41.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[23020]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-20T19:03:41.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[23020]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-20T19:03:41.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[23020]: s = self.context.wrap_socket( 2024-09-20T19:03:41.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[23020]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-20T19:03:41.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[23020]: return self.sslsocket_class._create( 2024-09-20T19:03:41.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[23020]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-20T19:03:41.426 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[23020]: self.do_handshake() 2024-09-20T19:03:41.427 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[23020]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-20T19:03:41.427 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[23020]: self._sslobj.do_handshake() 2024-09-20T19:03:41.427 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:03:40 smithi018 bash[23020]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-20T19:03:41.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: cluster 2024-09-20T19:03:40.467629+0000 mon.a (mon.0) 92 : cluster [DBG] mgrmap e12: a(active, since 2s) 2024-09-20T19:03:41.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: cluster 2024-09-20T19:03:40.467629+0000 mon.a (mon.0) 92 : cluster [DBG] mgrmap e12: a(active, since 2s) 2024-09-20T19:03:41.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: cephadm 2024-09-20T19:03:40.725956+0000 mgr.a (mgr.14152) 3 : cephadm [INF] [20/Sep/2024:19:03:40] ENGINE Bus STARTING 2024-09-20T19:03:41.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: cephadm 2024-09-20T19:03:40.725956+0000 mgr.a (mgr.14152) 3 : cephadm [INF] [20/Sep/2024:19:03:40] ENGINE Bus STARTING 2024-09-20T19:03:41.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: cephadm 2024-09-20T19:03:40.827718+0000 mgr.a (mgr.14152) 4 : cephadm [INF] [20/Sep/2024:19:03:40] ENGINE Serving on http://172.21.15.18:8765 2024-09-20T19:03:41.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: cephadm 2024-09-20T19:03:40.827718+0000 mgr.a (mgr.14152) 4 : cephadm [INF] [20/Sep/2024:19:03:40] ENGINE Serving on http://172.21.15.18:8765 2024-09-20T19:03:41.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: cephadm 2024-09-20T19:03:40.951862+0000 mgr.a (mgr.14152) 5 : cephadm [INF] [20/Sep/2024:19:03:40] ENGINE Serving on https://172.21.15.18:7150 2024-09-20T19:03:41.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: cephadm 2024-09-20T19:03:40.951862+0000 mgr.a (mgr.14152) 5 : cephadm [INF] [20/Sep/2024:19:03:40] ENGINE Serving on https://172.21.15.18:7150 2024-09-20T19:03:41.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: cephadm 2024-09-20T19:03:40.952048+0000 mgr.a (mgr.14152) 6 : cephadm [INF] [20/Sep/2024:19:03:40] ENGINE Bus STARTED 2024-09-20T19:03:41.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: cephadm 2024-09-20T19:03:40.952048+0000 mgr.a (mgr.14152) 6 : cephadm [INF] [20/Sep/2024:19:03:40] ENGINE Bus STARTED 2024-09-20T19:03:41.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: cephadm 2024-09-20T19:03:40.953883+0000 mgr.a (mgr.14152) 7 : cephadm [ERR] [20/Sep/2024:19:03:40] ENGINE Error in HTTPServer.serve 2024-09-20T19:03:41.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: Traceback (most recent call last): 2024-09-20T19:03:41.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-20T19:03:41.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: self._connections.run(self.expiration_interval) 2024-09-20T19:03:41.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-20T19:03:41.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: self._run(expiration_interval) 2024-09-20T19:03:41.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-20T19:03:41.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: new_conn = self._from_server_socket(self.server.socket) 2024-09-20T19:03:41.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-20T19:03:41.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-20T19:03:41.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-20T19:03:41.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: s = self.context.wrap_socket( 2024-09-20T19:03:41.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-20T19:03:41.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: return self.sslsocket_class._create( 2024-09-20T19:03:41.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-20T19:03:41.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: self.do_handshake() 2024-09-20T19:03:41.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-20T19:03:41.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: self._sslobj.do_handshake() 2024-09-20T19:03:41.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-20T19:03:41.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: cephadm 2024-09-20T19:03:40.953883+0000 mgr.a (mgr.14152) 7 : cephadm [ERR] [20/Sep/2024:19:03:40] ENGINE Error in HTTPServer.serve 2024-09-20T19:03:41.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: Traceback (most recent call last): 2024-09-20T19:03:41.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-20T19:03:41.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: self._connections.run(self.expiration_interval) 2024-09-20T19:03:41.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-20T19:03:41.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: self._run(expiration_interval) 2024-09-20T19:03:41.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-20T19:03:41.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: new_conn = self._from_server_socket(self.server.socket) 2024-09-20T19:03:41.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-20T19:03:41.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-20T19:03:41.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-20T19:03:41.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: s = self.context.wrap_socket( 2024-09-20T19:03:41.929 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-20T19:03:41.929 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: return self.sslsocket_class._create( 2024-09-20T19:03:41.929 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-20T19:03:41.929 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: self.do_handshake() 2024-09-20T19:03:41.929 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-20T19:03:41.929 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: self._sslobj.do_handshake() 2024-09-20T19:03:41.929 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:41 smithi018 bash[22763]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-20T19:03:42.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:42 smithi018 bash[22763]: audit 2024-09-20T19:03:41.582456+0000 mgr.a (mgr.14152) 8 : audit [DBG] from='client.14164 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:42.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:42 smithi018 bash[22763]: audit 2024-09-20T19:03:41.582456+0000 mgr.a (mgr.14152) 8 : audit [DBG] from='client.14164 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:44.070 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIE+zCCAuOgAwIBAgIULhwFgOtehCr3ObG2pfsuLLSiw5UwDQYJKoZIhvcNAQEL\nBQAwFzEVMBMGA1UEAwwMY2VwaGFkbS1yb290MB4XDTI0MDkyMDE5MDM0M1oXDTM0\nMDkyMTE5MDM0M1owFzEVMBMGA1UEAwwMMTcyLjIxLjE1LjE4MIICIjANBgkqhkiG\n9w0BAQEFAAOCAg8AMIICCgKCAgEA5FmF/tDKtJzK/YDQR0IcmHn0o44coiFfZ37+\n5MSjZTfgSqfO4DpIZhYDf0AABGVO2/aVsGCLpTcaCmTHtFlAy9ctebPs958xRzdc\n90+LoqXEyLbAGiOj/U/cHBAv151fmfXBbZF3aYnJbsKxP/8anI7Tyw0zPu7cuSC0\nifchiEl4L1Mfyw9MOQFlR97h5i9lRvCoV5tfjq6bT7zDE4/lAb7YgSQYAcdxXbP4\nKcqR/xeMn9XRJc2+rEjMxLzVn7o11NEbyt5MjSxP/r149EAl3c7AxJJKbchwYW91\nJGJWTwGBkWzs+p5nSbWMx+yKp1Z26jNqsWdQVe2aHn7eLUQp/jHg1HB/Bacwevek\nRWFGBVopusubk7TKCGWKowSj1G0b0NjwGdxnshREH71mvH0OaCyPHJiF5JB/cpIH\n+4b46t6jWm+OTShtIglEiOPA4jUd0A09Kcbg28PKhkZl7cmLQ9cDHbibqup4BztA\n9E5iF7TH0TzQKaQZcQKKH82RO/aTQpzSj6LXrDoDeRHOAAB9zb/4LZlTh+QndaeT\nB6gAY6UlA04tbFbI21EOrbg20tIHswpQIspS2LwocQaXkT4rd57+X48+zDVR0HuE\nXhvmcdHkZZGDDhrJC6xnque2Bxb8fU/Ve5R3C2Uce0VIABkL3HNhBcB01FJItMuN\neVJF9okCAwEAAaM/MD0wLQYDVR0RBCYwJIIJc21pdGhpMDE4ghFkYXNoYm9hcmRf\nc2VydmVyc4cErBUPEjAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQCu\nMyKc5zfeoO7oZldeaK6FhqmatQfDz245mr3CKDLDO+p3U5I/6TrxD0BkB5dJ2yIv\nkmhO1mHiVAfUpgRun7gTC5XWHWrx6NYPf/nR9NPFIFBjnacTiIlujbToHFY8TbDk\neN8KfllXNfgUBeI/omWqaM+P2lB/ARUWIsXe+lWUla/uTLBTEE+j5kIq+mDM0vqM\nyFU9eGO+vLi0AukP5Z2pYAeycx+kpcXmMlN+DiJMWcEL/b3P8PSWnPU86s3eTUO1\n5S8WnfOAdr5IIhx2yYv2CscqlMVlALdEiC7r0FKkBpZp9nrrEGSnwuVTKbGRikll\nGuJVpHeVQztktydmNUbEk4D6CmMgwrrHMEq8Ofo8D0wK5uNuebt/5lMivhzAqLQE\nce15QfaKKwH/Yiy3m7LdlQUi2Dz87s65nxgPdNoL0pGNy/OyWj8GdJaBJxqrw8EG\nz5eHSPQZU9wPRmj3bdYogmpfaw+Cwf2C4q0F5SJ8lRKdv641gbSfXXAaYwiqnz78\nPIJtiqRiQmmIzXN5uwZQK9WPpM3deEio9wAEBAHky3itKtDMzO8enfo+XXIpUdPH\ndOnL+L+tc6L9ATne4XDCSSFOXV/gtbF0op0rCcf5QNy8LKcIxWXVXM5HWdm7HJ2M\n/8klUmunV6nIi3NYghWvFC0er671ypnWTw3yHgHt/A==\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJKQIBAAKCAgEA5FmF/tDKtJzK/YDQR0IcmHn0o44coiFfZ37+5MSjZTfgSqfO\n4DpIZhYDf0AABGVO2/aVsGCLpTcaCmTHtFlAy9ctebPs958xRzdc90+LoqXEyLbA\nGiOj/U/cHBAv151fmfXBbZF3aYnJbsKxP/8anI7Tyw0zPu7cuSC0ifchiEl4L1Mf\nyw9MOQFlR97h5i9lRvCoV5tfjq6bT7zDE4/lAb7YgSQYAcdxXbP4KcqR/xeMn9XR\nJc2+rEjMxLzVn7o11NEbyt5MjSxP/r149EAl3c7AxJJKbchwYW91JGJWTwGBkWzs\n+p5nSbWMx+yKp1Z26jNqsWdQVe2aHn7eLUQp/jHg1HB/BacwevekRWFGBVopusub\nk7TKCGWKowSj1G0b0NjwGdxnshREH71mvH0OaCyPHJiF5JB/cpIH+4b46t6jWm+O\nTShtIglEiOPA4jUd0A09Kcbg28PKhkZl7cmLQ9cDHbibqup4BztA9E5iF7TH0TzQ\nKaQZcQKKH82RO/aTQpzSj6LXrDoDeRHOAAB9zb/4LZlTh+QndaeTB6gAY6UlA04t\nbFbI21EOrbg20tIHswpQIspS2LwocQaXkT4rd57+X48+zDVR0HuEXhvmcdHkZZGD\nDhrJC6xnque2Bxb8fU/Ve5R3C2Uce0VIABkL3HNhBcB01FJItMuNeVJF9okCAwEA\nAQKCAgANL/xfPHNQc0j9KJjJXLs7tQ4DT2bo7XDN5dWA+bg5VWeZzXooP0VvcTBa\nLiSHccsC716ICp4Aox+DtSacDEGD5CqR/5RHsq+3s1imRwzt45FAnt6WQ95Ud+24\nHdkyzw8L3FeuOmXr4ui5VvtskjuDtMiXeUIvOBU9iHLUuuslV0ozwCMIaPBCed79\nrmoGZKX+hFHR3r0Uh5HxohmerMM8KBI8gbdJ4a5INpILkSbVqr2qJ2uGOY0cSbIF\ntKVzrYnZVLWRsD053p1vZ/AvJEXrkDqtajNr2/+y04CE4ub6y2qjrueQC7Y0WWHx\nfoAoF4QTlMzsb5Esp+WsLYXVlb0E/11hmIalJUW8Mq/VhpG1UPdK5xtzLxOaDmy5\nt/E2CJs93RTmKN9efhc6C2G8bThUnrs7qAmY/dVOfZSwgtvPZnRFvdsqBDXkMOfw\nrfXfJs69c6josF2GsCRe1nnECPqIDG1wFDW9puCx3T35PtU2dZr3vrtf40OdZR7a\nBhw8LD3elgWQygcZMoB/cSeqVDmaHXz96JBO8s+ZSR3GYjN45l90Yq0VNKpKabcD\naMb6Fh6aPnMmlBJ6dACsLfXAHYsVBLo+YbTVdZyLcb1elcM94HdLuskxzvxswgvm\nA/iv6ZLLm58sNCTVR4uoT7DHUiaPQxp7znegcKhfULqY0BOiOQKCAQEA84kYzK5m\nW4TeMuD55sC8aIqw98CS4LIG3P4J033pDfMMMLqKZeyntVdT4HKm/8ufYpc7RRN9\nOgJgGftprS5c5vM/+dJEzyzFCEuHSkBywxJkKjRmhpOTd/C0iOcruwKAcMv417Zt\n/a69LO//FR+oqUSVzyZIosb0xSHXebpXW0ZIdoV5HsRmgmeZQ1M5ZmmxR1ycl6wX\nRKHiphy9sGutePAhpa/dezKlw8G53ZqivJSxVLy/cDLoSDreRFZusP29iKbi6pgn\nYPSSYQmcQPg926uAlJfY4z/C+Yy0IsBrS1QM136lNvbu/LK8uXn7hbXRGiFY9NPn\nzi9P7tL6hXX0nQKCAQEA8Al0mnQJR3we92v+PfrQereFZfylGQgiw7x860hNzEOO\nFbh1SnrbpYwTWXqygOVdLvCVNAXgPB+NLC4zy9vI60aejIj2hevpg4GBiHbydc5N\ny2duzwP+G7A5GiFTfyAF/faJplJQcR6wXP2bEEMfy96tlqT0rbWwU/tdGzhIzZ7r\n4qFD84ondBqWV0hAQcUhtP2ApT7QVasye4LtEUJpUsr3ACEgfSzSxAZomcZv7YqF\nLvihK3NQKZW+aRESovelVc15gzv6axiY3b3YBTdYLewLRuuYloqHscj6rbwFuN/P\nxzWJilp8linV8rAcEslCzRL426y4xqU/23Aip0+H3QKCAQAsWbhBdjU/z3ejrmL0\nSf9FzpQh2lklQGaNkln5wQFTQALlUONpYmq8VJX61wZgqRVyn/X0Q3NXwBz+PlHl\nbv8ONBhfh5JuZEnRk+ekdw4vRkclhHtzYKbHffdywx6spOz9HbhImHl5bHwZFe/P\nSf+uK8ZYfjFWK4Nh7yLNkUjdX3RM2UvQdZXxg6pen2ZhpzfYth3yZS2rmwuqkqtc\n2I8z6g9GnDtqdzPG7Z3KpKGkVDPjKah3Z13z4Xye11q7Msp0e2fxrxnkx0VtFJH3\nJv4k5hu5c9nUsMTyK1SWy5H+muTnzbGKy/eD340M/hD3LcBR0ObhV0Hsw6L77EIh\nUfTlAoIBAQCndHE8LycqD5Uq1tQPOSKn+c++Tnp+9AYMtzoOiep8TcSZso1g4ETL\nQOVezxIoidpwHLZ6DH9ackhyQekwlqucNy/0qrgQxXuqmnZbVV/gf4QWGppbIVXs\nywuLByTQ0u5bNdrhhRtJTzeKKAI9XhaYi0heh8WKSe4xKHLTwnhHuk6lVAurov3T\nKZkoWuc4+uWA9jkBDskYes5FDBmGqOYBNEcMeA/KQ7LlvfLLFHyRIsm28wy82z1Z\nRXYIpjhyKIHXUfkrbHROsmIyj3ZcbTe/EaTsXP+eRhZUGPmIqlrzlm/Fcbv6IRY5\nTAZNwD5VfMJ1fn7OAbkGG9Joq9oBDqKhAoIBAQCQNwtf0+Kg7kyPdK7mG2/ep8NG\nokg1ci4WJYOccTpsMk2XkTq1sWYhOBE8RqeDq7SZP0WuZyRp90RCjQoD4YM/rTBf\nzwiVOV7smMinwiEDjG/tLiP9DsQJyesOe5gXBTF34w7yacN4HsG14bAIsmagmZch\nw3spJkbSf+IKHXGj+VnKAaZQURhpyZ0vc9drg1V4AD2vVpHdCpoOrIxlmgn4Fzjb\n/6544YMLDWBhgbqa+iqpTBrEAKCFwF7LJaEOKoIPIkryh/2IhcRQjTZYsQaRqswK\njkV0aDsj6w6scBsJjVMY7Bf+/XX7hpsGxuQXncJNn/OnwV3Hl6iNmSwo3xE/\n-----END RSA PRIVATE KEY-----\n"} 2024-09-20T19:03:46.185 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout SSL certificate updated 2024-09-20T19:03:46.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:46 smithi018 bash[22763]: audit 2024-09-20T19:03:45.574336+0000 mgr.a (mgr.14152) 9 : audit [DBG] from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:46.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:46 smithi018 bash[22763]: audit 2024-09-20T19:03:45.574336+0000 mgr.a (mgr.14152) 9 : audit [DBG] from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:46.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:46 smithi018 bash[22763]: audit 2024-09-20T19:03:45.577546+0000 mon.a (mon.0) 93 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:03:46.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:46 smithi018 bash[22763]: audit 2024-09-20T19:03:45.577546+0000 mon.a (mon.0) 93 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:03:46.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:46 smithi018 bash[22763]: audit 2024-09-20T19:03:45.754973+0000 mon.a (mon.0) 94 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:03:46.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:46 smithi018 bash[22763]: audit 2024-09-20T19:03:45.754973+0000 mon.a (mon.0) 94 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:03:48.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:47 smithi018 bash[22763]: audit 2024-09-20T19:03:46.834839+0000 mon.a (mon.0) 95 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:03:48.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:47 smithi018 bash[22763]: audit 2024-09-20T19:03:46.834839+0000 mon.a (mon.0) 95 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:03:48.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:47 smithi018 bash[22763]: audit 2024-09-20T19:03:47.723307+0000 mon.a (mon.0) 96 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:03:48.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:47 smithi018 bash[22763]: audit 2024-09-20T19:03:47.723307+0000 mon.a (mon.0) 96 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:03:48.318 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2024-09-20T19:03:48.318 INFO:teuthology.orchestra.run.smithi018.stdout:Creating initial admin user... 2024-09-20T19:03:49.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:48 smithi018 bash[22763]: audit 2024-09-20T19:03:47.718015+0000 mgr.a (mgr.14152) 10 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:49.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:48 smithi018 bash[22763]: audit 2024-09-20T19:03:47.718015+0000 mgr.a (mgr.14152) 10 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:50.684 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$CpdPjOZ50m1/qPsXwFYfuu/RZtU0T99kLdy1wrwnyqwJVPDEceBeK", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726859030, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-20T19:03:50.685 INFO:teuthology.orchestra.run.smithi018.stdout:Fetching dashboard port number... 2024-09-20T19:03:51.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:51 smithi018 bash[22763]: audit 2024-09-20T19:03:49.809321+0000 mgr.a (mgr.14152) 11 : audit [DBG] from='client.14170 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:51.426 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:51 smithi018 bash[22763]: audit 2024-09-20T19:03:49.809321+0000 mgr.a (mgr.14152) 11 : audit [DBG] from='client.14170 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:03:51.426 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:51 smithi018 bash[22763]: audit 2024-09-20T19:03:50.074798+0000 mon.a (mon.0) 97 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:03:51.426 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:51 smithi018 bash[22763]: audit 2024-09-20T19:03:50.074798+0000 mon.a (mon.0) 97 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:03:52.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:52 smithi018 bash[22763]: cluster 2024-09-20T19:03:51.079356+0000 mon.a (mon.0) 98 : cluster [DBG] mgrmap e13: a(active, since 12s) 2024-09-20T19:03:52.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:52 smithi018 bash[22763]: cluster 2024-09-20T19:03:51.079356+0000 mon.a (mon.0) 98 : cluster [DBG] mgrmap e13: a(active, since 12s) 2024-09-20T19:03:52.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:52 smithi018 bash[22763]: audit 2024-09-20T19:03:52.078650+0000 mon.a (mon.0) 99 : audit [DBG] from='client.? 172.21.15.18:0/1389105354' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2024-09-20T19:03:52.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:52 smithi018 bash[22763]: audit 2024-09-20T19:03:52.078650+0000 mon.a (mon.0) 99 : audit [DBG] from='client.? 172.21.15.18:0/1389105354' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2024-09-20T19:03:52.640 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stdout 8443 2024-09-20T19:03:52.641 INFO:teuthology.orchestra.run.smithi018.stdout:firewalld does not appear to be present 2024-09-20T19:03:52.641 INFO:teuthology.orchestra.run.smithi018.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-20T19:03:52.644 INFO:teuthology.orchestra.run.smithi018.stdout:Ceph Dashboard is now available at: 2024-09-20T19:03:52.644 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:03:52.644 INFO:teuthology.orchestra.run.smithi018.stdout: URL: https://smithi018.front.sepia.ceph.com:8443/ 2024-09-20T19:03:52.644 INFO:teuthology.orchestra.run.smithi018.stdout: User: admin 2024-09-20T19:03:52.644 INFO:teuthology.orchestra.run.smithi018.stdout: Password: khws05wwiu 2024-09-20T19:03:52.644 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:03:52.645 INFO:teuthology.orchestra.run.smithi018.stdout:Saving cluster configuration to /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config directory 2024-09-20T19:03:55.246 INFO:teuthology.orchestra.run.smithi018.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-20T19:03:55.247 INFO:teuthology.orchestra.run.smithi018.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-20T19:03:55.247 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:03:55.247 INFO:teuthology.orchestra.run.smithi018.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-20T19:03:55.247 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:03:55.247 INFO:teuthology.orchestra.run.smithi018.stdout:Or, if you are only running a single cluster on this host: 2024-09-20T19:03:55.247 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:03:55.247 INFO:teuthology.orchestra.run.smithi018.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-20T19:03:55.247 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:03:55.247 INFO:teuthology.orchestra.run.smithi018.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-20T19:03:55.247 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:03:55.247 INFO:teuthology.orchestra.run.smithi018.stdout: ceph telemetry on 2024-09-20T19:03:55.247 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:03:55.248 INFO:teuthology.orchestra.run.smithi018.stdout:For more information see: 2024-09-20T19:03:55.248 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:03:55.248 INFO:teuthology.orchestra.run.smithi018.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-20T19:03:55.248 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:03:55.248 INFO:teuthology.orchestra.run.smithi018.stdout:Bootstrap complete. 2024-09-20T19:03:55.316 INFO:tasks.cephadm:Fetching config... 2024-09-20T19:03:55.317 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-20T19:03:55.317 DEBUG:teuthology.orchestra.run.smithi018:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-20T19:03:55.326 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-20T19:03:55.326 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-20T19:03:55.327 DEBUG:teuthology.orchestra.run.smithi018:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-20T19:03:55.370 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-20T19:03:55.370 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-20T19:03:55.370 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd if=/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/keyring of=/dev/stdout 2024-09-20T19:03:55.424 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-20T19:03:55.425 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-20T19:03:55.425 DEBUG:teuthology.orchestra.run.smithi018:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-20T19:03:55.470 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-20T19:03:55.470 DEBUG:teuthology.orchestra.run.smithi018:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCVjYA3/SAVgZA8tVwCoJE/jJinHDks+UIK/1TSXyKQbpqr9LGaTKKzmcg9yrHAccBaDVcpZeCDbypioDZIv+9BI7yG3pkkgcJCUf5g6sU4XaEbX/Z0PJqu6vauXESLN8jpBdsNwoBN/1ivWaym/imHgBRTNdVpvWhklHJGMeS3v4aVTB8ZUFJol5lvi01fVIdtcJJig2PW4fvIzQqtHxGLUORBqpdGjF3kDwhlC3Q69VbgphElEoAImvKamNjpPS6HCZiBCVuG9Mc0uNK8BU5gzl2J0LzsZiN1yF9YZTgKKKFEpujR+nlG9zREMqsL6k3U5LT6lex/W7ZIFFCglvKp9Bnk/dfnw4T77X1cXutX/OIfuuXmx0+paFvtS11UiqfKyzvGiLvkj5c38/7igO6BSNeNXVvt+NKP/dqmR9N3f+7VagsWwIG8kcbo6U02V57D8USPXkAka47iT/ueuOIYfWZ9RasLI0ncQNNG9FaL7BozpGwMJlFEUya45QQ1/X0= ceph-9ac321c2-7782-11ef-baf5-efdc52797490' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-20T19:03:55.533 INFO:teuthology.orchestra.run.smithi018.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCVjYA3/SAVgZA8tVwCoJE/jJinHDks+UIK/1TSXyKQbpqr9LGaTKKzmcg9yrHAccBaDVcpZeCDbypioDZIv+9BI7yG3pkkgcJCUf5g6sU4XaEbX/Z0PJqu6vauXESLN8jpBdsNwoBN/1ivWaym/imHgBRTNdVpvWhklHJGMeS3v4aVTB8ZUFJol5lvi01fVIdtcJJig2PW4fvIzQqtHxGLUORBqpdGjF3kDwhlC3Q69VbgphElEoAImvKamNjpPS6HCZiBCVuG9Mc0uNK8BU5gzl2J0LzsZiN1yF9YZTgKKKFEpujR+nlG9zREMqsL6k3U5LT6lex/W7ZIFFCglvKp9Bnk/dfnw4T77X1cXutX/OIfuuXmx0+paFvtS11UiqfKyzvGiLvkj5c38/7igO6BSNeNXVvt+NKP/dqmR9N3f+7VagsWwIG8kcbo6U02V57D8USPXkAka47iT/ueuOIYfWZ9RasLI0ncQNNG9FaL7BozpGwMJlFEUya45QQ1/X0= ceph-9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:03:55.543 DEBUG:teuthology.orchestra.run.smithi082:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCVjYA3/SAVgZA8tVwCoJE/jJinHDks+UIK/1TSXyKQbpqr9LGaTKKzmcg9yrHAccBaDVcpZeCDbypioDZIv+9BI7yG3pkkgcJCUf5g6sU4XaEbX/Z0PJqu6vauXESLN8jpBdsNwoBN/1ivWaym/imHgBRTNdVpvWhklHJGMeS3v4aVTB8ZUFJol5lvi01fVIdtcJJig2PW4fvIzQqtHxGLUORBqpdGjF3kDwhlC3Q69VbgphElEoAImvKamNjpPS6HCZiBCVuG9Mc0uNK8BU5gzl2J0LzsZiN1yF9YZTgKKKFEpujR+nlG9zREMqsL6k3U5LT6lex/W7ZIFFCglvKp9Bnk/dfnw4T77X1cXutX/OIfuuXmx0+paFvtS11UiqfKyzvGiLvkj5c38/7igO6BSNeNXVvt+NKP/dqmR9N3f+7VagsWwIG8kcbo6U02V57D8USPXkAka47iT/ueuOIYfWZ9RasLI0ncQNNG9FaL7BozpGwMJlFEUya45QQ1/X0= ceph-9ac321c2-7782-11ef-baf5-efdc52797490' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-20T19:03:55.568 INFO:teuthology.orchestra.run.smithi082.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCVjYA3/SAVgZA8tVwCoJE/jJinHDks+UIK/1TSXyKQbpqr9LGaTKKzmcg9yrHAccBaDVcpZeCDbypioDZIv+9BI7yG3pkkgcJCUf5g6sU4XaEbX/Z0PJqu6vauXESLN8jpBdsNwoBN/1ivWaym/imHgBRTNdVpvWhklHJGMeS3v4aVTB8ZUFJol5lvi01fVIdtcJJig2PW4fvIzQqtHxGLUORBqpdGjF3kDwhlC3Q69VbgphElEoAImvKamNjpPS6HCZiBCVuG9Mc0uNK8BU5gzl2J0LzsZiN1yF9YZTgKKKFEpujR+nlG9zREMqsL6k3U5LT6lex/W7ZIFFCglvKp9Bnk/dfnw4T77X1cXutX/OIfuuXmx0+paFvtS11UiqfKyzvGiLvkj5c38/7igO6BSNeNXVvt+NKP/dqmR9N3f+7VagsWwIG8kcbo6U02V57D8USPXkAka47iT/ueuOIYfWZ9RasLI0ncQNNG9FaL7BozpGwMJlFEUya45QQ1/X0= ceph-9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:03:55.577 DEBUG:teuthology.orchestra.run.smithi137:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCVjYA3/SAVgZA8tVwCoJE/jJinHDks+UIK/1TSXyKQbpqr9LGaTKKzmcg9yrHAccBaDVcpZeCDbypioDZIv+9BI7yG3pkkgcJCUf5g6sU4XaEbX/Z0PJqu6vauXESLN8jpBdsNwoBN/1ivWaym/imHgBRTNdVpvWhklHJGMeS3v4aVTB8ZUFJol5lvi01fVIdtcJJig2PW4fvIzQqtHxGLUORBqpdGjF3kDwhlC3Q69VbgphElEoAImvKamNjpPS6HCZiBCVuG9Mc0uNK8BU5gzl2J0LzsZiN1yF9YZTgKKKFEpujR+nlG9zREMqsL6k3U5LT6lex/W7ZIFFCglvKp9Bnk/dfnw4T77X1cXutX/OIfuuXmx0+paFvtS11UiqfKyzvGiLvkj5c38/7igO6BSNeNXVvt+NKP/dqmR9N3f+7VagsWwIG8kcbo6U02V57D8USPXkAka47iT/ueuOIYfWZ9RasLI0ncQNNG9FaL7BozpGwMJlFEUya45QQ1/X0= ceph-9ac321c2-7782-11ef-baf5-efdc52797490' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-20T19:03:55.600 INFO:teuthology.orchestra.run.smithi137.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCVjYA3/SAVgZA8tVwCoJE/jJinHDks+UIK/1TSXyKQbpqr9LGaTKKzmcg9yrHAccBaDVcpZeCDbypioDZIv+9BI7yG3pkkgcJCUf5g6sU4XaEbX/Z0PJqu6vauXESLN8jpBdsNwoBN/1ivWaym/imHgBRTNdVpvWhklHJGMeS3v4aVTB8ZUFJol5lvi01fVIdtcJJig2PW4fvIzQqtHxGLUORBqpdGjF3kDwhlC3Q69VbgphElEoAImvKamNjpPS6HCZiBCVuG9Mc0uNK8BU5gzl2J0LzsZiN1yF9YZTgKKKFEpujR+nlG9zREMqsL6k3U5LT6lex/W7ZIFFCglvKp9Bnk/dfnw4T77X1cXutX/OIfuuXmx0+paFvtS11UiqfKyzvGiLvkj5c38/7igO6BSNeNXVvt+NKP/dqmR9N3f+7VagsWwIG8kcbo6U02V57D8USPXkAka47iT/ueuOIYfWZ9RasLI0ncQNNG9FaL7BozpGwMJlFEUya45QQ1/X0= ceph-9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:03:55.609 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-20T19:03:55.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:55 smithi018 bash[22763]: audit 2024-09-20T19:03:54.697262+0000 mon.a (mon.0) 100 : audit [INF] from='client.? 172.21.15.18:0/1708668578' entity='client.admin' 2024-09-20T19:03:55.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:55 smithi018 bash[22763]: audit 2024-09-20T19:03:54.697262+0000 mon.a (mon.0) 100 : audit [INF] from='client.? 172.21.15.18:0/1708668578' entity='client.admin' 2024-09-20T19:03:59.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:59 smithi018 bash[22763]: audit 2024-09-20T19:03:58.108213+0000 mon.a (mon.0) 101 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:03:59.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:59 smithi018 bash[22763]: audit 2024-09-20T19:03:58.108213+0000 mon.a (mon.0) 101 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:03:59.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:59 smithi018 bash[22763]: audit 2024-09-20T19:03:58.113165+0000 mon.a (mon.0) 102 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:03:59.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:59 smithi018 bash[22763]: audit 2024-09-20T19:03:58.113165+0000 mon.a (mon.0) 102 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:03:59.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:59 smithi018 bash[22763]: audit 2024-09-20T19:03:58.114697+0000 mon.a (mon.0) 103 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi018", "name": "osd_memory_target"} : dispatch 2024-09-20T19:03:59.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:59 smithi018 bash[22763]: audit 2024-09-20T19:03:58.114697+0000 mon.a (mon.0) 103 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi018", "name": "osd_memory_target"} : dispatch 2024-09-20T19:03:59.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:59 smithi018 bash[22763]: audit 2024-09-20T19:03:58.121106+0000 mon.a (mon.0) 104 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:03:59.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:59 smithi018 bash[22763]: audit 2024-09-20T19:03:58.121106+0000 mon.a (mon.0) 104 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:03:59.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:59 smithi018 bash[22763]: audit 2024-09-20T19:03:58.137562+0000 mon.a (mon.0) 105 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:03:59.426 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:59 smithi018 bash[22763]: audit 2024-09-20T19:03:58.137562+0000 mon.a (mon.0) 105 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:03:59.426 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:59 smithi018 bash[22763]: audit 2024-09-20T19:03:58.145338+0000 mon.a (mon.0) 106 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:03:59.426 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:03:59 smithi018 bash[22763]: audit 2024-09-20T19:03:58.145338+0000 mon.a (mon.0) 106 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:00.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:00 smithi018 bash[22763]: cluster 2024-09-20T19:03:58.417517+0000 mgr.a (mgr.14152) 12 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:00.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:00 smithi018 bash[22763]: cluster 2024-09-20T19:03:58.417517+0000 mgr.a (mgr.14152) 12 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:01.158 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:04:02.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:02 smithi018 bash[22763]: cluster 2024-09-20T19:04:00.417959+0000 mgr.a (mgr.14152) 13 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:02.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:02 smithi018 bash[22763]: cluster 2024-09-20T19:04:00.417959+0000 mgr.a (mgr.14152) 13 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:03.210 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-20T19:04:03.211 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-20T19:04:03.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:03 smithi018 bash[22763]: cluster 2024-09-20T19:04:02.418288+0000 mgr.a (mgr.14152) 14 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:03.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:03 smithi018 bash[22763]: cluster 2024-09-20T19:04:02.418288+0000 mgr.a (mgr.14152) 14 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:03.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:03 smithi018 bash[22763]: audit 2024-09-20T19:04:02.556946+0000 mon.a (mon.0) 107 : audit [INF] from='client.? 172.21.15.18:0/205576530' entity='client.admin' 2024-09-20T19:04:03.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:03 smithi018 bash[22763]: audit 2024-09-20T19:04:02.556946+0000 mon.a (mon.0) 107 : audit [INF] from='client.? 172.21.15.18:0/205576530' entity='client.admin' 2024-09-20T19:04:03.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:03 smithi018 bash[22763]: audit 2024-09-20T19:04:02.574280+0000 mon.a (mon.0) 108 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:04:03.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:03 smithi018 bash[22763]: audit 2024-09-20T19:04:02.574280+0000 mon.a (mon.0) 108 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:04:03.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:03 smithi018 bash[22763]: audit 2024-09-20T19:04:02.579222+0000 mon.a (mon.0) 109 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:03.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:03 smithi018 bash[22763]: audit 2024-09-20T19:04:02.579222+0000 mon.a (mon.0) 109 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:05.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:05 smithi018 bash[22763]: cluster 2024-09-20T19:04:04.418635+0000 mgr.a (mgr.14152) 15 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:05.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:05 smithi018 bash[22763]: cluster 2024-09-20T19:04:04.418635+0000 mgr.a (mgr.14152) 15 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:07.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:07 smithi018 bash[22763]: cluster 2024-09-20T19:04:06.419073+0000 mgr.a (mgr.14152) 16 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:07.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:07 smithi018 bash[22763]: cluster 2024-09-20T19:04:06.419073+0000 mgr.a (mgr.14152) 16 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:07.945 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:04:09.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:09 smithi018 bash[22763]: cluster 2024-09-20T19:04:08.419517+0000 mgr.a (mgr.14152) 17 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:09.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:09 smithi018 bash[22763]: cluster 2024-09-20T19:04:08.419517+0000 mgr.a (mgr.14152) 17 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:09.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:09 smithi018 bash[22763]: audit 2024-09-20T19:04:09.345150+0000 mon.a (mon.0) 110 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:09.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:09 smithi018 bash[22763]: audit 2024-09-20T19:04:09.345150+0000 mon.a (mon.0) 110 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:09.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:09 smithi018 bash[22763]: audit 2024-09-20T19:04:09.346411+0000 mon.a (mon.0) 111 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:04:09.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:09 smithi018 bash[22763]: audit 2024-09-20T19:04:09.346411+0000 mon.a (mon.0) 111 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:04:09.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:09 smithi018 bash[22763]: audit 2024-09-20T19:04:09.349017+0000 mon.a (mon.0) 112 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:04:09.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:09 smithi018 bash[22763]: audit 2024-09-20T19:04:09.349017+0000 mon.a (mon.0) 112 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:04:09.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:09 smithi018 bash[22763]: audit 2024-09-20T19:04:09.350211+0000 mon.a (mon.0) 113 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:04:09.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:09 smithi018 bash[22763]: audit 2024-09-20T19:04:09.350211+0000 mon.a (mon.0) 113 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:04:10.052 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi082 2024-09-20T19:04:10.052 DEBUG:teuthology.orchestra.run.smithi082:> set -ex 2024-09-20T19:04:10.052 DEBUG:teuthology.orchestra.run.smithi082:> dd of=/etc/ceph/ceph.conf 2024-09-20T19:04:10.059 DEBUG:teuthology.orchestra.run.smithi082:> set -ex 2024-09-20T19:04:10.059 DEBUG:teuthology.orchestra.run.smithi082:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-20T19:04:10.108 INFO:tasks.cephadm:Adding host smithi082 to orchestrator... 2024-09-20T19:04:10.108 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph orch host add smithi082 2024-09-20T19:04:11.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:10 smithi018 bash[22763]: audit 2024-09-20T19:04:09.340283+0000 mgr.a (mgr.14152) 18 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:04:11.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:10 smithi018 bash[22763]: audit 2024-09-20T19:04:09.340283+0000 mgr.a (mgr.14152) 18 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:04:11.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:10 smithi018 bash[22763]: cephadm 2024-09-20T19:04:09.351708+0000 mgr.a (mgr.14152) 19 : cephadm [INF] Updating smithi018:/etc/ceph/ceph.conf 2024-09-20T19:04:11.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:10 smithi018 bash[22763]: cephadm 2024-09-20T19:04:09.351708+0000 mgr.a (mgr.14152) 19 : cephadm [INF] Updating smithi018:/etc/ceph/ceph.conf 2024-09-20T19:04:11.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:10 smithi018 bash[22763]: cephadm 2024-09-20T19:04:09.420018+0000 mgr.a (mgr.14152) 20 : cephadm [INF] Updating smithi018:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:04:11.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:10 smithi018 bash[22763]: cephadm 2024-09-20T19:04:09.420018+0000 mgr.a (mgr.14152) 20 : cephadm [INF] Updating smithi018:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:04:11.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:10 smithi018 bash[22763]: cephadm 2024-09-20T19:04:09.481838+0000 mgr.a (mgr.14152) 21 : cephadm [INF] Updating smithi018:/etc/ceph/ceph.client.admin.keyring 2024-09-20T19:04:11.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:10 smithi018 bash[22763]: cephadm 2024-09-20T19:04:09.481838+0000 mgr.a (mgr.14152) 21 : cephadm [INF] Updating smithi018:/etc/ceph/ceph.client.admin.keyring 2024-09-20T19:04:11.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:10 smithi018 bash[22763]: cephadm 2024-09-20T19:04:09.545423+0000 mgr.a (mgr.14152) 22 : cephadm [INF] Updating smithi018:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.client.admin.keyring 2024-09-20T19:04:11.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:10 smithi018 bash[22763]: cephadm 2024-09-20T19:04:09.545423+0000 mgr.a (mgr.14152) 22 : cephadm [INF] Updating smithi018:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.client.admin.keyring 2024-09-20T19:04:11.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:10 smithi018 bash[22763]: audit 2024-09-20T19:04:09.712370+0000 mon.a (mon.0) 114 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:11.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:10 smithi018 bash[22763]: audit 2024-09-20T19:04:09.712370+0000 mon.a (mon.0) 114 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:11.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:10 smithi018 bash[22763]: audit 2024-09-20T19:04:09.716415+0000 mon.a (mon.0) 115 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:11.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:10 smithi018 bash[22763]: audit 2024-09-20T19:04:09.716415+0000 mon.a (mon.0) 115 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:11.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:10 smithi018 bash[22763]: audit 2024-09-20T19:04:09.720716+0000 mon.a (mon.0) 116 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:11.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:10 smithi018 bash[22763]: audit 2024-09-20T19:04:09.720716+0000 mon.a (mon.0) 116 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:12.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:11 smithi018 bash[22763]: cluster 2024-09-20T19:04:10.419953+0000 mgr.a (mgr.14152) 23 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:12.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:11 smithi018 bash[22763]: cluster 2024-09-20T19:04:10.419953+0000 mgr.a (mgr.14152) 23 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:14.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:13 smithi018 bash[22763]: cluster 2024-09-20T19:04:12.420358+0000 mgr.a (mgr.14152) 24 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:14.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:13 smithi018 bash[22763]: cluster 2024-09-20T19:04:12.420358+0000 mgr.a (mgr.14152) 24 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:14.846 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:04:16.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:15 smithi018 bash[22763]: cluster 2024-09-20T19:04:14.420790+0000 mgr.a (mgr.14152) 25 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:16.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:15 smithi018 bash[22763]: cluster 2024-09-20T19:04:14.420790+0000 mgr.a (mgr.14152) 25 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:18.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:17 smithi018 bash[22763]: audit 2024-09-20T19:04:16.266366+0000 mgr.a (mgr.14152) 26 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi082", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:04:18.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:17 smithi018 bash[22763]: audit 2024-09-20T19:04:16.266366+0000 mgr.a (mgr.14152) 26 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi082", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:04:18.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:17 smithi018 bash[22763]: cluster 2024-09-20T19:04:16.421053+0000 mgr.a (mgr.14152) 27 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:18.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:17 smithi018 bash[22763]: cluster 2024-09-20T19:04:16.421053+0000 mgr.a (mgr.14152) 27 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:19.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:18 smithi018 bash[22763]: cephadm 2024-09-20T19:04:17.502587+0000 mgr.a (mgr.14152) 28 : cephadm [INF] Deploying cephadm binary to smithi082 2024-09-20T19:04:19.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:18 smithi018 bash[22763]: cephadm 2024-09-20T19:04:17.502587+0000 mgr.a (mgr.14152) 28 : cephadm [INF] Deploying cephadm binary to smithi082 2024-09-20T19:04:20.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:19 smithi018 bash[22763]: cluster 2024-09-20T19:04:18.421411+0000 mgr.a (mgr.14152) 29 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:20.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:19 smithi018 bash[22763]: cluster 2024-09-20T19:04:18.421411+0000 mgr.a (mgr.14152) 29 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:21.128 INFO:teuthology.orchestra.run.smithi018.stdout:Added host 'smithi082' with addr '172.21.15.82' 2024-09-20T19:04:21.809 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph orch host ls --format=json 2024-09-20T19:04:22.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:22 smithi018 bash[22763]: cluster 2024-09-20T19:04:20.421664+0000 mgr.a (mgr.14152) 30 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:22.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:22 smithi018 bash[22763]: cluster 2024-09-20T19:04:20.421664+0000 mgr.a (mgr.14152) 30 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:22.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:22 smithi018 bash[22763]: audit 2024-09-20T19:04:21.122046+0000 mon.a (mon.0) 117 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:22.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:22 smithi018 bash[22763]: audit 2024-09-20T19:04:21.122046+0000 mon.a (mon.0) 117 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:22.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:22 smithi018 bash[22763]: cephadm 2024-09-20T19:04:21.122966+0000 mgr.a (mgr.14152) 31 : cephadm [INF] Added host smithi082 2024-09-20T19:04:22.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:22 smithi018 bash[22763]: cephadm 2024-09-20T19:04:21.122966+0000 mgr.a (mgr.14152) 31 : cephadm [INF] Added host smithi082 2024-09-20T19:04:22.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:22 smithi018 bash[22763]: audit 2024-09-20T19:04:21.123874+0000 mon.a (mon.0) 118 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:04:22.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:22 smithi018 bash[22763]: audit 2024-09-20T19:04:21.123874+0000 mon.a (mon.0) 118 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:04:22.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:22 smithi018 bash[22763]: audit 2024-09-20T19:04:21.612577+0000 mon.a (mon.0) 119 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:22.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:22 smithi018 bash[22763]: audit 2024-09-20T19:04:21.612577+0000 mon.a (mon.0) 119 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:24.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:24 smithi018 bash[22763]: cluster 2024-09-20T19:04:22.422041+0000 mgr.a (mgr.14152) 32 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:24.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:24 smithi018 bash[22763]: cluster 2024-09-20T19:04:22.422041+0000 mgr.a (mgr.14152) 32 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:24.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:24 smithi018 bash[22763]: audit 2024-09-20T19:04:23.122546+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:24.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:24 smithi018 bash[22763]: audit 2024-09-20T19:04:23.122546+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:25.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:25 smithi018 bash[22763]: cluster 2024-09-20T19:04:24.422466+0000 mgr.a (mgr.14152) 33 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:25.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:25 smithi018 bash[22763]: cluster 2024-09-20T19:04:24.422466+0000 mgr.a (mgr.14152) 33 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:25.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:25 smithi018 bash[22763]: audit 2024-09-20T19:04:24.512605+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:25.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:25 smithi018 bash[22763]: audit 2024-09-20T19:04:24.512605+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:26.542 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:04:27.828 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:04:27.828 INFO:teuthology.orchestra.run.smithi018.stdout:[{"addr": "172.21.15.18", "hostname": "smithi018", "labels": [], "status": ""}, {"addr": "172.21.15.82", "hostname": "smithi082", "labels": [], "status": ""}] 2024-09-20T19:04:27.840 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:27 smithi018 bash[22763]: cluster 2024-09-20T19:04:26.422904+0000 mgr.a (mgr.14152) 34 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:27.840 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:27 smithi018 bash[22763]: cluster 2024-09-20T19:04:26.422904+0000 mgr.a (mgr.14152) 34 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:28.426 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi137 2024-09-20T19:04:28.427 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-09-20T19:04:28.427 DEBUG:teuthology.orchestra.run.smithi137:> dd of=/etc/ceph/ceph.conf 2024-09-20T19:04:28.433 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-09-20T19:04:28.433 DEBUG:teuthology.orchestra.run.smithi137:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-20T19:04:28.479 INFO:tasks.cephadm:Adding host smithi137 to orchestrator... 2024-09-20T19:04:28.480 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph orch host add smithi137 2024-09-20T19:04:28.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:28 smithi018 bash[22763]: audit 2024-09-20T19:04:27.823250+0000 mgr.a (mgr.14152) 35 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:04:28.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:28 smithi018 bash[22763]: audit 2024-09-20T19:04:27.823250+0000 mgr.a (mgr.14152) 35 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:04:29.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:29 smithi018 bash[22763]: cluster 2024-09-20T19:04:28.423296+0000 mgr.a (mgr.14152) 36 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:29.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:29 smithi018 bash[22763]: cluster 2024-09-20T19:04:28.423296+0000 mgr.a (mgr.14152) 36 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:31.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: audit 2024-09-20T19:04:30.351717+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:31.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: audit 2024-09-20T19:04:30.351717+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:31.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: audit 2024-09-20T19:04:30.356816+0000 mon.a (mon.0) 123 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:31.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: audit 2024-09-20T19:04:30.356816+0000 mon.a (mon.0) 123 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:31.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: audit 2024-09-20T19:04:30.362646+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:31.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: audit 2024-09-20T19:04:30.362646+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:31.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: audit 2024-09-20T19:04:30.367654+0000 mon.a (mon.0) 125 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:31.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: audit 2024-09-20T19:04:30.367654+0000 mon.a (mon.0) 125 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:31.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: audit 2024-09-20T19:04:30.369350+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi082", "name": "osd_memory_target"} : dispatch 2024-09-20T19:04:31.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: audit 2024-09-20T19:04:30.369350+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi082", "name": "osd_memory_target"} : dispatch 2024-09-20T19:04:31.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: audit 2024-09-20T19:04:30.371754+0000 mon.a (mon.0) 127 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:04:31.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: audit 2024-09-20T19:04:30.371754+0000 mon.a (mon.0) 127 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:04:31.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: audit 2024-09-20T19:04:30.373527+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:04:31.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: audit 2024-09-20T19:04:30.373527+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:04:31.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: cephadm 2024-09-20T19:04:30.375991+0000 mgr.a (mgr.14152) 37 : cephadm [INF] Updating smithi082:/etc/ceph/ceph.conf 2024-09-20T19:04:31.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: cephadm 2024-09-20T19:04:30.375991+0000 mgr.a (mgr.14152) 37 : cephadm [INF] Updating smithi082:/etc/ceph/ceph.conf 2024-09-20T19:04:31.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: cluster 2024-09-20T19:04:30.423671+0000 mgr.a (mgr.14152) 38 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:31.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: cluster 2024-09-20T19:04:30.423671+0000 mgr.a (mgr.14152) 38 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:31.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: cephadm 2024-09-20T19:04:30.492497+0000 mgr.a (mgr.14152) 39 : cephadm [INF] Updating smithi082:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:04:31.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: cephadm 2024-09-20T19:04:30.492497+0000 mgr.a (mgr.14152) 39 : cephadm [INF] Updating smithi082:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:04:31.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: cephadm 2024-09-20T19:04:30.595009+0000 mgr.a (mgr.14152) 40 : cephadm [INF] Updating smithi082:/etc/ceph/ceph.client.admin.keyring 2024-09-20T19:04:31.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: cephadm 2024-09-20T19:04:30.595009+0000 mgr.a (mgr.14152) 40 : cephadm [INF] Updating smithi082:/etc/ceph/ceph.client.admin.keyring 2024-09-20T19:04:31.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: cephadm 2024-09-20T19:04:30.690583+0000 mgr.a (mgr.14152) 41 : cephadm [INF] Updating smithi082:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.client.admin.keyring 2024-09-20T19:04:31.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: cephadm 2024-09-20T19:04:30.690583+0000 mgr.a (mgr.14152) 41 : cephadm [INF] Updating smithi082:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.client.admin.keyring 2024-09-20T19:04:31.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: audit 2024-09-20T19:04:30.787723+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:31.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: audit 2024-09-20T19:04:30.787723+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:31.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: audit 2024-09-20T19:04:30.791685+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:31.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: audit 2024-09-20T19:04:30.791685+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:31.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: audit 2024-09-20T19:04:30.796160+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:31.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:31 smithi018 bash[22763]: audit 2024-09-20T19:04:30.796160+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:33.209 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:04:33.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:33 smithi018 bash[22763]: cluster 2024-09-20T19:04:32.424074+0000 mgr.a (mgr.14152) 42 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:33.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:33 smithi018 bash[22763]: cluster 2024-09-20T19:04:32.424074+0000 mgr.a (mgr.14152) 42 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:35.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:35 smithi018 bash[22763]: cluster 2024-09-20T19:04:34.424407+0000 mgr.a (mgr.14152) 43 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:35.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:35 smithi018 bash[22763]: cluster 2024-09-20T19:04:34.424407+0000 mgr.a (mgr.14152) 43 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:35.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:35 smithi018 bash[22763]: audit 2024-09-20T19:04:34.655496+0000 mgr.a (mgr.14152) 44 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi137", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:04:35.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:35 smithi018 bash[22763]: audit 2024-09-20T19:04:34.655496+0000 mgr.a (mgr.14152) 44 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi137", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:04:36.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:36 smithi018 bash[22763]: cephadm 2024-09-20T19:04:35.983210+0000 mgr.a (mgr.14152) 45 : cephadm [INF] Deploying cephadm binary to smithi137 2024-09-20T19:04:36.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:36 smithi018 bash[22763]: cephadm 2024-09-20T19:04:35.983210+0000 mgr.a (mgr.14152) 45 : cephadm [INF] Deploying cephadm binary to smithi137 2024-09-20T19:04:37.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:37 smithi018 bash[22763]: cluster 2024-09-20T19:04:36.424785+0000 mgr.a (mgr.14152) 46 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:37.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:37 smithi018 bash[22763]: cluster 2024-09-20T19:04:36.424785+0000 mgr.a (mgr.14152) 46 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:39.645 INFO:teuthology.orchestra.run.smithi018.stdout:Added host 'smithi137' with addr '172.21.15.137' 2024-09-20T19:04:39.906 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:39 smithi018 bash[22763]: cluster 2024-09-20T19:04:38.425061+0000 mgr.a (mgr.14152) 47 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:39.906 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:39 smithi018 bash[22763]: cluster 2024-09-20T19:04:38.425061+0000 mgr.a (mgr.14152) 47 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:40.306 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph orch host ls --format=json 2024-09-20T19:04:40.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:40 smithi018 bash[22763]: audit 2024-09-20T19:04:39.639691+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:40.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:40 smithi018 bash[22763]: audit 2024-09-20T19:04:39.639691+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:40.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:40 smithi018 bash[22763]: cephadm 2024-09-20T19:04:39.640537+0000 mgr.a (mgr.14152) 48 : cephadm [INF] Added host smithi137 2024-09-20T19:04:40.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:40 smithi018 bash[22763]: cephadm 2024-09-20T19:04:39.640537+0000 mgr.a (mgr.14152) 48 : cephadm [INF] Added host smithi137 2024-09-20T19:04:40.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:40 smithi018 bash[22763]: audit 2024-09-20T19:04:39.641343+0000 mon.a (mon.0) 133 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:04:40.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:40 smithi018 bash[22763]: audit 2024-09-20T19:04:39.641343+0000 mon.a (mon.0) 133 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:04:40.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:40 smithi018 bash[22763]: audit 2024-09-20T19:04:40.138802+0000 mon.a (mon.0) 134 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:40.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:40 smithi018 bash[22763]: audit 2024-09-20T19:04:40.138802+0000 mon.a (mon.0) 134 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:42.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:42 smithi018 bash[22763]: cluster 2024-09-20T19:04:40.425354+0000 mgr.a (mgr.14152) 49 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:42.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:42 smithi018 bash[22763]: cluster 2024-09-20T19:04:40.425354+0000 mgr.a (mgr.14152) 49 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:42.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:42 smithi018 bash[22763]: audit 2024-09-20T19:04:41.650477+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:42.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:42 smithi018 bash[22763]: audit 2024-09-20T19:04:41.650477+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:44.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:43 smithi018 bash[22763]: cluster 2024-09-20T19:04:42.425627+0000 mgr.a (mgr.14152) 50 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:44.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:43 smithi018 bash[22763]: cluster 2024-09-20T19:04:42.425627+0000 mgr.a (mgr.14152) 50 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:44.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:43 smithi018 bash[22763]: audit 2024-09-20T19:04:42.895299+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:44.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:43 smithi018 bash[22763]: audit 2024-09-20T19:04:42.895299+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:45.039 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:04:46.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:45 smithi018 bash[22763]: cluster 2024-09-20T19:04:44.425931+0000 mgr.a (mgr.14152) 51 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:46.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:45 smithi018 bash[22763]: cluster 2024-09-20T19:04:44.425931+0000 mgr.a (mgr.14152) 51 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:46.460 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:04:46.460 INFO:teuthology.orchestra.run.smithi018.stdout:[{"addr": "172.21.15.18", "hostname": "smithi018", "labels": [], "status": ""}, {"addr": "172.21.15.82", "hostname": "smithi082", "labels": [], "status": ""}, {"addr": "172.21.15.137", "hostname": "smithi137", "labels": [], "status": ""}] 2024-09-20T19:04:47.052 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-20T19:04:47.052 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph osd crush tunables default 2024-09-20T19:04:48.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:47 smithi018 bash[22763]: cluster 2024-09-20T19:04:46.426409+0000 mgr.a (mgr.14152) 52 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:48.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:47 smithi018 bash[22763]: cluster 2024-09-20T19:04:46.426409+0000 mgr.a (mgr.14152) 52 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:48.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:47 smithi018 bash[22763]: audit 2024-09-20T19:04:46.455681+0000 mgr.a (mgr.14152) 53 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:04:48.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:47 smithi018 bash[22763]: audit 2024-09-20T19:04:46.455681+0000 mgr.a (mgr.14152) 53 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:04:49.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: audit 2024-09-20T19:04:48.375796+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:49.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: audit 2024-09-20T19:04:48.375796+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:49.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: audit 2024-09-20T19:04:48.380951+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:49.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: audit 2024-09-20T19:04:48.380951+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:49.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: audit 2024-09-20T19:04:48.386808+0000 mon.a (mon.0) 139 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:49.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: audit 2024-09-20T19:04:48.386808+0000 mon.a (mon.0) 139 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:49.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: audit 2024-09-20T19:04:48.391811+0000 mon.a (mon.0) 140 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:49.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: audit 2024-09-20T19:04:48.391811+0000 mon.a (mon.0) 140 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:49.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: audit 2024-09-20T19:04:48.393527+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi137", "name": "osd_memory_target"} : dispatch 2024-09-20T19:04:49.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: audit 2024-09-20T19:04:48.393527+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi137", "name": "osd_memory_target"} : dispatch 2024-09-20T19:04:49.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: audit 2024-09-20T19:04:48.395625+0000 mon.a (mon.0) 142 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:04:49.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: audit 2024-09-20T19:04:48.395625+0000 mon.a (mon.0) 142 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:04:49.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: audit 2024-09-20T19:04:48.397660+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:04:49.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: audit 2024-09-20T19:04:48.397660+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:04:49.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: cephadm 2024-09-20T19:04:48.400462+0000 mgr.a (mgr.14152) 54 : cephadm [INF] Updating smithi137:/etc/ceph/ceph.conf 2024-09-20T19:04:49.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: cephadm 2024-09-20T19:04:48.400462+0000 mgr.a (mgr.14152) 54 : cephadm [INF] Updating smithi137:/etc/ceph/ceph.conf 2024-09-20T19:04:49.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: cluster 2024-09-20T19:04:48.426824+0000 mgr.a (mgr.14152) 55 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:49.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: cluster 2024-09-20T19:04:48.426824+0000 mgr.a (mgr.14152) 55 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:49.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: cephadm 2024-09-20T19:04:48.518425+0000 mgr.a (mgr.14152) 56 : cephadm [INF] Updating smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:04:49.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: cephadm 2024-09-20T19:04:48.518425+0000 mgr.a (mgr.14152) 56 : cephadm [INF] Updating smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:04:49.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: cephadm 2024-09-20T19:04:48.623244+0000 mgr.a (mgr.14152) 57 : cephadm [INF] Updating smithi137:/etc/ceph/ceph.client.admin.keyring 2024-09-20T19:04:49.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: cephadm 2024-09-20T19:04:48.623244+0000 mgr.a (mgr.14152) 57 : cephadm [INF] Updating smithi137:/etc/ceph/ceph.client.admin.keyring 2024-09-20T19:04:49.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: cephadm 2024-09-20T19:04:48.719899+0000 mgr.a (mgr.14152) 58 : cephadm [INF] Updating smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.client.admin.keyring 2024-09-20T19:04:49.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: cephadm 2024-09-20T19:04:48.719899+0000 mgr.a (mgr.14152) 58 : cephadm [INF] Updating smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.client.admin.keyring 2024-09-20T19:04:49.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: audit 2024-09-20T19:04:48.818043+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:49.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: audit 2024-09-20T19:04:48.818043+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:49.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: audit 2024-09-20T19:04:48.823395+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:49.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: audit 2024-09-20T19:04:48.823395+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:49.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: audit 2024-09-20T19:04:48.829221+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:49.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:49 smithi018 bash[22763]: audit 2024-09-20T19:04:48.829221+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:51.786 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:04:51.876 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:51 smithi018 bash[22763]: cluster 2024-09-20T19:04:50.427247+0000 mgr.a (mgr.14152) 59 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:51.877 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:51 smithi018 bash[22763]: cluster 2024-09-20T19:04:50.427247+0000 mgr.a (mgr.14152) 59 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:53.491 INFO:teuthology.orchestra.run.smithi018.stderr:adjusted tunables profile to default 2024-09-20T19:04:53.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:53 smithi018 bash[22763]: cluster 2024-09-20T19:04:52.427683+0000 mgr.a (mgr.14152) 60 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:53.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:53 smithi018 bash[22763]: cluster 2024-09-20T19:04:52.427683+0000 mgr.a (mgr.14152) 60 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:53.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:53 smithi018 bash[22763]: audit 2024-09-20T19:04:53.142813+0000 mon.a (mon.0) 147 : audit [INF] from='client.? 172.21.15.18:0/1012232505' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-20T19:04:53.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:53 smithi018 bash[22763]: audit 2024-09-20T19:04:53.142813+0000 mon.a (mon.0) 147 : audit [INF] from='client.? 172.21.15.18:0/1012232505' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-20T19:04:54.153 INFO:tasks.cephadm:Adding mon.a on smithi018 2024-09-20T19:04:54.153 INFO:tasks.cephadm:Adding mon.b on smithi082 2024-09-20T19:04:54.154 INFO:tasks.cephadm:Adding mon.c on smithi137 2024-09-20T19:04:54.154 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph orch apply mon '3;smithi018:172.21.15.18=a;smithi082:172.21.15.82=b;smithi137:172.21.15.137=c' 2024-09-20T19:04:54.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:54 smithi018 bash[22763]: audit 2024-09-20T19:04:53.486750+0000 mon.a (mon.0) 148 : audit [INF] from='client.? 172.21.15.18:0/1012232505' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-20T19:04:54.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:54 smithi018 bash[22763]: audit 2024-09-20T19:04:53.486750+0000 mon.a (mon.0) 148 : audit [INF] from='client.? 172.21.15.18:0/1012232505' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-20T19:04:54.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:54 smithi018 bash[22763]: cluster 2024-09-20T19:04:53.490743+0000 mon.a (mon.0) 149 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:04:54.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:54 smithi018 bash[22763]: cluster 2024-09-20T19:04:53.490743+0000 mon.a (mon.0) 149 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:04:55.383 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:04:55.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:55 smithi018 bash[22763]: cluster 2024-09-20T19:04:54.428075+0000 mgr.a (mgr.14152) 61 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:55.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:55 smithi018 bash[22763]: cluster 2024-09-20T19:04:54.428075+0000 mgr.a (mgr.14152) 61 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:56.761 INFO:teuthology.orchestra.run.smithi137.stdout:Scheduled mon update... 2024-09-20T19:04:57.333 DEBUG:teuthology.orchestra.run.smithi082:mon.b> sudo journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mon.b.service 2024-09-20T19:04:57.335 DEBUG:teuthology.orchestra.run.smithi137:mon.c> sudo journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mon.c.service 2024-09-20T19:04:57.338 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-20T19:04:57.338 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph mon dump -f json 2024-09-20T19:04:58.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:57 smithi018 bash[22763]: cluster 2024-09-20T19:04:56.428422+0000 mgr.a (mgr.14152) 62 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:58.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:57 smithi018 bash[22763]: cluster 2024-09-20T19:04:56.428422+0000 mgr.a (mgr.14152) 62 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:04:58.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:57 smithi018 bash[22763]: audit 2024-09-20T19:04:56.746547+0000 mgr.a (mgr.14152) 63 : audit [DBG] from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi018:172.21.15.18=a;smithi082:172.21.15.82=b;smithi137:172.21.15.137=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:04:58.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:57 smithi018 bash[22763]: audit 2024-09-20T19:04:56.746547+0000 mgr.a (mgr.14152) 63 : audit [DBG] from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi018:172.21.15.18=a;smithi082:172.21.15.82=b;smithi137:172.21.15.137=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:04:58.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:57 smithi018 bash[22763]: cephadm 2024-09-20T19:04:56.751648+0000 mgr.a (mgr.14152) 64 : cephadm [INF] Saving service mon spec with placement smithi018:172.21.15.18=a;smithi082:172.21.15.82=b;smithi137:172.21.15.137=c;count:3 2024-09-20T19:04:58.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:57 smithi018 bash[22763]: cephadm 2024-09-20T19:04:56.751648+0000 mgr.a (mgr.14152) 64 : cephadm [INF] Saving service mon spec with placement smithi018:172.21.15.18=a;smithi082:172.21.15.82=b;smithi137:172.21.15.137=c;count:3 2024-09-20T19:04:58.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:57 smithi018 bash[22763]: audit 2024-09-20T19:04:56.756706+0000 mon.a (mon.0) 150 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:58.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:57 smithi018 bash[22763]: audit 2024-09-20T19:04:56.756706+0000 mon.a (mon.0) 150 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:58.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:57 smithi018 bash[22763]: audit 2024-09-20T19:04:56.758402+0000 mon.a (mon.0) 151 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:04:58.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:57 smithi018 bash[22763]: audit 2024-09-20T19:04:56.758402+0000 mon.a (mon.0) 151 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:04:58.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:57 smithi018 bash[22763]: audit 2024-09-20T19:04:57.409938+0000 mon.a (mon.0) 152 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:04:58.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:57 smithi018 bash[22763]: audit 2024-09-20T19:04:57.409938+0000 mon.a (mon.0) 152 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:04:58.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:57 smithi018 bash[22763]: audit 2024-09-20T19:04:57.411306+0000 mon.a (mon.0) 153 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:04:58.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:57 smithi018 bash[22763]: audit 2024-09-20T19:04:57.411306+0000 mon.a (mon.0) 153 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:04:58.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:57 smithi018 bash[22763]: audit 2024-09-20T19:04:57.418535+0000 mon.a (mon.0) 154 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:58.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:57 smithi018 bash[22763]: audit 2024-09-20T19:04:57.418535+0000 mon.a (mon.0) 154 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:04:58.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:57 smithi018 bash[22763]: audit 2024-09-20T19:04:57.421023+0000 mon.a (mon.0) 155 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:04:58.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:57 smithi018 bash[22763]: audit 2024-09-20T19:04:57.421023+0000 mon.a (mon.0) 155 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:04:58.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:57 smithi018 bash[22763]: audit 2024-09-20T19:04:57.422313+0000 mon.a (mon.0) 156 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:04:58.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:57 smithi018 bash[22763]: audit 2024-09-20T19:04:57.422313+0000 mon.a (mon.0) 156 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:04:58.608 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:04:59.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:58 smithi018 bash[22763]: cephadm 2024-09-20T19:04:57.423663+0000 mgr.a (mgr.14152) 65 : cephadm [INF] Deploying daemon mon.c on smithi137 2024-09-20T19:04:59.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:58 smithi018 bash[22763]: cephadm 2024-09-20T19:04:57.423663+0000 mgr.a (mgr.14152) 65 : cephadm [INF] Deploying daemon mon.c on smithi137 2024-09-20T19:05:00.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:59 smithi018 bash[22763]: cluster 2024-09-20T19:04:58.428808+0000 mgr.a (mgr.14152) 66 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:00.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:04:59 smithi018 bash[22763]: cluster 2024-09-20T19:04:58.428808+0000 mgr.a (mgr.14152) 66 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:00.407 INFO:teuthology.orchestra.run.smithi137.stderr:dumped monmap epoch 1 2024-09-20T19:05:00.407 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-09-20T19:05:00.408 INFO:teuthology.orchestra.run.smithi137.stdout:{"epoch":1,"fsid":"9ac321c2-7782-11ef-baf5-efdc52797490","modified":"2024-09-20T19:02:27.869950Z","created":"2024-09-20T19:02:27.869950Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:3300","nonce":0},{"type":"v1","addr":"172.21.15.18:6789","nonce":0}]},"addr":"172.21.15.18:6789/0","public_addr":"172.21.15.18:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-20T19:05:01.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:00 smithi018 bash[22763]: audit 2024-09-20T19:05:00.403207+0000 mon.a (mon.0) 157 : audit [DBG] from='client.? 172.21.15.137:0/2986067736' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-20T19:05:01.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:00 smithi018 bash[22763]: audit 2024-09-20T19:05:00.403207+0000 mon.a (mon.0) 157 : audit [DBG] from='client.? 172.21.15.137:0/2986067736' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-20T19:05:02.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:01 smithi018 bash[22763]: cluster 2024-09-20T19:05:00.429221+0000 mgr.a (mgr.14152) 67 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:02.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:01 smithi018 bash[22763]: cluster 2024-09-20T19:05:00.429221+0000 mgr.a (mgr.14152) 67 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:02.257 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-20T19:05:02.257 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph mon dump -f json 2024-09-20T19:05:03.486 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.c/config 2024-09-20T19:05:04.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:03 smithi018 bash[22763]: cluster 2024-09-20T19:05:02.429618+0000 mgr.a (mgr.14152) 68 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:04.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:03 smithi018 bash[22763]: cluster 2024-09-20T19:05:02.429618+0000 mgr.a (mgr.14152) 68 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:04.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:03 smithi018 bash[22763]: audit 2024-09-20T19:05:03.368012+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:04.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:03 smithi018 bash[22763]: audit 2024-09-20T19:05:03.368012+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:04.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:03 smithi018 bash[22763]: audit 2024-09-20T19:05:03.373505+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:04.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:03 smithi018 bash[22763]: audit 2024-09-20T19:05:03.373505+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:04.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:03 smithi018 bash[22763]: audit 2024-09-20T19:05:03.379347+0000 mon.a (mon.0) 160 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:04.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:03 smithi018 bash[22763]: audit 2024-09-20T19:05:03.379347+0000 mon.a (mon.0) 160 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:04.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:03 smithi018 bash[22763]: audit 2024-09-20T19:05:03.380750+0000 mon.a (mon.0) 161 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:04.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:03 smithi018 bash[22763]: audit 2024-09-20T19:05:03.380750+0000 mon.a (mon.0) 161 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:04.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:03 smithi018 bash[22763]: audit 2024-09-20T19:05:03.382790+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:04.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:03 smithi018 bash[22763]: audit 2024-09-20T19:05:03.382790+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:05.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:04 smithi018 bash[22763]: cephadm 2024-09-20T19:05:03.384961+0000 mgr.a (mgr.14152) 69 : cephadm [INF] Deploying daemon mon.b on smithi082 2024-09-20T19:05:05.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:04 smithi018 bash[22763]: cephadm 2024-09-20T19:05:03.384961+0000 mgr.a (mgr.14152) 69 : cephadm [INF] Deploying daemon mon.b on smithi082 2024-09-20T19:05:05.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:05 smithi137 bash[25001]: debug 2024-09-20T19:05:05.031+0000 7fa29d8ad640 1 mon.c@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-09-20T19:05:09.262 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:14.420790+0000 mgr.a (mgr.14152) 25 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.262 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:14.420790+0000 mgr.a (mgr.14152) 25 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.262 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:16.266366+0000 mgr.a (mgr.14152) 26 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi082", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:05:09.262 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:16.266366+0000 mgr.a (mgr.14152) 26 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi082", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:05:09.451 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:16.421053+0000 mgr.a (mgr.14152) 27 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.451 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:16.421053+0000 mgr.a (mgr.14152) 27 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.452 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:17.502587+0000 mgr.a (mgr.14152) 28 : cephadm [INF] Deploying cephadm binary to smithi082 2024-09-20T19:05:09.452 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:17.502587+0000 mgr.a (mgr.14152) 28 : cephadm [INF] Deploying cephadm binary to smithi082 2024-09-20T19:05:09.452 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:18.421411+0000 mgr.a (mgr.14152) 29 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.452 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:18.421411+0000 mgr.a (mgr.14152) 29 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.452 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:20.421664+0000 mgr.a (mgr.14152) 30 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.452 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:20.421664+0000 mgr.a (mgr.14152) 30 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.452 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:21.122046+0000 mon.a (mon.0) 117 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.452 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:21.122046+0000 mon.a (mon.0) 117 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.452 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:21.122966+0000 mgr.a (mgr.14152) 31 : cephadm [INF] Added host smithi082 2024-09-20T19:05:09.452 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:21.122966+0000 mgr.a (mgr.14152) 31 : cephadm [INF] Added host smithi082 2024-09-20T19:05:09.452 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:21.123874+0000 mon.a (mon.0) 118 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:09.452 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:21.123874+0000 mon.a (mon.0) 118 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:09.452 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:21.612577+0000 mon.a (mon.0) 119 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.453 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:21.612577+0000 mon.a (mon.0) 119 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.453 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:22.422041+0000 mgr.a (mgr.14152) 32 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.453 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:22.422041+0000 mgr.a (mgr.14152) 32 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.453 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:23.122546+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.453 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:23.122546+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.453 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:24.422466+0000 mgr.a (mgr.14152) 33 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.453 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:24.422466+0000 mgr.a (mgr.14152) 33 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.453 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:24.512605+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.453 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:24.512605+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.454 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:26.422904+0000 mgr.a (mgr.14152) 34 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.454 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:26.422904+0000 mgr.a (mgr.14152) 34 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.454 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:27.823250+0000 mgr.a (mgr.14152) 35 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:05:09.454 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:27.823250+0000 mgr.a (mgr.14152) 35 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:05:09.454 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:28.423296+0000 mgr.a (mgr.14152) 36 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.455 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:28.423296+0000 mgr.a (mgr.14152) 36 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.455 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:30.351717+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.455 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:30.351717+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.455 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:30.356816+0000 mon.a (mon.0) 123 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.455 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:30.356816+0000 mon.a (mon.0) 123 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.455 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:30.362646+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.455 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:30.362646+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.455 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:30.367654+0000 mon.a (mon.0) 125 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.455 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:30.367654+0000 mon.a (mon.0) 125 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.455 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:30.369350+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi082", "name": "osd_memory_target"} : dispatch 2024-09-20T19:05:09.456 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:30.369350+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi082", "name": "osd_memory_target"} : dispatch 2024-09-20T19:05:09.456 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:30.371754+0000 mon.a (mon.0) 127 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:09.456 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:30.371754+0000 mon.a (mon.0) 127 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:09.456 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:30.373527+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:09.456 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:30.373527+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:09.456 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:30.375991+0000 mgr.a (mgr.14152) 37 : cephadm [INF] Updating smithi082:/etc/ceph/ceph.conf 2024-09-20T19:05:09.456 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:30.375991+0000 mgr.a (mgr.14152) 37 : cephadm [INF] Updating smithi082:/etc/ceph/ceph.conf 2024-09-20T19:05:09.456 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:30.423671+0000 mgr.a (mgr.14152) 38 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.456 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:30.423671+0000 mgr.a (mgr.14152) 38 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.456 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:30.492497+0000 mgr.a (mgr.14152) 39 : cephadm [INF] Updating smithi082:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:09.456 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:30.492497+0000 mgr.a (mgr.14152) 39 : cephadm [INF] Updating smithi082:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:09.456 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:30.595009+0000 mgr.a (mgr.14152) 40 : cephadm [INF] Updating smithi082:/etc/ceph/ceph.client.admin.keyring 2024-09-20T19:05:09.457 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:30.595009+0000 mgr.a (mgr.14152) 40 : cephadm [INF] Updating smithi082:/etc/ceph/ceph.client.admin.keyring 2024-09-20T19:05:09.457 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:30.690583+0000 mgr.a (mgr.14152) 41 : cephadm [INF] Updating smithi082:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.client.admin.keyring 2024-09-20T19:05:09.457 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:30.690583+0000 mgr.a (mgr.14152) 41 : cephadm [INF] Updating smithi082:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.client.admin.keyring 2024-09-20T19:05:09.457 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:30.787723+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.457 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:30.787723+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.457 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:30.791685+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.457 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:30.791685+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.457 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:30.796160+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.457 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:30.796160+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.457 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:32.424074+0000 mgr.a (mgr.14152) 42 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.457 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:32.424074+0000 mgr.a (mgr.14152) 42 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.457 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:34.424407+0000 mgr.a (mgr.14152) 43 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.457 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:34.424407+0000 mgr.a (mgr.14152) 43 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.458 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:34.655496+0000 mgr.a (mgr.14152) 44 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi137", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:05:09.458 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:34.655496+0000 mgr.a (mgr.14152) 44 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi137", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:05:09.458 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:35.983210+0000 mgr.a (mgr.14152) 45 : cephadm [INF] Deploying cephadm binary to smithi137 2024-09-20T19:05:09.458 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:35.983210+0000 mgr.a (mgr.14152) 45 : cephadm [INF] Deploying cephadm binary to smithi137 2024-09-20T19:05:09.458 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:36.424785+0000 mgr.a (mgr.14152) 46 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.458 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:36.424785+0000 mgr.a (mgr.14152) 46 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.458 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:38.425061+0000 mgr.a (mgr.14152) 47 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.458 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:38.425061+0000 mgr.a (mgr.14152) 47 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.458 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:39.639691+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.458 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:39.639691+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.458 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:39.640537+0000 mgr.a (mgr.14152) 48 : cephadm [INF] Added host smithi137 2024-09-20T19:05:09.458 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:39.640537+0000 mgr.a (mgr.14152) 48 : cephadm [INF] Added host smithi137 2024-09-20T19:05:09.458 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:39.641343+0000 mon.a (mon.0) 133 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:09.459 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:39.641343+0000 mon.a (mon.0) 133 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:09.459 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:40.138802+0000 mon.a (mon.0) 134 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.459 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:40.138802+0000 mon.a (mon.0) 134 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.459 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:40.425354+0000 mgr.a (mgr.14152) 49 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.459 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:40.425354+0000 mgr.a (mgr.14152) 49 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.459 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:41.650477+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.459 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:41.650477+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.459 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:42.425627+0000 mgr.a (mgr.14152) 50 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.459 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:42.425627+0000 mgr.a (mgr.14152) 50 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.459 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:42.895299+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.459 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:42.895299+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.459 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:44.425931+0000 mgr.a (mgr.14152) 51 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.460 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:44.425931+0000 mgr.a (mgr.14152) 51 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.460 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:46.426409+0000 mgr.a (mgr.14152) 52 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.460 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:46.426409+0000 mgr.a (mgr.14152) 52 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.460 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:46.455681+0000 mgr.a (mgr.14152) 53 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:05:09.460 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:46.455681+0000 mgr.a (mgr.14152) 53 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:05:09.460 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:48.375796+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.460 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:48.375796+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.460 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:48.380951+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.460 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:48.380951+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.460 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:48.386808+0000 mon.a (mon.0) 139 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.460 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:48.386808+0000 mon.a (mon.0) 139 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.460 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:48.391811+0000 mon.a (mon.0) 140 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.460 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:48.391811+0000 mon.a (mon.0) 140 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.460 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:48.393527+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi137", "name": "osd_memory_target"} : dispatch 2024-09-20T19:05:09.461 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:48.393527+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi137", "name": "osd_memory_target"} : dispatch 2024-09-20T19:05:09.461 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:48.395625+0000 mon.a (mon.0) 142 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:09.461 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:48.395625+0000 mon.a (mon.0) 142 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:09.461 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:48.397660+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:09.461 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:48.397660+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:09.461 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:48.400462+0000 mgr.a (mgr.14152) 54 : cephadm [INF] Updating smithi137:/etc/ceph/ceph.conf 2024-09-20T19:05:09.461 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:48.400462+0000 mgr.a (mgr.14152) 54 : cephadm [INF] Updating smithi137:/etc/ceph/ceph.conf 2024-09-20T19:05:09.461 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:48.426824+0000 mgr.a (mgr.14152) 55 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.461 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:48.426824+0000 mgr.a (mgr.14152) 55 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.461 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:48.518425+0000 mgr.a (mgr.14152) 56 : cephadm [INF] Updating smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:09.461 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:48.518425+0000 mgr.a (mgr.14152) 56 : cephadm [INF] Updating smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:09.461 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:48.623244+0000 mgr.a (mgr.14152) 57 : cephadm [INF] Updating smithi137:/etc/ceph/ceph.client.admin.keyring 2024-09-20T19:05:09.461 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:48.623244+0000 mgr.a (mgr.14152) 57 : cephadm [INF] Updating smithi137:/etc/ceph/ceph.client.admin.keyring 2024-09-20T19:05:09.461 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:48.719899+0000 mgr.a (mgr.14152) 58 : cephadm [INF] Updating smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.client.admin.keyring 2024-09-20T19:05:09.462 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:48.719899+0000 mgr.a (mgr.14152) 58 : cephadm [INF] Updating smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.client.admin.keyring 2024-09-20T19:05:09.462 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:48.818043+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.462 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:48.818043+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.462 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:48.823395+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.462 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:48.823395+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.462 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:48.829221+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.462 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:48.829221+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.462 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:50.427247+0000 mgr.a (mgr.14152) 59 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.462 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:50.427247+0000 mgr.a (mgr.14152) 59 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.462 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:52.427683+0000 mgr.a (mgr.14152) 60 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.462 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:52.427683+0000 mgr.a (mgr.14152) 60 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.462 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:53.142813+0000 mon.a (mon.0) 147 : audit [INF] from='client.? 172.21.15.18:0/1012232505' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-20T19:05:09.463 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:53.142813+0000 mon.a (mon.0) 147 : audit [INF] from='client.? 172.21.15.18:0/1012232505' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-20T19:05:09.463 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:53.486750+0000 mon.a (mon.0) 148 : audit [INF] from='client.? 172.21.15.18:0/1012232505' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-20T19:05:09.463 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:53.486750+0000 mon.a (mon.0) 148 : audit [INF] from='client.? 172.21.15.18:0/1012232505' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-20T19:05:09.463 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:53.490743+0000 mon.a (mon.0) 149 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:05:09.463 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:53.490743+0000 mon.a (mon.0) 149 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:05:09.463 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:54.428075+0000 mgr.a (mgr.14152) 61 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.464 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:54.428075+0000 mgr.a (mgr.14152) 61 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.464 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:56.428422+0000 mgr.a (mgr.14152) 62 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.464 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:56.428422+0000 mgr.a (mgr.14152) 62 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.464 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:56.746547+0000 mgr.a (mgr.14152) 63 : audit [DBG] from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi018:172.21.15.18=a;smithi082:172.21.15.82=b;smithi137:172.21.15.137=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:05:09.464 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:56.746547+0000 mgr.a (mgr.14152) 63 : audit [DBG] from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi018:172.21.15.18=a;smithi082:172.21.15.82=b;smithi137:172.21.15.137=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:05:09.464 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:56.751648+0000 mgr.a (mgr.14152) 64 : cephadm [INF] Saving service mon spec with placement smithi018:172.21.15.18=a;smithi082:172.21.15.82=b;smithi137:172.21.15.137=c;count:3 2024-09-20T19:05:09.464 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:56.751648+0000 mgr.a (mgr.14152) 64 : cephadm [INF] Saving service mon spec with placement smithi018:172.21.15.18=a;smithi082:172.21.15.82=b;smithi137:172.21.15.137=c;count:3 2024-09-20T19:05:09.464 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:56.756706+0000 mon.a (mon.0) 150 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.464 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:56.756706+0000 mon.a (mon.0) 150 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.464 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:56.758402+0000 mon.a (mon.0) 151 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:09.464 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:56.758402+0000 mon.a (mon.0) 151 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:09.464 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:57.409938+0000 mon.a (mon.0) 152 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:09.464 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:57.409938+0000 mon.a (mon.0) 152 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:09.465 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:57.411306+0000 mon.a (mon.0) 153 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:09.465 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:57.411306+0000 mon.a (mon.0) 153 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:09.465 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:57.418535+0000 mon.a (mon.0) 154 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.465 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:57.418535+0000 mon.a (mon.0) 154 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.465 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:57.421023+0000 mon.a (mon.0) 155 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:09.465 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:57.421023+0000 mon.a (mon.0) 155 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:09.465 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:57.422313+0000 mon.a (mon.0) 156 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:09.465 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:04:57.422313+0000 mon.a (mon.0) 156 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:09.465 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:57.423663+0000 mgr.a (mgr.14152) 65 : cephadm [INF] Deploying daemon mon.c on smithi137 2024-09-20T19:05:09.465 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:04:57.423663+0000 mgr.a (mgr.14152) 65 : cephadm [INF] Deploying daemon mon.c on smithi137 2024-09-20T19:05:09.465 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:58.428808+0000 mgr.a (mgr.14152) 66 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.465 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:04:58.428808+0000 mgr.a (mgr.14152) 66 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.465 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:05:00.403207+0000 mon.a (mon.0) 157 : audit [DBG] from='client.? 172.21.15.137:0/2986067736' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-20T19:05:09.466 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:05:00.403207+0000 mon.a (mon.0) 157 : audit [DBG] from='client.? 172.21.15.137:0/2986067736' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-20T19:05:09.466 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:05:00.429221+0000 mgr.a (mgr.14152) 67 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.466 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:05:00.429221+0000 mgr.a (mgr.14152) 67 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.466 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:05:02.429618+0000 mgr.a (mgr.14152) 68 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.466 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cluster 2024-09-20T19:05:02.429618+0000 mgr.a (mgr.14152) 68 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:09.466 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:05:03.368012+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.466 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:05:03.368012+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.466 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:05:03.373505+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.466 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:05:03.373505+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.466 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:05:03.379347+0000 mon.a (mon.0) 160 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.466 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:05:03.379347+0000 mon.a (mon.0) 160 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:09.466 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:05:03.380750+0000 mon.a (mon.0) 161 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:09.466 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:05:03.380750+0000 mon.a (mon.0) 161 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:09.466 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:05:03.382790+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:09.467 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: audit 2024-09-20T19:05:03.382790+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:09.467 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:05:03.384961+0000 mgr.a (mgr.14152) 69 : cephadm [INF] Deploying daemon mon.b on smithi082 2024-09-20T19:05:09.467 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: cephadm 2024-09-20T19:05:03.384961+0000 mgr.a (mgr.14152) 69 : cephadm [INF] Deploying daemon mon.b on smithi082 2024-09-20T19:05:09.467 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:09 smithi082 bash[24745]: debug 2024-09-20T19:05:09.260+0000 7f11a24e1640 1 mon.b@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-09-20T19:05:10.553 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:04.430022+0000 mgr.a (mgr.14152) 70 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:10.553 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:04.430022+0000 mgr.a (mgr.14152) 70 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:10.553 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:05.040811+0000 mon.a (mon.0) 163 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.554 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:05.040811+0000 mon.a (mon.0) 163 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.554 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:05.045618+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:05:10.554 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:05.045618+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:05:10.554 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:05.045985+0000 mon.a (mon.0) 165 : cluster [INF] mon.a calling monitor election 2024-09-20T19:05:10.554 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:05.045985+0000 mon.a (mon.0) 165 : cluster [INF] mon.a calling monitor election 2024-09-20T19:05:10.554 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:05.066644+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.554 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:05.066644+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.554 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:06.040729+0000 mon.a (mon.0) 167 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.554 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:06.040729+0000 mon.a (mon.0) 167 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.554 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:06.430381+0000 mgr.a (mgr.14152) 71 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:10.554 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:06.430381+0000 mgr.a (mgr.14152) 71 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:10.554 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:07.040542+0000 mon.a (mon.0) 168 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.555 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:07.040542+0000 mon.a (mon.0) 168 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.555 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:07.043033+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-20T19:05:10.555 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:07.043033+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-20T19:05:10.555 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:08.040765+0000 mon.a (mon.0) 169 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.555 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:08.040765+0000 mon.a (mon.0) 169 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.555 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:08.430766+0000 mgr.a (mgr.14152) 72 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:10.555 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:08.430766+0000 mgr.a (mgr.14152) 72 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:10.555 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:09.040839+0000 mon.a (mon.0) 170 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.556 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:09.040839+0000 mon.a (mon.0) 170 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.556 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:09.265988+0000 mon.a (mon.0) 171 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:10.556 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:09.265988+0000 mon.a (mon.0) 171 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:10.556 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:10.041179+0000 mon.a (mon.0) 172 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.556 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:10.041179+0000 mon.a (mon.0) 172 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.556 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.088922+0000 mon.a (mon.0) 173 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-20T19:05:10.556 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.088922+0000 mon.a (mon.0) 173 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-20T19:05:10.556 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.095239+0000 mon.a (mon.0) 174 : cluster [DBG] monmap epoch 2 2024-09-20T19:05:10.556 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.095239+0000 mon.a (mon.0) 174 : cluster [DBG] monmap epoch 2 2024-09-20T19:05:10.556 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.095270+0000 mon.a (mon.0) 175 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:05:10.556 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.095270+0000 mon.a (mon.0) 175 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:05:10.556 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.095292+0000 mon.a (mon.0) 176 : cluster [DBG] last_changed 2024-09-20T19:05:05.040265+0000 2024-09-20T19:05:10.557 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.095292+0000 mon.a (mon.0) 176 : cluster [DBG] last_changed 2024-09-20T19:05:05.040265+0000 2024-09-20T19:05:10.557 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.095310+0000 mon.a (mon.0) 177 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:05:10.557 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.095310+0000 mon.a (mon.0) 177 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:05:10.557 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.095329+0000 mon.a (mon.0) 178 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:05:10.557 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.095329+0000 mon.a (mon.0) 178 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:05:10.557 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.095354+0000 mon.a (mon.0) 179 : cluster [DBG] election_strategy: 1 2024-09-20T19:05:10.557 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.095354+0000 mon.a (mon.0) 179 : cluster [DBG] election_strategy: 1 2024-09-20T19:05:10.557 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.095374+0000 mon.a (mon.0) 180 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:05:10.557 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.095374+0000 mon.a (mon.0) 180 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:05:10.557 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.095396+0000 mon.a (mon.0) 181 : cluster [DBG] 1: [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] mon.c 2024-09-20T19:05:10.557 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.095396+0000 mon.a (mon.0) 181 : cluster [DBG] 1: [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] mon.c 2024-09-20T19:05:10.557 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.118314+0000 mon.a (mon.0) 182 : cluster [DBG] fsmap 2024-09-20T19:05:10.557 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.118314+0000 mon.a (mon.0) 182 : cluster [DBG] fsmap 2024-09-20T19:05:10.557 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.118365+0000 mon.a (mon.0) 183 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:05:10.558 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.118365+0000 mon.a (mon.0) 183 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:05:10.558 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.118659+0000 mon.a (mon.0) 184 : cluster [DBG] mgrmap e13: a(active, since 91s) 2024-09-20T19:05:10.558 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.118659+0000 mon.a (mon.0) 184 : cluster [DBG] mgrmap e13: a(active, since 91s) 2024-09-20T19:05:10.558 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.118907+0000 mon.a (mon.0) 185 : cluster [INF] overall HEALTH_OK 2024-09-20T19:05:10.558 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.118907+0000 mon.a (mon.0) 185 : cluster [INF] overall HEALTH_OK 2024-09-20T19:05:10.558 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:10.125156+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:10.558 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:10.125156+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:10.558 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:10.131815+0000 mon.a (mon.0) 187 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:10.558 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:10.131815+0000 mon.a (mon.0) 187 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:10.558 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:10.139112+0000 mon.a (mon.0) 188 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:10.558 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:10.139112+0000 mon.a (mon.0) 188 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:10.558 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:10.145733+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:10.558 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:10 smithi137 bash[25001]: audit 2024-09-20T19:05:10.145733+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:10.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:04.430022+0000 mgr.a (mgr.14152) 70 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:10.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:04.430022+0000 mgr.a (mgr.14152) 70 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:10.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:05.040811+0000 mon.a (mon.0) 163 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:05.040811+0000 mon.a (mon.0) 163 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:05.045618+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:05:10.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:05.045618+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:05:10.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:05.045985+0000 mon.a (mon.0) 165 : cluster [INF] mon.a calling monitor election 2024-09-20T19:05:10.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:05.045985+0000 mon.a (mon.0) 165 : cluster [INF] mon.a calling monitor election 2024-09-20T19:05:10.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:05.066644+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:05.066644+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:06.040729+0000 mon.a (mon.0) 167 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:06.040729+0000 mon.a (mon.0) 167 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:06.430381+0000 mgr.a (mgr.14152) 71 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:10.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:06.430381+0000 mgr.a (mgr.14152) 71 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:10.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:07.040542+0000 mon.a (mon.0) 168 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:07.040542+0000 mon.a (mon.0) 168 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:07.043033+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-20T19:05:10.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:07.043033+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-20T19:05:10.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:08.040765+0000 mon.a (mon.0) 169 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:08.040765+0000 mon.a (mon.0) 169 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:08.430766+0000 mgr.a (mgr.14152) 72 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:10.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:08.430766+0000 mgr.a (mgr.14152) 72 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:10.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:09.040839+0000 mon.a (mon.0) 170 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:09.040839+0000 mon.a (mon.0) 170 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:09.265988+0000 mon.a (mon.0) 171 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:10.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:09.265988+0000 mon.a (mon.0) 171 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:10.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:10.041179+0000 mon.a (mon.0) 172 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:10.041179+0000 mon.a (mon.0) 172 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:10.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.088922+0000 mon.a (mon.0) 173 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-20T19:05:10.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.088922+0000 mon.a (mon.0) 173 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-20T19:05:10.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.095239+0000 mon.a (mon.0) 174 : cluster [DBG] monmap epoch 2 2024-09-20T19:05:10.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.095239+0000 mon.a (mon.0) 174 : cluster [DBG] monmap epoch 2 2024-09-20T19:05:10.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.095270+0000 mon.a (mon.0) 175 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:05:10.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.095270+0000 mon.a (mon.0) 175 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:05:10.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.095292+0000 mon.a (mon.0) 176 : cluster [DBG] last_changed 2024-09-20T19:05:05.040265+0000 2024-09-20T19:05:10.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.095292+0000 mon.a (mon.0) 176 : cluster [DBG] last_changed 2024-09-20T19:05:05.040265+0000 2024-09-20T19:05:10.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.095310+0000 mon.a (mon.0) 177 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:05:10.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.095310+0000 mon.a (mon.0) 177 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:05:10.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.095329+0000 mon.a (mon.0) 178 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:05:10.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.095329+0000 mon.a (mon.0) 178 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:05:10.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.095354+0000 mon.a (mon.0) 179 : cluster [DBG] election_strategy: 1 2024-09-20T19:05:10.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.095354+0000 mon.a (mon.0) 179 : cluster [DBG] election_strategy: 1 2024-09-20T19:05:10.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.095374+0000 mon.a (mon.0) 180 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:05:10.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.095374+0000 mon.a (mon.0) 180 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:05:10.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.095396+0000 mon.a (mon.0) 181 : cluster [DBG] 1: [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] mon.c 2024-09-20T19:05:10.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.095396+0000 mon.a (mon.0) 181 : cluster [DBG] 1: [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] mon.c 2024-09-20T19:05:10.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.118314+0000 mon.a (mon.0) 182 : cluster [DBG] fsmap 2024-09-20T19:05:10.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.118314+0000 mon.a (mon.0) 182 : cluster [DBG] fsmap 2024-09-20T19:05:10.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.118365+0000 mon.a (mon.0) 183 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:05:10.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.118365+0000 mon.a (mon.0) 183 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:05:10.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.118659+0000 mon.a (mon.0) 184 : cluster [DBG] mgrmap e13: a(active, since 91s) 2024-09-20T19:05:10.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.118659+0000 mon.a (mon.0) 184 : cluster [DBG] mgrmap e13: a(active, since 91s) 2024-09-20T19:05:10.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.118907+0000 mon.a (mon.0) 185 : cluster [INF] overall HEALTH_OK 2024-09-20T19:05:10.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.118907+0000 mon.a (mon.0) 185 : cluster [INF] overall HEALTH_OK 2024-09-20T19:05:10.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:10.125156+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:10.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:10.125156+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:10.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:10.131815+0000 mon.a (mon.0) 187 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:10.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:10.131815+0000 mon.a (mon.0) 187 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:10.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:10.139112+0000 mon.a (mon.0) 188 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:10.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:10.139112+0000 mon.a (mon.0) 188 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:10.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:10.145733+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:10.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:10 smithi018 bash[22763]: audit 2024-09-20T19:05:10.145733+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:11.553 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:11 smithi137 bash[25001]: audit 2024-09-20T19:05:10.195185+0000 mon.a (mon.0) 190 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:11.553 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:11 smithi137 bash[25001]: audit 2024-09-20T19:05:10.195185+0000 mon.a (mon.0) 190 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:11.553 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:11 smithi137 bash[25001]: audit 2024-09-20T19:05:10.265673+0000 mon.a (mon.0) 191 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:11.553 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:11 smithi137 bash[25001]: audit 2024-09-20T19:05:10.265673+0000 mon.a (mon.0) 191 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:11.553 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:11 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.431161+0000 mgr.a (mgr.14152) 73 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:11.553 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:11 smithi137 bash[25001]: cluster 2024-09-20T19:05:10.431161+0000 mgr.a (mgr.14152) 73 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:11.553 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:11 smithi137 bash[25001]: audit 2024-09-20T19:05:11.041504+0000 mon.a (mon.0) 192 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:11.553 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:11 smithi137 bash[25001]: audit 2024-09-20T19:05:11.041504+0000 mon.a (mon.0) 192 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:11.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:11 smithi018 bash[22763]: audit 2024-09-20T19:05:10.195185+0000 mon.a (mon.0) 190 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:11.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:11 smithi018 bash[22763]: audit 2024-09-20T19:05:10.195185+0000 mon.a (mon.0) 190 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:11.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:11 smithi018 bash[22763]: audit 2024-09-20T19:05:10.265673+0000 mon.a (mon.0) 191 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:11.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:11 smithi018 bash[22763]: audit 2024-09-20T19:05:10.265673+0000 mon.a (mon.0) 191 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:11.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:11 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.431161+0000 mgr.a (mgr.14152) 73 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:11.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:11 smithi018 bash[22763]: cluster 2024-09-20T19:05:10.431161+0000 mgr.a (mgr.14152) 73 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:11.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:11 smithi018 bash[22763]: audit 2024-09-20T19:05:11.041504+0000 mon.a (mon.0) 192 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:11.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:11 smithi018 bash[22763]: audit 2024-09-20T19:05:11.041504+0000 mon.a (mon.0) 192 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:16.328 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-09-20T19:05:16.328 INFO:teuthology.orchestra.run.smithi137.stdout:{"epoch":3,"fsid":"9ac321c2-7782-11ef-baf5-efdc52797490","modified":"2024-09-20T19:05:11.266249Z","created":"2024-09-20T19:02:27.869950Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:3300","nonce":0},{"type":"v1","addr":"172.21.15.18:6789","nonce":0}]},"addr":"172.21.15.18:6789/0","public_addr":"172.21.15.18:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:3300","nonce":0},{"type":"v1","addr":"172.21.15.137:6789","nonce":0}]},"addr":"172.21.15.137:6789/0","public_addr":"172.21.15.137:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:3300","nonce":0},{"type":"v1","addr":"172.21.15.82:6789","nonce":0}]},"addr":"172.21.15.82:6789/0","public_addr":"172.21.15.82:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-20T19:05:16.328 INFO:teuthology.orchestra.run.smithi137.stderr:dumped monmap epoch 3 2024-09-20T19:05:16.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:11.273084+0000 mon.a (mon.0) 194 : cluster [INF] mon.a calling monitor election 2024-09-20T19:05:16.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:11.273084+0000 mon.a (mon.0) 194 : cluster [INF] mon.a calling monitor election 2024-09-20T19:05:16.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:11.274124+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-20T19:05:16.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:11.274124+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-20T19:05:16.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:11.294876+0000 mon.a (mon.0) 195 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:05:16.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:11.294876+0000 mon.a (mon.0) 195 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:05:16.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:11.295168+0000 mon.a (mon.0) 196 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:11.295168+0000 mon.a (mon.0) 196 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:11.295372+0000 mon.a (mon.0) 197 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:16.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:11.295372+0000 mon.a (mon.0) 197 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:16.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:11.438931+0000 mon.a (mon.0) 198 : audit [DBG] from='client.? 172.21.15.137:0/2907335250' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-20T19:05:16.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:11.438931+0000 mon.a (mon.0) 198 : audit [DBG] from='client.? 172.21.15.137:0/2907335250' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-20T19:05:16.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:12.266195+0000 mon.a (mon.0) 199 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:12.266195+0000 mon.a (mon.0) 199 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:12.431556+0000 mgr.a (mgr.14152) 74 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:16.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:12.431556+0000 mgr.a (mgr.14152) 74 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:16.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:13.266364+0000 mon.a (mon.0) 200 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:13.266364+0000 mon.a (mon.0) 200 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:14.266021+0000 mon.a (mon.0) 201 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:14.266021+0000 mon.a (mon.0) 201 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:14.431942+0000 mgr.a (mgr.14152) 75 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:16.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:14.431942+0000 mgr.a (mgr.14152) 75 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:16.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:15.266749+0000 mon.a (mon.0) 202 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:15.266749+0000 mon.a (mon.0) 202 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.675 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:16.266657+0000 mon.a (mon.0) 203 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:16.266657+0000 mon.a (mon.0) 203 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.294981+0000 mon.a (mon.0) 204 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-20T19:05:16.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.294981+0000 mon.a (mon.0) 204 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-20T19:05:16.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.301067+0000 mon.a (mon.0) 205 : cluster [DBG] monmap epoch 3 2024-09-20T19:05:16.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.301067+0000 mon.a (mon.0) 205 : cluster [DBG] monmap epoch 3 2024-09-20T19:05:16.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.301101+0000 mon.a (mon.0) 206 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:05:16.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.301101+0000 mon.a (mon.0) 206 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:05:16.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.301120+0000 mon.a (mon.0) 207 : cluster [DBG] last_changed 2024-09-20T19:05:11.266249+0000 2024-09-20T19:05:16.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.301120+0000 mon.a (mon.0) 207 : cluster [DBG] last_changed 2024-09-20T19:05:11.266249+0000 2024-09-20T19:05:16.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.301140+0000 mon.a (mon.0) 208 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:05:16.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.301140+0000 mon.a (mon.0) 208 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:05:16.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.301161+0000 mon.a (mon.0) 209 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:05:16.676 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.301161+0000 mon.a (mon.0) 209 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:05:16.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.301183+0000 mon.a (mon.0) 210 : cluster [DBG] election_strategy: 1 2024-09-20T19:05:16.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.301183+0000 mon.a (mon.0) 210 : cluster [DBG] election_strategy: 1 2024-09-20T19:05:16.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.301205+0000 mon.a (mon.0) 211 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:05:16.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.301205+0000 mon.a (mon.0) 211 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:05:16.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.301228+0000 mon.a (mon.0) 212 : cluster [DBG] 1: [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] mon.c 2024-09-20T19:05:16.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.301228+0000 mon.a (mon.0) 212 : cluster [DBG] 1: [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] mon.c 2024-09-20T19:05:16.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.301251+0000 mon.a (mon.0) 213 : cluster [DBG] 2: [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] mon.b 2024-09-20T19:05:16.677 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.301251+0000 mon.a (mon.0) 213 : cluster [DBG] 2: [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] mon.b 2024-09-20T19:05:16.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.322347+0000 mon.a (mon.0) 214 : cluster [DBG] fsmap 2024-09-20T19:05:16.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.322347+0000 mon.a (mon.0) 214 : cluster [DBG] fsmap 2024-09-20T19:05:16.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.322398+0000 mon.a (mon.0) 215 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:05:16.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.322398+0000 mon.a (mon.0) 215 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:05:16.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.322689+0000 mon.a (mon.0) 216 : cluster [DBG] mgrmap e13: a(active, since 97s) 2024-09-20T19:05:16.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.322689+0000 mon.a (mon.0) 216 : cluster [DBG] mgrmap e13: a(active, since 97s) 2024-09-20T19:05:16.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.323005+0000 mon.a (mon.0) 217 : cluster [WRN] Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-20T19:05:16.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.323005+0000 mon.a (mon.0) 217 : cluster [WRN] Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-20T19:05:16.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.329725+0000 mon.a (mon.0) 218 : cluster [WRN] Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-20T19:05:16.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.329725+0000 mon.a (mon.0) 218 : cluster [WRN] Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-20T19:05:16.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.329760+0000 mon.a (mon.0) 219 : cluster [WRN] [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-20T19:05:16.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.329760+0000 mon.a (mon.0) 219 : cluster [WRN] [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-20T19:05:16.678 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.329776+0000 mon.a (mon.0) 220 : cluster [WRN] mon.b (rank 2) addr [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] is down (out of quorum) 2024-09-20T19:05:16.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.329776+0000 mon.a (mon.0) 220 : cluster [WRN] mon.b (rank 2) addr [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] is down (out of quorum) 2024-09-20T19:05:16.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:16.334249+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:16.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:16.334249+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:16.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:16.339311+0000 mon.a (mon.0) 222 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:16.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:16.339311+0000 mon.a (mon.0) 222 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:16.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:16.344732+0000 mon.a (mon.0) 223 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:16.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:16.344732+0000 mon.a (mon.0) 223 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:16.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:16.350046+0000 mon.a (mon.0) 224 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:16.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:16.350046+0000 mon.a (mon.0) 224 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:16.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:16.355174+0000 mon.a (mon.0) 225 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:16.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:16.355174+0000 mon.a (mon.0) 225 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:16.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:16.356748+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:16.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:16.356748+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:16.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:16.358753+0000 mon.a (mon.0) 227 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:16.679 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:16 smithi018 bash[22763]: audit 2024-09-20T19:05:16.358753+0000 mon.a (mon.0) 227 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:16.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:11.273084+0000 mon.a (mon.0) 194 : cluster [INF] mon.a calling monitor election 2024-09-20T19:05:16.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:11.273084+0000 mon.a (mon.0) 194 : cluster [INF] mon.a calling monitor election 2024-09-20T19:05:16.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:11.274124+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-20T19:05:16.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:11.274124+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-20T19:05:16.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:11.294876+0000 mon.a (mon.0) 195 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:05:16.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:11.294876+0000 mon.a (mon.0) 195 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:05:16.804 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:11.295168+0000 mon.a (mon.0) 196 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.804 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:11.295168+0000 mon.a (mon.0) 196 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.804 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:11.295372+0000 mon.a (mon.0) 197 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:16.804 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:11.295372+0000 mon.a (mon.0) 197 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:16.804 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:11.438931+0000 mon.a (mon.0) 198 : audit [DBG] from='client.? 172.21.15.137:0/2907335250' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-20T19:05:16.804 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:11.438931+0000 mon.a (mon.0) 198 : audit [DBG] from='client.? 172.21.15.137:0/2907335250' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-20T19:05:16.804 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:12.266195+0000 mon.a (mon.0) 199 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.804 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:12.266195+0000 mon.a (mon.0) 199 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.804 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:12.431556+0000 mgr.a (mgr.14152) 74 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:16.804 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:12.431556+0000 mgr.a (mgr.14152) 74 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:16.804 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:13.266364+0000 mon.a (mon.0) 200 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.804 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:13.266364+0000 mon.a (mon.0) 200 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.804 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:14.266021+0000 mon.a (mon.0) 201 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.805 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:14.266021+0000 mon.a (mon.0) 201 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.805 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:14.431942+0000 mgr.a (mgr.14152) 75 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:16.805 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:14.431942+0000 mgr.a (mgr.14152) 75 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:16.805 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:15.266749+0000 mon.a (mon.0) 202 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.806 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:15.266749+0000 mon.a (mon.0) 202 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.806 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:16.266657+0000 mon.a (mon.0) 203 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.806 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:16.266657+0000 mon.a (mon.0) 203 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:16.806 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.294981+0000 mon.a (mon.0) 204 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-20T19:05:16.806 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.294981+0000 mon.a (mon.0) 204 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-20T19:05:16.806 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.301067+0000 mon.a (mon.0) 205 : cluster [DBG] monmap epoch 3 2024-09-20T19:05:16.806 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.301067+0000 mon.a (mon.0) 205 : cluster [DBG] monmap epoch 3 2024-09-20T19:05:16.806 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.301101+0000 mon.a (mon.0) 206 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:05:16.806 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.301101+0000 mon.a (mon.0) 206 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:05:16.806 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.301120+0000 mon.a (mon.0) 207 : cluster [DBG] last_changed 2024-09-20T19:05:11.266249+0000 2024-09-20T19:05:16.807 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.301120+0000 mon.a (mon.0) 207 : cluster [DBG] last_changed 2024-09-20T19:05:11.266249+0000 2024-09-20T19:05:16.807 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.301140+0000 mon.a (mon.0) 208 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:05:16.807 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.301140+0000 mon.a (mon.0) 208 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:05:16.807 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.301161+0000 mon.a (mon.0) 209 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:05:16.807 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.301161+0000 mon.a (mon.0) 209 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:05:16.807 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.301183+0000 mon.a (mon.0) 210 : cluster [DBG] election_strategy: 1 2024-09-20T19:05:16.807 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.301183+0000 mon.a (mon.0) 210 : cluster [DBG] election_strategy: 1 2024-09-20T19:05:16.807 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.301205+0000 mon.a (mon.0) 211 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:05:16.807 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.301205+0000 mon.a (mon.0) 211 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:05:16.807 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.301228+0000 mon.a (mon.0) 212 : cluster [DBG] 1: [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] mon.c 2024-09-20T19:05:16.807 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.301228+0000 mon.a (mon.0) 212 : cluster [DBG] 1: [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] mon.c 2024-09-20T19:05:16.807 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.301251+0000 mon.a (mon.0) 213 : cluster [DBG] 2: [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] mon.b 2024-09-20T19:05:16.807 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.301251+0000 mon.a (mon.0) 213 : cluster [DBG] 2: [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] mon.b 2024-09-20T19:05:16.807 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.322347+0000 mon.a (mon.0) 214 : cluster [DBG] fsmap 2024-09-20T19:05:16.808 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.322347+0000 mon.a (mon.0) 214 : cluster [DBG] fsmap 2024-09-20T19:05:16.808 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.322398+0000 mon.a (mon.0) 215 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:05:16.808 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.322398+0000 mon.a (mon.0) 215 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:05:16.808 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.322689+0000 mon.a (mon.0) 216 : cluster [DBG] mgrmap e13: a(active, since 97s) 2024-09-20T19:05:16.808 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.322689+0000 mon.a (mon.0) 216 : cluster [DBG] mgrmap e13: a(active, since 97s) 2024-09-20T19:05:16.808 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.323005+0000 mon.a (mon.0) 217 : cluster [WRN] Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-20T19:05:16.808 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.323005+0000 mon.a (mon.0) 217 : cluster [WRN] Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-20T19:05:16.808 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.329725+0000 mon.a (mon.0) 218 : cluster [WRN] Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-20T19:05:16.808 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.329725+0000 mon.a (mon.0) 218 : cluster [WRN] Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-20T19:05:16.808 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.329760+0000 mon.a (mon.0) 219 : cluster [WRN] [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-20T19:05:16.808 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.329760+0000 mon.a (mon.0) 219 : cluster [WRN] [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-20T19:05:16.808 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.329776+0000 mon.a (mon.0) 220 : cluster [WRN] mon.b (rank 2) addr [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] is down (out of quorum) 2024-09-20T19:05:16.808 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.329776+0000 mon.a (mon.0) 220 : cluster [WRN] mon.b (rank 2) addr [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] is down (out of quorum) 2024-09-20T19:05:16.808 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:16.334249+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:16.809 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:16.334249+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:16.809 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:16.339311+0000 mon.a (mon.0) 222 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:16.809 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:16.339311+0000 mon.a (mon.0) 222 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:16.809 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:16.344732+0000 mon.a (mon.0) 223 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:16.809 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:16.344732+0000 mon.a (mon.0) 223 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:16.809 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:16.350046+0000 mon.a (mon.0) 224 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:16.809 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:16.350046+0000 mon.a (mon.0) 224 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:16.809 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:16.355174+0000 mon.a (mon.0) 225 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:16.809 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:16.355174+0000 mon.a (mon.0) 225 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:16.809 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:16.356748+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:16.809 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:16.356748+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:16.809 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:16.358753+0000 mon.a (mon.0) 227 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:16.809 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:16 smithi137 bash[25001]: audit 2024-09-20T19:05:16.358753+0000 mon.a (mon.0) 227 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:17.081 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-20T19:05:17.082 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph config generate-minimal-conf 2024-09-20T19:05:17.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: cephadm 2024-09-20T19:05:16.361325+0000 mgr.a (mgr.14152) 76 : cephadm [INF] Updating smithi018:/etc/ceph/ceph.conf 2024-09-20T19:05:17.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: cephadm 2024-09-20T19:05:16.361325+0000 mgr.a (mgr.14152) 76 : cephadm [INF] Updating smithi018:/etc/ceph/ceph.conf 2024-09-20T19:05:17.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: cephadm 2024-09-20T19:05:16.362222+0000 mgr.a (mgr.14152) 77 : cephadm [INF] Updating smithi082:/etc/ceph/ceph.conf 2024-09-20T19:05:17.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: cephadm 2024-09-20T19:05:16.362222+0000 mgr.a (mgr.14152) 77 : cephadm [INF] Updating smithi082:/etc/ceph/ceph.conf 2024-09-20T19:05:17.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: cephadm 2024-09-20T19:05:16.363916+0000 mgr.a (mgr.14152) 78 : cephadm [INF] Updating smithi137:/etc/ceph/ceph.conf 2024-09-20T19:05:17.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: cephadm 2024-09-20T19:05:16.363916+0000 mgr.a (mgr.14152) 78 : cephadm [INF] Updating smithi137:/etc/ceph/ceph.conf 2024-09-20T19:05:17.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.432258+0000 mgr.a (mgr.14152) 79 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:17.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: cluster 2024-09-20T19:05:16.432258+0000 mgr.a (mgr.14152) 79 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:17.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: cephadm 2024-09-20T19:05:16.547240+0000 mgr.a (mgr.14152) 80 : cephadm [INF] Updating smithi082:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:17.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: cephadm 2024-09-20T19:05:16.547240+0000 mgr.a (mgr.14152) 80 : cephadm [INF] Updating smithi082:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:17.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: cephadm 2024-09-20T19:05:16.547771+0000 mgr.a (mgr.14152) 81 : cephadm [INF] Updating smithi018:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:17.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: cephadm 2024-09-20T19:05:16.547771+0000 mgr.a (mgr.14152) 81 : cephadm [INF] Updating smithi018:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:17.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: cephadm 2024-09-20T19:05:16.548302+0000 mgr.a (mgr.14152) 82 : cephadm [INF] Updating smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:17.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: cephadm 2024-09-20T19:05:16.548302+0000 mgr.a (mgr.14152) 82 : cephadm [INF] Updating smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:17.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.672152+0000 mon.a (mon.0) 228 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.672152+0000 mon.a (mon.0) 228 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.677853+0000 mon.a (mon.0) 229 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.677853+0000 mon.a (mon.0) 229 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.683269+0000 mon.a (mon.0) 230 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.683269+0000 mon.a (mon.0) 230 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.688284+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.688284+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.693557+0000 mon.a (mon.0) 232 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.693557+0000 mon.a (mon.0) 232 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.698389+0000 mon.a (mon.0) 233 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.698389+0000 mon.a (mon.0) 233 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.704625+0000 mon.a (mon.0) 234 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.704625+0000 mon.a (mon.0) 234 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.740402+0000 mon.a (mon.0) 235 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.740402+0000 mon.a (mon.0) 235 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.745875+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.745875+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.750918+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.750918+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.756233+0000 mon.a (mon.0) 238 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.927 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.756233+0000 mon.a (mon.0) 238 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:17.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: cephadm 2024-09-20T19:05:16.756995+0000 mgr.a (mgr.14152) 83 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-20T19:05:17.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: cephadm 2024-09-20T19:05:16.756995+0000 mgr.a (mgr.14152) 83 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-20T19:05:17.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.757554+0000 mon.a (mon.0) 239 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:17.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.757554+0000 mon.a (mon.0) 239 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:17.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.758913+0000 mon.a (mon.0) 240 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:05:17.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.758913+0000 mon.a (mon.0) 240 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:05:17.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.760400+0000 mon.a (mon.0) 241 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:17.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:16.760400+0000 mon.a (mon.0) 241 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:17.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: cephadm 2024-09-20T19:05:16.762053+0000 mgr.a (mgr.14152) 84 : cephadm [INF] Reconfiguring daemon mon.a on smithi018 2024-09-20T19:05:17.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: cephadm 2024-09-20T19:05:16.762053+0000 mgr.a (mgr.14152) 84 : cephadm [INF] Reconfiguring daemon mon.a on smithi018 2024-09-20T19:05:17.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:17.266443+0000 mon.a (mon.0) 242 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:17.928 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:17 smithi018 bash[22763]: audit 2024-09-20T19:05:17.266443+0000 mon.a (mon.0) 242 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.053 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: cephadm 2024-09-20T19:05:16.361325+0000 mgr.a (mgr.14152) 76 : cephadm [INF] Updating smithi018:/etc/ceph/ceph.conf 2024-09-20T19:05:18.053 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: cephadm 2024-09-20T19:05:16.361325+0000 mgr.a (mgr.14152) 76 : cephadm [INF] Updating smithi018:/etc/ceph/ceph.conf 2024-09-20T19:05:18.053 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: cephadm 2024-09-20T19:05:16.362222+0000 mgr.a (mgr.14152) 77 : cephadm [INF] Updating smithi082:/etc/ceph/ceph.conf 2024-09-20T19:05:18.053 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: cephadm 2024-09-20T19:05:16.362222+0000 mgr.a (mgr.14152) 77 : cephadm [INF] Updating smithi082:/etc/ceph/ceph.conf 2024-09-20T19:05:18.053 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: cephadm 2024-09-20T19:05:16.363916+0000 mgr.a (mgr.14152) 78 : cephadm [INF] Updating smithi137:/etc/ceph/ceph.conf 2024-09-20T19:05:18.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: cephadm 2024-09-20T19:05:16.363916+0000 mgr.a (mgr.14152) 78 : cephadm [INF] Updating smithi137:/etc/ceph/ceph.conf 2024-09-20T19:05:18.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.432258+0000 mgr.a (mgr.14152) 79 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:18.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: cluster 2024-09-20T19:05:16.432258+0000 mgr.a (mgr.14152) 79 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:18.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: cephadm 2024-09-20T19:05:16.547240+0000 mgr.a (mgr.14152) 80 : cephadm [INF] Updating smithi082:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:18.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: cephadm 2024-09-20T19:05:16.547240+0000 mgr.a (mgr.14152) 80 : cephadm [INF] Updating smithi082:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:18.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: cephadm 2024-09-20T19:05:16.547771+0000 mgr.a (mgr.14152) 81 : cephadm [INF] Updating smithi018:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:18.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: cephadm 2024-09-20T19:05:16.547771+0000 mgr.a (mgr.14152) 81 : cephadm [INF] Updating smithi018:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:18.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: cephadm 2024-09-20T19:05:16.548302+0000 mgr.a (mgr.14152) 82 : cephadm [INF] Updating smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:18.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: cephadm 2024-09-20T19:05:16.548302+0000 mgr.a (mgr.14152) 82 : cephadm [INF] Updating smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:18.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.672152+0000 mon.a (mon.0) 228 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.672152+0000 mon.a (mon.0) 228 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.677853+0000 mon.a (mon.0) 229 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.055 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.677853+0000 mon.a (mon.0) 229 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.055 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.683269+0000 mon.a (mon.0) 230 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.055 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.683269+0000 mon.a (mon.0) 230 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.055 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.688284+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.055 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.688284+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.055 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.693557+0000 mon.a (mon.0) 232 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.693557+0000 mon.a (mon.0) 232 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.698389+0000 mon.a (mon.0) 233 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.698389+0000 mon.a (mon.0) 233 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.704625+0000 mon.a (mon.0) 234 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.704625+0000 mon.a (mon.0) 234 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.740402+0000 mon.a (mon.0) 235 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.740402+0000 mon.a (mon.0) 235 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.745875+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.745875+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.750918+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.750918+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.756233+0000 mon.a (mon.0) 238 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.756233+0000 mon.a (mon.0) 238 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: cephadm 2024-09-20T19:05:16.756995+0000 mgr.a (mgr.14152) 83 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-20T19:05:18.057 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: cephadm 2024-09-20T19:05:16.756995+0000 mgr.a (mgr.14152) 83 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-20T19:05:18.057 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.757554+0000 mon.a (mon.0) 239 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:18.057 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.757554+0000 mon.a (mon.0) 239 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:18.057 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.758913+0000 mon.a (mon.0) 240 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:05:18.057 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.758913+0000 mon.a (mon.0) 240 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:05:18.057 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.760400+0000 mon.a (mon.0) 241 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:18.057 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:16.760400+0000 mon.a (mon.0) 241 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:18.057 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: cephadm 2024-09-20T19:05:16.762053+0000 mgr.a (mgr.14152) 84 : cephadm [INF] Reconfiguring daemon mon.a on smithi018 2024-09-20T19:05:18.057 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: cephadm 2024-09-20T19:05:16.762053+0000 mgr.a (mgr.14152) 84 : cephadm [INF] Reconfiguring daemon mon.a on smithi018 2024-09-20T19:05:18.057 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:17.266443+0000 mon.a (mon.0) 242 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.057 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:17 smithi137 bash[25001]: audit 2024-09-20T19:05:17.266443+0000 mon.a (mon.0) 242 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.679 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:04.430022+0000 mgr.a (mgr.14152) 70 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:18.679 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:04.430022+0000 mgr.a (mgr.14152) 70 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:18.679 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:05.040811+0000 mon.a (mon.0) 163 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:18.679 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:05.040811+0000 mon.a (mon.0) 163 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:18.680 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:05.045618+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:05:18.680 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:05.045618+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:05:18.680 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:05.045985+0000 mon.a (mon.0) 165 : cluster [INF] mon.a calling monitor election 2024-09-20T19:05:18.680 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:05.045985+0000 mon.a (mon.0) 165 : cluster [INF] mon.a calling monitor election 2024-09-20T19:05:18.680 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:05.066644+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:18.680 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:05.066644+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:18.680 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:06.040729+0000 mon.a (mon.0) 167 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:18.681 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:06.040729+0000 mon.a (mon.0) 167 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:18.681 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:06.430381+0000 mgr.a (mgr.14152) 71 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:18.681 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:06.430381+0000 mgr.a (mgr.14152) 71 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:18.681 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:07.040542+0000 mon.a (mon.0) 168 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:18.681 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:07.040542+0000 mon.a (mon.0) 168 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:18.681 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:07.043033+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-20T19:05:18.681 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:07.043033+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-20T19:05:18.681 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:08.040765+0000 mon.a (mon.0) 169 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:18.682 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:08.040765+0000 mon.a (mon.0) 169 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:18.682 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:08.430766+0000 mgr.a (mgr.14152) 72 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:18.682 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:08.430766+0000 mgr.a (mgr.14152) 72 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:18.682 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:09.040839+0000 mon.a (mon.0) 170 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:18.683 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:09.040839+0000 mon.a (mon.0) 170 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:18.683 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:09.265988+0000 mon.a (mon.0) 171 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.683 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:09.265988+0000 mon.a (mon.0) 171 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.683 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:10.041179+0000 mon.a (mon.0) 172 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:18.683 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:10.041179+0000 mon.a (mon.0) 172 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:18.683 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.088922+0000 mon.a (mon.0) 173 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-20T19:05:18.684 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.088922+0000 mon.a (mon.0) 173 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-20T19:05:18.684 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.095239+0000 mon.a (mon.0) 174 : cluster [DBG] monmap epoch 2 2024-09-20T19:05:18.684 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.095239+0000 mon.a (mon.0) 174 : cluster [DBG] monmap epoch 2 2024-09-20T19:05:18.684 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.095270+0000 mon.a (mon.0) 175 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:05:18.684 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.095270+0000 mon.a (mon.0) 175 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:05:18.684 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.095292+0000 mon.a (mon.0) 176 : cluster [DBG] last_changed 2024-09-20T19:05:05.040265+0000 2024-09-20T19:05:18.685 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.095292+0000 mon.a (mon.0) 176 : cluster [DBG] last_changed 2024-09-20T19:05:05.040265+0000 2024-09-20T19:05:18.685 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.095310+0000 mon.a (mon.0) 177 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:05:18.685 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.095310+0000 mon.a (mon.0) 177 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:05:18.685 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.095329+0000 mon.a (mon.0) 178 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:05:18.685 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.095329+0000 mon.a (mon.0) 178 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:05:18.685 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.095354+0000 mon.a (mon.0) 179 : cluster [DBG] election_strategy: 1 2024-09-20T19:05:18.686 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.095354+0000 mon.a (mon.0) 179 : cluster [DBG] election_strategy: 1 2024-09-20T19:05:18.686 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.095374+0000 mon.a (mon.0) 180 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:05:18.686 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.095374+0000 mon.a (mon.0) 180 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:05:18.686 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.095396+0000 mon.a (mon.0) 181 : cluster [DBG] 1: [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] mon.c 2024-09-20T19:05:18.686 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.095396+0000 mon.a (mon.0) 181 : cluster [DBG] 1: [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] mon.c 2024-09-20T19:05:18.686 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.118314+0000 mon.a (mon.0) 182 : cluster [DBG] fsmap 2024-09-20T19:05:18.686 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.118314+0000 mon.a (mon.0) 182 : cluster [DBG] fsmap 2024-09-20T19:05:18.686 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.118365+0000 mon.a (mon.0) 183 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:05:18.687 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.118365+0000 mon.a (mon.0) 183 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:05:18.687 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.118659+0000 mon.a (mon.0) 184 : cluster [DBG] mgrmap e13: a(active, since 91s) 2024-09-20T19:05:18.687 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.118659+0000 mon.a (mon.0) 184 : cluster [DBG] mgrmap e13: a(active, since 91s) 2024-09-20T19:05:18.687 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.118907+0000 mon.a (mon.0) 185 : cluster [INF] overall HEALTH_OK 2024-09-20T19:05:18.687 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.118907+0000 mon.a (mon.0) 185 : cluster [INF] overall HEALTH_OK 2024-09-20T19:05:18.687 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:10.125156+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.688 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:10.125156+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.688 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:10.131815+0000 mon.a (mon.0) 187 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.688 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:10.131815+0000 mon.a (mon.0) 187 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.688 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:10.139112+0000 mon.a (mon.0) 188 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.688 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:10.139112+0000 mon.a (mon.0) 188 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.688 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:10.145733+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.688 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:10.145733+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.688 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:10.195185+0000 mon.a (mon.0) 190 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:18.689 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:10.195185+0000 mon.a (mon.0) 190 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:18.689 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:10.265673+0000 mon.a (mon.0) 191 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.689 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:10.265673+0000 mon.a (mon.0) 191 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.689 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.431161+0000 mgr.a (mgr.14152) 73 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:18.689 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:10.431161+0000 mgr.a (mgr.14152) 73 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:18.689 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:11.041504+0000 mon.a (mon.0) 192 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:18.690 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:11.041504+0000 mon.a (mon.0) 192 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:18.690 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:11.273084+0000 mon.a (mon.0) 194 : cluster [INF] mon.a calling monitor election 2024-09-20T19:05:18.690 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:11.273084+0000 mon.a (mon.0) 194 : cluster [INF] mon.a calling monitor election 2024-09-20T19:05:18.690 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:11.274124+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-20T19:05:18.690 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:11.274124+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-20T19:05:18.691 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:11.294876+0000 mon.a (mon.0) 195 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:05:18.691 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:11.294876+0000 mon.a (mon.0) 195 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:05:18.691 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:11.295168+0000 mon.a (mon.0) 196 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.691 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:11.295168+0000 mon.a (mon.0) 196 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.691 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:11.295372+0000 mon.a (mon.0) 197 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:18.691 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:11.295372+0000 mon.a (mon.0) 197 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:05:18.691 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:11.438931+0000 mon.a (mon.0) 198 : audit [DBG] from='client.? 172.21.15.137:0/2907335250' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-20T19:05:18.691 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:11.438931+0000 mon.a (mon.0) 198 : audit [DBG] from='client.? 172.21.15.137:0/2907335250' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-20T19:05:18.691 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:12.266195+0000 mon.a (mon.0) 199 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.691 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:12.266195+0000 mon.a (mon.0) 199 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.692 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:12.431556+0000 mgr.a (mgr.14152) 74 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:18.692 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:12.431556+0000 mgr.a (mgr.14152) 74 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:18.692 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:13.266364+0000 mon.a (mon.0) 200 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.692 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:13.266364+0000 mon.a (mon.0) 200 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.692 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:14.266021+0000 mon.a (mon.0) 201 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.692 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:14.266021+0000 mon.a (mon.0) 201 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.692 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:14.431942+0000 mgr.a (mgr.14152) 75 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:18.692 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:14.431942+0000 mgr.a (mgr.14152) 75 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:18.692 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:15.266749+0000 mon.a (mon.0) 202 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.693 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:15.266749+0000 mon.a (mon.0) 202 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.693 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.266657+0000 mon.a (mon.0) 203 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.693 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.266657+0000 mon.a (mon.0) 203 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.693 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.294981+0000 mon.a (mon.0) 204 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-20T19:05:18.693 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.294981+0000 mon.a (mon.0) 204 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-20T19:05:18.693 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.301067+0000 mon.a (mon.0) 205 : cluster [DBG] monmap epoch 3 2024-09-20T19:05:18.693 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.301067+0000 mon.a (mon.0) 205 : cluster [DBG] monmap epoch 3 2024-09-20T19:05:18.693 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.301101+0000 mon.a (mon.0) 206 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:05:18.693 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.301101+0000 mon.a (mon.0) 206 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:05:18.693 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.301120+0000 mon.a (mon.0) 207 : cluster [DBG] last_changed 2024-09-20T19:05:11.266249+0000 2024-09-20T19:05:18.693 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.301120+0000 mon.a (mon.0) 207 : cluster [DBG] last_changed 2024-09-20T19:05:11.266249+0000 2024-09-20T19:05:18.693 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.301140+0000 mon.a (mon.0) 208 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:05:18.694 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.301140+0000 mon.a (mon.0) 208 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:05:18.694 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.301161+0000 mon.a (mon.0) 209 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:05:18.694 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.301161+0000 mon.a (mon.0) 209 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:05:18.694 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.301183+0000 mon.a (mon.0) 210 : cluster [DBG] election_strategy: 1 2024-09-20T19:05:18.694 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.301183+0000 mon.a (mon.0) 210 : cluster [DBG] election_strategy: 1 2024-09-20T19:05:18.694 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.301205+0000 mon.a (mon.0) 211 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:05:18.694 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.301205+0000 mon.a (mon.0) 211 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:05:18.694 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.301228+0000 mon.a (mon.0) 212 : cluster [DBG] 1: [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] mon.c 2024-09-20T19:05:18.694 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.301228+0000 mon.a (mon.0) 212 : cluster [DBG] 1: [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] mon.c 2024-09-20T19:05:18.694 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.301251+0000 mon.a (mon.0) 213 : cluster [DBG] 2: [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] mon.b 2024-09-20T19:05:18.694 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.301251+0000 mon.a (mon.0) 213 : cluster [DBG] 2: [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] mon.b 2024-09-20T19:05:18.694 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.322347+0000 mon.a (mon.0) 214 : cluster [DBG] fsmap 2024-09-20T19:05:18.695 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.322347+0000 mon.a (mon.0) 214 : cluster [DBG] fsmap 2024-09-20T19:05:18.695 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.322398+0000 mon.a (mon.0) 215 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:05:18.695 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.322398+0000 mon.a (mon.0) 215 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:05:18.695 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.322689+0000 mon.a (mon.0) 216 : cluster [DBG] mgrmap e13: a(active, since 97s) 2024-09-20T19:05:18.695 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.322689+0000 mon.a (mon.0) 216 : cluster [DBG] mgrmap e13: a(active, since 97s) 2024-09-20T19:05:18.695 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.323005+0000 mon.a (mon.0) 217 : cluster [WRN] Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-20T19:05:18.695 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.323005+0000 mon.a (mon.0) 217 : cluster [WRN] Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-20T19:05:18.695 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.329725+0000 mon.a (mon.0) 218 : cluster [WRN] Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-20T19:05:18.695 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.329725+0000 mon.a (mon.0) 218 : cluster [WRN] Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-20T19:05:18.695 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.329760+0000 mon.a (mon.0) 219 : cluster [WRN] [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-20T19:05:18.695 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.329760+0000 mon.a (mon.0) 219 : cluster [WRN] [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-20T19:05:18.695 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.329776+0000 mon.a (mon.0) 220 : cluster [WRN] mon.b (rank 2) addr [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] is down (out of quorum) 2024-09-20T19:05:18.695 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.329776+0000 mon.a (mon.0) 220 : cluster [WRN] mon.b (rank 2) addr [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] is down (out of quorum) 2024-09-20T19:05:18.695 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.334249+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.334249+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.339311+0000 mon.a (mon.0) 222 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.339311+0000 mon.a (mon.0) 222 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.344732+0000 mon.a (mon.0) 223 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.344732+0000 mon.a (mon.0) 223 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.350046+0000 mon.a (mon.0) 224 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.350046+0000 mon.a (mon.0) 224 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.355174+0000 mon.a (mon.0) 225 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.355174+0000 mon.a (mon.0) 225 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.356748+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.356748+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.358753+0000 mon.a (mon.0) 227 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.358753+0000 mon.a (mon.0) 227 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cephadm 2024-09-20T19:05:16.361325+0000 mgr.a (mgr.14152) 76 : cephadm [INF] Updating smithi018:/etc/ceph/ceph.conf 2024-09-20T19:05:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cephadm 2024-09-20T19:05:16.361325+0000 mgr.a (mgr.14152) 76 : cephadm [INF] Updating smithi018:/etc/ceph/ceph.conf 2024-09-20T19:05:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cephadm 2024-09-20T19:05:16.362222+0000 mgr.a (mgr.14152) 77 : cephadm [INF] Updating smithi082:/etc/ceph/ceph.conf 2024-09-20T19:05:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cephadm 2024-09-20T19:05:16.362222+0000 mgr.a (mgr.14152) 77 : cephadm [INF] Updating smithi082:/etc/ceph/ceph.conf 2024-09-20T19:05:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cephadm 2024-09-20T19:05:16.363916+0000 mgr.a (mgr.14152) 78 : cephadm [INF] Updating smithi137:/etc/ceph/ceph.conf 2024-09-20T19:05:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cephadm 2024-09-20T19:05:16.363916+0000 mgr.a (mgr.14152) 78 : cephadm [INF] Updating smithi137:/etc/ceph/ceph.conf 2024-09-20T19:05:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.432258+0000 mgr.a (mgr.14152) 79 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:16.432258+0000 mgr.a (mgr.14152) 79 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cephadm 2024-09-20T19:05:16.547240+0000 mgr.a (mgr.14152) 80 : cephadm [INF] Updating smithi082:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cephadm 2024-09-20T19:05:16.547240+0000 mgr.a (mgr.14152) 80 : cephadm [INF] Updating smithi082:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cephadm 2024-09-20T19:05:16.547771+0000 mgr.a (mgr.14152) 81 : cephadm [INF] Updating smithi018:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cephadm 2024-09-20T19:05:16.547771+0000 mgr.a (mgr.14152) 81 : cephadm [INF] Updating smithi018:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cephadm 2024-09-20T19:05:16.548302+0000 mgr.a (mgr.14152) 82 : cephadm [INF] Updating smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cephadm 2024-09-20T19:05:16.548302+0000 mgr.a (mgr.14152) 82 : cephadm [INF] Updating smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:05:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.672152+0000 mon.a (mon.0) 228 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.672152+0000 mon.a (mon.0) 228 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.677853+0000 mon.a (mon.0) 229 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.677853+0000 mon.a (mon.0) 229 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.683269+0000 mon.a (mon.0) 230 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.683269+0000 mon.a (mon.0) 230 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.688284+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.688284+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.693557+0000 mon.a (mon.0) 232 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.693557+0000 mon.a (mon.0) 232 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.698389+0000 mon.a (mon.0) 233 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.698389+0000 mon.a (mon.0) 233 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.704625+0000 mon.a (mon.0) 234 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.704625+0000 mon.a (mon.0) 234 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.740402+0000 mon.a (mon.0) 235 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.740402+0000 mon.a (mon.0) 235 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.745875+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.745875+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.750918+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.750918+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.756233+0000 mon.a (mon.0) 238 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.756233+0000 mon.a (mon.0) 238 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:18.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cephadm 2024-09-20T19:05:16.756995+0000 mgr.a (mgr.14152) 83 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-20T19:05:18.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cephadm 2024-09-20T19:05:16.756995+0000 mgr.a (mgr.14152) 83 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-20T19:05:18.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.757554+0000 mon.a (mon.0) 239 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:18.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.757554+0000 mon.a (mon.0) 239 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:18.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.758913+0000 mon.a (mon.0) 240 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:05:18.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.758913+0000 mon.a (mon.0) 240 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:05:18.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.760400+0000 mon.a (mon.0) 241 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:18.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:16.760400+0000 mon.a (mon.0) 241 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:18.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cephadm 2024-09-20T19:05:16.762053+0000 mgr.a (mgr.14152) 84 : cephadm [INF] Reconfiguring daemon mon.a on smithi018 2024-09-20T19:05:18.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cephadm 2024-09-20T19:05:16.762053+0000 mgr.a (mgr.14152) 84 : cephadm [INF] Reconfiguring daemon mon.a on smithi018 2024-09-20T19:05:18.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:17.266443+0000 mon.a (mon.0) 242 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: audit 2024-09-20T19:05:17.266443+0000 mon.a (mon.0) 242 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:18.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:13.270187+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-20T19:05:18.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:13.270187+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-20T19:05:18.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.316323+0000 mon.a (mon.0) 244 : cluster [INF] mon.a calling monitor election 2024-09-20T19:05:18.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.316323+0000 mon.a (mon.0) 244 : cluster [INF] mon.a calling monitor election 2024-09-20T19:05:18.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.316681+0000 mon.c (mon.1) 3 : cluster [INF] mon.c calling monitor election 2024-09-20T19:05:18.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.316681+0000 mon.c (mon.1) 3 : cluster [INF] mon.c calling monitor election 2024-09-20T19:05:18.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.317309+0000 mon.b (mon.2) 2 : cluster [INF] mon.b calling monitor election 2024-09-20T19:05:18.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.317309+0000 mon.b (mon.2) 2 : cluster [INF] mon.b calling monitor election 2024-09-20T19:05:18.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.338534+0000 mon.a (mon.0) 245 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-20T19:05:18.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.338534+0000 mon.a (mon.0) 245 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-20T19:05:18.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.349009+0000 mon.a (mon.0) 246 : cluster [DBG] monmap epoch 3 2024-09-20T19:05:18.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.349009+0000 mon.a (mon.0) 246 : cluster [DBG] monmap epoch 3 2024-09-20T19:05:18.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.349040+0000 mon.a (mon.0) 247 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:05:18.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.349040+0000 mon.a (mon.0) 247 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:05:18.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.349079+0000 mon.a (mon.0) 248 : cluster [DBG] last_changed 2024-09-20T19:05:11.266249+0000 2024-09-20T19:05:18.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.349079+0000 mon.a (mon.0) 248 : cluster [DBG] last_changed 2024-09-20T19:05:11.266249+0000 2024-09-20T19:05:18.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.349111+0000 mon.a (mon.0) 249 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:05:18.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.349111+0000 mon.a (mon.0) 249 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:05:18.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.349141+0000 mon.a (mon.0) 250 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:05:18.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.349141+0000 mon.a (mon.0) 250 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:05:18.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.349174+0000 mon.a (mon.0) 251 : cluster [DBG] election_strategy: 1 2024-09-20T19:05:18.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.349174+0000 mon.a (mon.0) 251 : cluster [DBG] election_strategy: 1 2024-09-20T19:05:18.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.349203+0000 mon.a (mon.0) 252 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:05:18.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.349203+0000 mon.a (mon.0) 252 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:05:18.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.349234+0000 mon.a (mon.0) 253 : cluster [DBG] 1: [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] mon.c 2024-09-20T19:05:18.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.349234+0000 mon.a (mon.0) 253 : cluster [DBG] 1: [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] mon.c 2024-09-20T19:05:18.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.349268+0000 mon.a (mon.0) 254 : cluster [DBG] 2: [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] mon.b 2024-09-20T19:05:18.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.349268+0000 mon.a (mon.0) 254 : cluster [DBG] 2: [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] mon.b 2024-09-20T19:05:18.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.350333+0000 mon.a (mon.0) 255 : cluster [DBG] fsmap 2024-09-20T19:05:18.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.350333+0000 mon.a (mon.0) 255 : cluster [DBG] fsmap 2024-09-20T19:05:18.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.350400+0000 mon.a (mon.0) 256 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:05:18.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.350400+0000 mon.a (mon.0) 256 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:05:18.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.350689+0000 mon.a (mon.0) 257 : cluster [DBG] mgrmap e13: a(active, since 99s) 2024-09-20T19:05:18.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.350689+0000 mon.a (mon.0) 257 : cluster [DBG] mgrmap e13: a(active, since 99s) 2024-09-20T19:05:18.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.350993+0000 mon.a (mon.0) 258 : cluster [INF] Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-20T19:05:18.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.350993+0000 mon.a (mon.0) 258 : cluster [INF] Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-20T19:05:18.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.351030+0000 mon.a (mon.0) 259 : cluster [INF] Cluster is now healthy 2024-09-20T19:05:18.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.351030+0000 mon.a (mon.0) 259 : cluster [INF] Cluster is now healthy 2024-09-20T19:05:18.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.356633+0000 mon.a (mon.0) 260 : cluster [INF] overall HEALTH_OK 2024-09-20T19:05:18.704 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:18 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.356633+0000 mon.a (mon.0) 260 : cluster [INF] overall HEALTH_OK 2024-09-20T19:05:18.882 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:13.270187+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-20T19:05:18.882 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:13.270187+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-20T19:05:18.882 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.316323+0000 mon.a (mon.0) 244 : cluster [INF] mon.a calling monitor election 2024-09-20T19:05:18.882 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.316323+0000 mon.a (mon.0) 244 : cluster [INF] mon.a calling monitor election 2024-09-20T19:05:18.882 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.316681+0000 mon.c (mon.1) 3 : cluster [INF] mon.c calling monitor election 2024-09-20T19:05:18.882 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.316681+0000 mon.c (mon.1) 3 : cluster [INF] mon.c calling monitor election 2024-09-20T19:05:18.882 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.317309+0000 mon.b (mon.2) 2 : cluster [INF] mon.b calling monitor election 2024-09-20T19:05:18.883 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.317309+0000 mon.b (mon.2) 2 : cluster [INF] mon.b calling monitor election 2024-09-20T19:05:18.883 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.338534+0000 mon.a (mon.0) 245 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-20T19:05:18.883 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.338534+0000 mon.a (mon.0) 245 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-20T19:05:18.883 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.349009+0000 mon.a (mon.0) 246 : cluster [DBG] monmap epoch 3 2024-09-20T19:05:18.883 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.349009+0000 mon.a (mon.0) 246 : cluster [DBG] monmap epoch 3 2024-09-20T19:05:18.883 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.349040+0000 mon.a (mon.0) 247 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:05:18.883 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.349040+0000 mon.a (mon.0) 247 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:05:18.883 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.349079+0000 mon.a (mon.0) 248 : cluster [DBG] last_changed 2024-09-20T19:05:11.266249+0000 2024-09-20T19:05:18.883 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.349079+0000 mon.a (mon.0) 248 : cluster [DBG] last_changed 2024-09-20T19:05:11.266249+0000 2024-09-20T19:05:18.883 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.349111+0000 mon.a (mon.0) 249 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:05:18.883 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.349111+0000 mon.a (mon.0) 249 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:05:18.883 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.349141+0000 mon.a (mon.0) 250 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:05:18.884 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.349141+0000 mon.a (mon.0) 250 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:05:18.884 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.349174+0000 mon.a (mon.0) 251 : cluster [DBG] election_strategy: 1 2024-09-20T19:05:18.884 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.349174+0000 mon.a (mon.0) 251 : cluster [DBG] election_strategy: 1 2024-09-20T19:05:18.884 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.349203+0000 mon.a (mon.0) 252 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:05:18.884 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.349203+0000 mon.a (mon.0) 252 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:05:18.884 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.349234+0000 mon.a (mon.0) 253 : cluster [DBG] 1: [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] mon.c 2024-09-20T19:05:18.884 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.349234+0000 mon.a (mon.0) 253 : cluster [DBG] 1: [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] mon.c 2024-09-20T19:05:18.884 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.349268+0000 mon.a (mon.0) 254 : cluster [DBG] 2: [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] mon.b 2024-09-20T19:05:18.884 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.349268+0000 mon.a (mon.0) 254 : cluster [DBG] 2: [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] mon.b 2024-09-20T19:05:18.884 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.350333+0000 mon.a (mon.0) 255 : cluster [DBG] fsmap 2024-09-20T19:05:18.884 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.350333+0000 mon.a (mon.0) 255 : cluster [DBG] fsmap 2024-09-20T19:05:18.884 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.350400+0000 mon.a (mon.0) 256 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:05:18.884 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.350400+0000 mon.a (mon.0) 256 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:05:18.885 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.350689+0000 mon.a (mon.0) 257 : cluster [DBG] mgrmap e13: a(active, since 99s) 2024-09-20T19:05:18.885 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.350689+0000 mon.a (mon.0) 257 : cluster [DBG] mgrmap e13: a(active, since 99s) 2024-09-20T19:05:18.885 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.350993+0000 mon.a (mon.0) 258 : cluster [INF] Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-20T19:05:18.885 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.350993+0000 mon.a (mon.0) 258 : cluster [INF] Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-20T19:05:18.885 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.351030+0000 mon.a (mon.0) 259 : cluster [INF] Cluster is now healthy 2024-09-20T19:05:18.885 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.351030+0000 mon.a (mon.0) 259 : cluster [INF] Cluster is now healthy 2024-09-20T19:05:18.885 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.356633+0000 mon.a (mon.0) 260 : cluster [INF] overall HEALTH_OK 2024-09-20T19:05:18.885 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:18 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.356633+0000 mon.a (mon.0) 260 : cluster [INF] overall HEALTH_OK 2024-09-20T19:05:19.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:13.270187+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-20T19:05:19.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:13.270187+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-20T19:05:19.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.316323+0000 mon.a (mon.0) 244 : cluster [INF] mon.a calling monitor election 2024-09-20T19:05:19.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.316323+0000 mon.a (mon.0) 244 : cluster [INF] mon.a calling monitor election 2024-09-20T19:05:19.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.316681+0000 mon.c (mon.1) 3 : cluster [INF] mon.c calling monitor election 2024-09-20T19:05:19.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.316681+0000 mon.c (mon.1) 3 : cluster [INF] mon.c calling monitor election 2024-09-20T19:05:19.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.317309+0000 mon.b (mon.2) 2 : cluster [INF] mon.b calling monitor election 2024-09-20T19:05:19.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.317309+0000 mon.b (mon.2) 2 : cluster [INF] mon.b calling monitor election 2024-09-20T19:05:19.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.338534+0000 mon.a (mon.0) 245 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-20T19:05:19.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.338534+0000 mon.a (mon.0) 245 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-20T19:05:19.055 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.349009+0000 mon.a (mon.0) 246 : cluster [DBG] monmap epoch 3 2024-09-20T19:05:19.055 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.349009+0000 mon.a (mon.0) 246 : cluster [DBG] monmap epoch 3 2024-09-20T19:05:19.055 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.349040+0000 mon.a (mon.0) 247 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:05:19.055 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.349040+0000 mon.a (mon.0) 247 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:05:19.055 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.349079+0000 mon.a (mon.0) 248 : cluster [DBG] last_changed 2024-09-20T19:05:11.266249+0000 2024-09-20T19:05:19.055 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.349079+0000 mon.a (mon.0) 248 : cluster [DBG] last_changed 2024-09-20T19:05:11.266249+0000 2024-09-20T19:05:19.055 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.349111+0000 mon.a (mon.0) 249 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:05:19.055 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.349111+0000 mon.a (mon.0) 249 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:05:19.055 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.349141+0000 mon.a (mon.0) 250 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:05:19.055 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.349141+0000 mon.a (mon.0) 250 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:05:19.055 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.349174+0000 mon.a (mon.0) 251 : cluster [DBG] election_strategy: 1 2024-09-20T19:05:19.055 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.349174+0000 mon.a (mon.0) 251 : cluster [DBG] election_strategy: 1 2024-09-20T19:05:19.055 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.349203+0000 mon.a (mon.0) 252 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:05:19.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.349203+0000 mon.a (mon.0) 252 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:05:19.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.349234+0000 mon.a (mon.0) 253 : cluster [DBG] 1: [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] mon.c 2024-09-20T19:05:19.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.349234+0000 mon.a (mon.0) 253 : cluster [DBG] 1: [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] mon.c 2024-09-20T19:05:19.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.349268+0000 mon.a (mon.0) 254 : cluster [DBG] 2: [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] mon.b 2024-09-20T19:05:19.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.349268+0000 mon.a (mon.0) 254 : cluster [DBG] 2: [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] mon.b 2024-09-20T19:05:19.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.350333+0000 mon.a (mon.0) 255 : cluster [DBG] fsmap 2024-09-20T19:05:19.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.350333+0000 mon.a (mon.0) 255 : cluster [DBG] fsmap 2024-09-20T19:05:19.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.350400+0000 mon.a (mon.0) 256 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:05:19.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.350400+0000 mon.a (mon.0) 256 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-20T19:05:19.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.350689+0000 mon.a (mon.0) 257 : cluster [DBG] mgrmap e13: a(active, since 99s) 2024-09-20T19:05:19.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.350689+0000 mon.a (mon.0) 257 : cluster [DBG] mgrmap e13: a(active, since 99s) 2024-09-20T19:05:19.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.350993+0000 mon.a (mon.0) 258 : cluster [INF] Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-20T19:05:19.056 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.350993+0000 mon.a (mon.0) 258 : cluster [INF] Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-20T19:05:19.057 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.351030+0000 mon.a (mon.0) 259 : cluster [INF] Cluster is now healthy 2024-09-20T19:05:19.057 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.351030+0000 mon.a (mon.0) 259 : cluster [INF] Cluster is now healthy 2024-09-20T19:05:19.057 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.356633+0000 mon.a (mon.0) 260 : cluster [INF] overall HEALTH_OK 2024-09-20T19:05:19.057 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:18 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.356633+0000 mon.a (mon.0) 260 : cluster [INF] overall HEALTH_OK 2024-09-20T19:05:19.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:19 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.432624+0000 mgr.a (mgr.14152) 85 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:19.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:19 smithi082 bash[24745]: cluster 2024-09-20T19:05:18.432624+0000 mgr.a (mgr.14152) 85 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:19.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:19 smithi082 bash[24745]: audit 2024-09-20T19:05:19.267160+0000 mon.a (mon.0) 261 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:19.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:19 smithi082 bash[24745]: audit 2024-09-20T19:05:19.267160+0000 mon.a (mon.0) 261 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:19.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:19 smithi082 bash[24745]: audit 2024-09-20T19:05:19.293326+0000 mon.a (mon.0) 262 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:19.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:19 smithi082 bash[24745]: audit 2024-09-20T19:05:19.293326+0000 mon.a (mon.0) 262 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:19.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:19 smithi082 bash[24745]: audit 2024-09-20T19:05:19.298413+0000 mon.a (mon.0) 263 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:19.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:19 smithi082 bash[24745]: audit 2024-09-20T19:05:19.298413+0000 mon.a (mon.0) 263 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:19.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:19 smithi082 bash[24745]: audit 2024-09-20T19:05:19.300121+0000 mon.a (mon.0) 264 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:19.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:19 smithi082 bash[24745]: audit 2024-09-20T19:05:19.300121+0000 mon.a (mon.0) 264 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:19.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:19 smithi082 bash[24745]: audit 2024-09-20T19:05:19.301383+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:05:19.952 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:19 smithi082 bash[24745]: audit 2024-09-20T19:05:19.301383+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:05:19.952 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:19 smithi082 bash[24745]: audit 2024-09-20T19:05:19.302647+0000 mon.a (mon.0) 266 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:19.952 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:19 smithi082 bash[24745]: audit 2024-09-20T19:05:19.302647+0000 mon.a (mon.0) 266 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:20.053 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:19 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.432624+0000 mgr.a (mgr.14152) 85 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:20.053 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:19 smithi137 bash[25001]: cluster 2024-09-20T19:05:18.432624+0000 mgr.a (mgr.14152) 85 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:20.053 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:19 smithi137 bash[25001]: audit 2024-09-20T19:05:19.267160+0000 mon.a (mon.0) 261 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:20.053 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:19 smithi137 bash[25001]: audit 2024-09-20T19:05:19.267160+0000 mon.a (mon.0) 261 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:20.053 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:19 smithi137 bash[25001]: audit 2024-09-20T19:05:19.293326+0000 mon.a (mon.0) 262 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:20.053 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:19 smithi137 bash[25001]: audit 2024-09-20T19:05:19.293326+0000 mon.a (mon.0) 262 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:20.053 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:19 smithi137 bash[25001]: audit 2024-09-20T19:05:19.298413+0000 mon.a (mon.0) 263 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:20.053 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:19 smithi137 bash[25001]: audit 2024-09-20T19:05:19.298413+0000 mon.a (mon.0) 263 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:20.053 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:19 smithi137 bash[25001]: audit 2024-09-20T19:05:19.300121+0000 mon.a (mon.0) 264 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:20.053 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:19 smithi137 bash[25001]: audit 2024-09-20T19:05:19.300121+0000 mon.a (mon.0) 264 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:20.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:19 smithi137 bash[25001]: audit 2024-09-20T19:05:19.301383+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:05:20.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:19 smithi137 bash[25001]: audit 2024-09-20T19:05:19.301383+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:05:20.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:19 smithi137 bash[25001]: audit 2024-09-20T19:05:19.302647+0000 mon.a (mon.0) 266 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:20.054 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:19 smithi137 bash[25001]: audit 2024-09-20T19:05:19.302647+0000 mon.a (mon.0) 266 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:20.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:19 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.432624+0000 mgr.a (mgr.14152) 85 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:20.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:19 smithi018 bash[22763]: cluster 2024-09-20T19:05:18.432624+0000 mgr.a (mgr.14152) 85 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:20.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:19 smithi018 bash[22763]: audit 2024-09-20T19:05:19.267160+0000 mon.a (mon.0) 261 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:20.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:19 smithi018 bash[22763]: audit 2024-09-20T19:05:19.267160+0000 mon.a (mon.0) 261 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:05:20.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:19 smithi018 bash[22763]: audit 2024-09-20T19:05:19.293326+0000 mon.a (mon.0) 262 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:20.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:19 smithi018 bash[22763]: audit 2024-09-20T19:05:19.293326+0000 mon.a (mon.0) 262 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:20.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:19 smithi018 bash[22763]: audit 2024-09-20T19:05:19.298413+0000 mon.a (mon.0) 263 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:20.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:19 smithi018 bash[22763]: audit 2024-09-20T19:05:19.298413+0000 mon.a (mon.0) 263 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:20.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:19 smithi018 bash[22763]: audit 2024-09-20T19:05:19.300121+0000 mon.a (mon.0) 264 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:20.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:19 smithi018 bash[22763]: audit 2024-09-20T19:05:19.300121+0000 mon.a (mon.0) 264 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:20.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:19 smithi018 bash[22763]: audit 2024-09-20T19:05:19.301383+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:05:20.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:19 smithi018 bash[22763]: audit 2024-09-20T19:05:19.301383+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:05:20.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:19 smithi018 bash[22763]: audit 2024-09-20T19:05:19.302647+0000 mon.a (mon.0) 266 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:20.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:19 smithi018 bash[22763]: audit 2024-09-20T19:05:19.302647+0000 mon.a (mon.0) 266 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:20.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:20 smithi082 bash[24745]: cephadm 2024-09-20T19:05:19.299687+0000 mgr.a (mgr.14152) 86 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-20T19:05:20.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:20 smithi082 bash[24745]: cephadm 2024-09-20T19:05:19.299687+0000 mgr.a (mgr.14152) 86 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-20T19:05:20.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:20 smithi082 bash[24745]: cephadm 2024-09-20T19:05:19.304240+0000 mgr.a (mgr.14152) 87 : cephadm [INF] Reconfiguring daemon mon.b on smithi082 2024-09-20T19:05:20.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:20 smithi082 bash[24745]: cephadm 2024-09-20T19:05:19.304240+0000 mgr.a (mgr.14152) 87 : cephadm [INF] Reconfiguring daemon mon.b on smithi082 2024-09-20T19:05:21.052 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:20 smithi137 bash[25001]: cephadm 2024-09-20T19:05:19.299687+0000 mgr.a (mgr.14152) 86 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-20T19:05:21.052 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:20 smithi137 bash[25001]: cephadm 2024-09-20T19:05:19.299687+0000 mgr.a (mgr.14152) 86 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-20T19:05:21.052 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:20 smithi137 bash[25001]: cephadm 2024-09-20T19:05:19.304240+0000 mgr.a (mgr.14152) 87 : cephadm [INF] Reconfiguring daemon mon.b on smithi082 2024-09-20T19:05:21.053 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:20 smithi137 bash[25001]: cephadm 2024-09-20T19:05:19.304240+0000 mgr.a (mgr.14152) 87 : cephadm [INF] Reconfiguring daemon mon.b on smithi082 2024-09-20T19:05:21.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:20 smithi018 bash[22763]: cephadm 2024-09-20T19:05:19.299687+0000 mgr.a (mgr.14152) 86 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-20T19:05:21.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:20 smithi018 bash[22763]: cephadm 2024-09-20T19:05:19.299687+0000 mgr.a (mgr.14152) 86 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-20T19:05:21.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:20 smithi018 bash[22763]: cephadm 2024-09-20T19:05:19.304240+0000 mgr.a (mgr.14152) 87 : cephadm [INF] Reconfiguring daemon mon.b on smithi082 2024-09-20T19:05:21.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:20 smithi018 bash[22763]: cephadm 2024-09-20T19:05:19.304240+0000 mgr.a (mgr.14152) 87 : cephadm [INF] Reconfiguring daemon mon.b on smithi082 2024-09-20T19:05:21.811 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:05:21.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:21 smithi082 bash[24745]: cluster 2024-09-20T19:05:20.433074+0000 mgr.a (mgr.14152) 88 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:21.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:21 smithi082 bash[24745]: cluster 2024-09-20T19:05:20.433074+0000 mgr.a (mgr.14152) 88 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:21.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:21 smithi082 bash[24745]: audit 2024-09-20T19:05:21.440436+0000 mon.a (mon.0) 267 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:21.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:21 smithi082 bash[24745]: audit 2024-09-20T19:05:21.440436+0000 mon.a (mon.0) 267 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:21.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:21 smithi082 bash[24745]: audit 2024-09-20T19:05:21.447503+0000 mon.a (mon.0) 268 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:21.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:21 smithi082 bash[24745]: audit 2024-09-20T19:05:21.447503+0000 mon.a (mon.0) 268 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:21.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:21 smithi082 bash[24745]: audit 2024-09-20T19:05:21.449635+0000 mon.a (mon.0) 269 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:21.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:21 smithi082 bash[24745]: audit 2024-09-20T19:05:21.449635+0000 mon.a (mon.0) 269 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:21.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:21 smithi082 bash[24745]: audit 2024-09-20T19:05:21.451371+0000 mon.a (mon.0) 270 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:05:21.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:21 smithi082 bash[24745]: audit 2024-09-20T19:05:21.451371+0000 mon.a (mon.0) 270 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:05:21.952 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:21 smithi082 bash[24745]: audit 2024-09-20T19:05:21.453005+0000 mon.a (mon.0) 271 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:21.952 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:21 smithi082 bash[24745]: audit 2024-09-20T19:05:21.453005+0000 mon.a (mon.0) 271 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:22.025 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:21 smithi137 bash[25001]: cluster 2024-09-20T19:05:20.433074+0000 mgr.a (mgr.14152) 88 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:22.025 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:21 smithi137 bash[25001]: cluster 2024-09-20T19:05:20.433074+0000 mgr.a (mgr.14152) 88 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:22.025 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:21 smithi137 bash[25001]: audit 2024-09-20T19:05:21.440436+0000 mon.a (mon.0) 267 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:22.026 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:21 smithi137 bash[25001]: audit 2024-09-20T19:05:21.440436+0000 mon.a (mon.0) 267 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:22.026 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:21 smithi137 bash[25001]: audit 2024-09-20T19:05:21.447503+0000 mon.a (mon.0) 268 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:22.026 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:21 smithi137 bash[25001]: audit 2024-09-20T19:05:21.447503+0000 mon.a (mon.0) 268 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:22.026 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:21 smithi137 bash[25001]: audit 2024-09-20T19:05:21.449635+0000 mon.a (mon.0) 269 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:22.026 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:21 smithi137 bash[25001]: audit 2024-09-20T19:05:21.449635+0000 mon.a (mon.0) 269 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:22.026 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:21 smithi137 bash[25001]: audit 2024-09-20T19:05:21.451371+0000 mon.a (mon.0) 270 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:05:22.026 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:21 smithi137 bash[25001]: audit 2024-09-20T19:05:21.451371+0000 mon.a (mon.0) 270 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:05:22.026 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:21 smithi137 bash[25001]: audit 2024-09-20T19:05:21.453005+0000 mon.a (mon.0) 271 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:22.026 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:21 smithi137 bash[25001]: audit 2024-09-20T19:05:21.453005+0000 mon.a (mon.0) 271 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:22.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:21 smithi018 bash[22763]: cluster 2024-09-20T19:05:20.433074+0000 mgr.a (mgr.14152) 88 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:22.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:21 smithi018 bash[22763]: cluster 2024-09-20T19:05:20.433074+0000 mgr.a (mgr.14152) 88 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:22.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:21 smithi018 bash[22763]: audit 2024-09-20T19:05:21.440436+0000 mon.a (mon.0) 267 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:22.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:21 smithi018 bash[22763]: audit 2024-09-20T19:05:21.440436+0000 mon.a (mon.0) 267 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:22.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:21 smithi018 bash[22763]: audit 2024-09-20T19:05:21.447503+0000 mon.a (mon.0) 268 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:22.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:21 smithi018 bash[22763]: audit 2024-09-20T19:05:21.447503+0000 mon.a (mon.0) 268 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:22.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:21 smithi018 bash[22763]: audit 2024-09-20T19:05:21.449635+0000 mon.a (mon.0) 269 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:22.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:21 smithi018 bash[22763]: audit 2024-09-20T19:05:21.449635+0000 mon.a (mon.0) 269 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:05:22.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:21 smithi018 bash[22763]: audit 2024-09-20T19:05:21.451371+0000 mon.a (mon.0) 270 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:05:22.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:21 smithi018 bash[22763]: audit 2024-09-20T19:05:21.451371+0000 mon.a (mon.0) 270 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:05:22.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:21 smithi018 bash[22763]: audit 2024-09-20T19:05:21.453005+0000 mon.a (mon.0) 271 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:22.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:21 smithi018 bash[22763]: audit 2024-09-20T19:05:21.453005+0000 mon.a (mon.0) 271 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:22.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:22 smithi082 bash[24745]: cephadm 2024-09-20T19:05:21.448941+0000 mgr.a (mgr.14152) 89 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-20T19:05:22.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:22 smithi082 bash[24745]: cephadm 2024-09-20T19:05:21.448941+0000 mgr.a (mgr.14152) 89 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-20T19:05:22.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:22 smithi082 bash[24745]: cephadm 2024-09-20T19:05:21.454952+0000 mgr.a (mgr.14152) 90 : cephadm [INF] Reconfiguring daemon mon.c on smithi137 2024-09-20T19:05:22.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:22 smithi082 bash[24745]: cephadm 2024-09-20T19:05:21.454952+0000 mgr.a (mgr.14152) 90 : cephadm [INF] Reconfiguring daemon mon.c on smithi137 2024-09-20T19:05:22.974 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:22 smithi137 bash[25001]: cephadm 2024-09-20T19:05:21.448941+0000 mgr.a (mgr.14152) 89 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-20T19:05:22.974 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:22 smithi137 bash[25001]: cephadm 2024-09-20T19:05:21.448941+0000 mgr.a (mgr.14152) 89 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-20T19:05:22.975 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:22 smithi137 bash[25001]: cephadm 2024-09-20T19:05:21.454952+0000 mgr.a (mgr.14152) 90 : cephadm [INF] Reconfiguring daemon mon.c on smithi137 2024-09-20T19:05:22.975 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:22 smithi137 bash[25001]: cephadm 2024-09-20T19:05:21.454952+0000 mgr.a (mgr.14152) 90 : cephadm [INF] Reconfiguring daemon mon.c on smithi137 2024-09-20T19:05:23.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:22 smithi018 bash[22763]: cephadm 2024-09-20T19:05:21.448941+0000 mgr.a (mgr.14152) 89 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-20T19:05:23.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:22 smithi018 bash[22763]: cephadm 2024-09-20T19:05:21.448941+0000 mgr.a (mgr.14152) 89 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-20T19:05:23.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:22 smithi018 bash[22763]: cephadm 2024-09-20T19:05:21.454952+0000 mgr.a (mgr.14152) 90 : cephadm [INF] Reconfiguring daemon mon.c on smithi137 2024-09-20T19:05:23.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:22 smithi018 bash[22763]: cephadm 2024-09-20T19:05:21.454952+0000 mgr.a (mgr.14152) 90 : cephadm [INF] Reconfiguring daemon mon.c on smithi137 2024-09-20T19:05:23.188 INFO:teuthology.orchestra.run.smithi018.stdout:# minimal ceph.conf for 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:05:23.188 INFO:teuthology.orchestra.run.smithi018.stdout:[global] 2024-09-20T19:05:23.189 INFO:teuthology.orchestra.run.smithi018.stdout: fsid = 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:05:23.189 INFO:teuthology.orchestra.run.smithi018.stdout: mon_host = [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] 2024-09-20T19:05:23.776 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-20T19:05:23.776 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-20T19:05:23.776 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd of=/etc/ceph/ceph.conf 2024-09-20T19:05:23.826 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-20T19:05:23.826 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-20T19:05:23.881 DEBUG:teuthology.orchestra.run.smithi082:> set -ex 2024-09-20T19:05:23.881 DEBUG:teuthology.orchestra.run.smithi082:> sudo dd of=/etc/ceph/ceph.conf 2024-09-20T19:05:23.896 DEBUG:teuthology.orchestra.run.smithi082:> set -ex 2024-09-20T19:05:23.896 DEBUG:teuthology.orchestra.run.smithi082:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-20T19:05:23.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:23 smithi082 bash[24745]: cluster 2024-09-20T19:05:22.433505+0000 mgr.a (mgr.14152) 91 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:23.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:23 smithi082 bash[24745]: cluster 2024-09-20T19:05:22.433505+0000 mgr.a (mgr.14152) 91 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:23.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:23 smithi082 bash[24745]: audit 2024-09-20T19:05:23.184905+0000 mon.a (mon.0) 272 : audit [DBG] from='client.? 172.21.15.18:0/4238007396' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:23.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:23 smithi082 bash[24745]: audit 2024-09-20T19:05:23.184905+0000 mon.a (mon.0) 272 : audit [DBG] from='client.? 172.21.15.18:0/4238007396' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:23.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:23 smithi082 bash[24745]: audit 2024-09-20T19:05:23.535005+0000 mon.a (mon.0) 273 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:23.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:23 smithi082 bash[24745]: audit 2024-09-20T19:05:23.535005+0000 mon.a (mon.0) 273 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:23.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:23 smithi082 bash[24745]: audit 2024-09-20T19:05:23.541836+0000 mon.a (mon.0) 274 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:23.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:23 smithi082 bash[24745]: audit 2024-09-20T19:05:23.541836+0000 mon.a (mon.0) 274 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:23.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:23 smithi082 bash[24745]: audit 2024-09-20T19:05:23.544219+0000 mon.a (mon.0) 275 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:23.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:23 smithi082 bash[24745]: audit 2024-09-20T19:05:23.544219+0000 mon.a (mon.0) 275 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:23.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:23 smithi082 bash[24745]: audit 2024-09-20T19:05:23.547399+0000 mon.a (mon.0) 276 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:23.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:23 smithi082 bash[24745]: audit 2024-09-20T19:05:23.547399+0000 mon.a (mon.0) 276 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:23.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:23 smithi082 bash[24745]: audit 2024-09-20T19:05:23.549097+0000 mon.a (mon.0) 277 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:23.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:23 smithi082 bash[24745]: audit 2024-09-20T19:05:23.549097+0000 mon.a (mon.0) 277 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:23.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:23 smithi082 bash[24745]: audit 2024-09-20T19:05:23.558052+0000 mon.a (mon.0) 278 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:23.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:23 smithi082 bash[24745]: audit 2024-09-20T19:05:23.558052+0000 mon.a (mon.0) 278 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:23.952 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-09-20T19:05:23.953 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd of=/etc/ceph/ceph.conf 2024-09-20T19:05:23.964 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:23 smithi137 bash[25001]: cluster 2024-09-20T19:05:22.433505+0000 mgr.a (mgr.14152) 91 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:23.964 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:23 smithi137 bash[25001]: cluster 2024-09-20T19:05:22.433505+0000 mgr.a (mgr.14152) 91 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:23.964 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:23 smithi137 bash[25001]: audit 2024-09-20T19:05:23.184905+0000 mon.a (mon.0) 272 : audit [DBG] from='client.? 172.21.15.18:0/4238007396' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:23.964 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:23 smithi137 bash[25001]: audit 2024-09-20T19:05:23.184905+0000 mon.a (mon.0) 272 : audit [DBG] from='client.? 172.21.15.18:0/4238007396' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:23.964 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:23 smithi137 bash[25001]: audit 2024-09-20T19:05:23.535005+0000 mon.a (mon.0) 273 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:23.965 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:23 smithi137 bash[25001]: audit 2024-09-20T19:05:23.535005+0000 mon.a (mon.0) 273 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:23.965 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:23 smithi137 bash[25001]: audit 2024-09-20T19:05:23.541836+0000 mon.a (mon.0) 274 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:23.965 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:23 smithi137 bash[25001]: audit 2024-09-20T19:05:23.541836+0000 mon.a (mon.0) 274 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:23.965 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:23 smithi137 bash[25001]: audit 2024-09-20T19:05:23.544219+0000 mon.a (mon.0) 275 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:23.965 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:23 smithi137 bash[25001]: audit 2024-09-20T19:05:23.544219+0000 mon.a (mon.0) 275 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:23.965 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:23 smithi137 bash[25001]: audit 2024-09-20T19:05:23.547399+0000 mon.a (mon.0) 276 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:23.965 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:23 smithi137 bash[25001]: audit 2024-09-20T19:05:23.547399+0000 mon.a (mon.0) 276 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:23.965 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:23 smithi137 bash[25001]: audit 2024-09-20T19:05:23.549097+0000 mon.a (mon.0) 277 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:23.965 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:23 smithi137 bash[25001]: audit 2024-09-20T19:05:23.549097+0000 mon.a (mon.0) 277 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:23.966 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:23 smithi137 bash[25001]: audit 2024-09-20T19:05:23.558052+0000 mon.a (mon.0) 278 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:23.966 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:23 smithi137 bash[25001]: audit 2024-09-20T19:05:23.558052+0000 mon.a (mon.0) 278 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:23.967 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-09-20T19:05:23.967 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-20T19:05:24.022 INFO:tasks.cephadm:Adding mgr.a on smithi018 2024-09-20T19:05:24.023 INFO:tasks.cephadm:Adding mgr.b on smithi082 2024-09-20T19:05:24.023 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph orch apply mgr '2;smithi018=a;smithi082=b' 2024-09-20T19:05:24.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:23 smithi018 bash[22763]: cluster 2024-09-20T19:05:22.433505+0000 mgr.a (mgr.14152) 91 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:24.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:23 smithi018 bash[22763]: cluster 2024-09-20T19:05:22.433505+0000 mgr.a (mgr.14152) 91 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:24.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:23 smithi018 bash[22763]: audit 2024-09-20T19:05:23.184905+0000 mon.a (mon.0) 272 : audit [DBG] from='client.? 172.21.15.18:0/4238007396' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:24.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:23 smithi018 bash[22763]: audit 2024-09-20T19:05:23.184905+0000 mon.a (mon.0) 272 : audit [DBG] from='client.? 172.21.15.18:0/4238007396' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:24.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:23 smithi018 bash[22763]: audit 2024-09-20T19:05:23.535005+0000 mon.a (mon.0) 273 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:24.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:23 smithi018 bash[22763]: audit 2024-09-20T19:05:23.535005+0000 mon.a (mon.0) 273 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:24.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:23 smithi018 bash[22763]: audit 2024-09-20T19:05:23.541836+0000 mon.a (mon.0) 274 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:24.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:23 smithi018 bash[22763]: audit 2024-09-20T19:05:23.541836+0000 mon.a (mon.0) 274 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:24.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:23 smithi018 bash[22763]: audit 2024-09-20T19:05:23.544219+0000 mon.a (mon.0) 275 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:24.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:23 smithi018 bash[22763]: audit 2024-09-20T19:05:23.544219+0000 mon.a (mon.0) 275 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:24.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:23 smithi018 bash[22763]: audit 2024-09-20T19:05:23.547399+0000 mon.a (mon.0) 276 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:24.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:23 smithi018 bash[22763]: audit 2024-09-20T19:05:23.547399+0000 mon.a (mon.0) 276 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:24.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:23 smithi018 bash[22763]: audit 2024-09-20T19:05:23.549097+0000 mon.a (mon.0) 277 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:24.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:23 smithi018 bash[22763]: audit 2024-09-20T19:05:23.549097+0000 mon.a (mon.0) 277 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:24.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:23 smithi018 bash[22763]: audit 2024-09-20T19:05:23.558052+0000 mon.a (mon.0) 278 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:24.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:23 smithi018 bash[22763]: audit 2024-09-20T19:05:23.558052+0000 mon.a (mon.0) 278 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:26.052 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:25 smithi137 bash[25001]: cluster 2024-09-20T19:05:24.433920+0000 mgr.a (mgr.14152) 92 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:26.053 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:25 smithi137 bash[25001]: cluster 2024-09-20T19:05:24.433920+0000 mgr.a (mgr.14152) 92 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:26.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:25 smithi018 bash[22763]: cluster 2024-09-20T19:05:24.433920+0000 mgr.a (mgr.14152) 92 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:26.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:25 smithi018 bash[22763]: cluster 2024-09-20T19:05:24.433920+0000 mgr.a (mgr.14152) 92 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:26.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:25 smithi082 bash[24745]: cluster 2024-09-20T19:05:24.433920+0000 mgr.a (mgr.14152) 92 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:26.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:25 smithi082 bash[24745]: cluster 2024-09-20T19:05:24.433920+0000 mgr.a (mgr.14152) 92 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:27.779 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.c/config 2024-09-20T19:05:28.052 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:27 smithi137 bash[25001]: cluster 2024-09-20T19:05:26.434312+0000 mgr.a (mgr.14152) 93 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:28.052 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:27 smithi137 bash[25001]: cluster 2024-09-20T19:05:26.434312+0000 mgr.a (mgr.14152) 93 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:28.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:27 smithi018 bash[22763]: cluster 2024-09-20T19:05:26.434312+0000 mgr.a (mgr.14152) 93 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:28.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:27 smithi018 bash[22763]: cluster 2024-09-20T19:05:26.434312+0000 mgr.a (mgr.14152) 93 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:28.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:27 smithi082 bash[24745]: cluster 2024-09-20T19:05:26.434312+0000 mgr.a (mgr.14152) 93 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:28.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:27 smithi082 bash[24745]: cluster 2024-09-20T19:05:26.434312+0000 mgr.a (mgr.14152) 93 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:29.046 INFO:teuthology.orchestra.run.smithi137.stdout:Scheduled mgr update... 2024-09-20T19:05:29.635 DEBUG:teuthology.orchestra.run.smithi082:mgr.b> sudo journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mgr.b.service 2024-09-20T19:05:29.638 DEBUG:tasks.cephadm:set 0 configs 2024-09-20T19:05:29.638 INFO:tasks.cephadm:Deploying OSDs... 2024-09-20T19:05:29.638 DEBUG:teuthology.orchestra.run.smithi018:> set -ex 2024-09-20T19:05:29.638 DEBUG:teuthology.orchestra.run.smithi018:> dd if=/scratch_devs of=/dev/stdout 2024-09-20T19:05:29.644 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-20T19:05:29.645 DEBUG:teuthology.orchestra.run.smithi018:> stat /dev/vg_nvme/lv_1 2024-09-20T19:05:29.693 INFO:teuthology.orchestra.run.smithi018.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-20T19:05:29.693 INFO:teuthology.orchestra.run.smithi018.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-20T19:05:29.693 INFO:teuthology.orchestra.run.smithi018.stdout:Device: 5h/5d Inode: 884 Links: 1 2024-09-20T19:05:29.693 INFO:teuthology.orchestra.run.smithi018.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-20T19:05:29.693 INFO:teuthology.orchestra.run.smithi018.stdout:Access: 2024-09-20 18:54:53.555234145 +0000 2024-09-20T19:05:29.693 INFO:teuthology.orchestra.run.smithi018.stdout:Modify: 2024-09-20 18:54:53.319236240 +0000 2024-09-20T19:05:29.693 INFO:teuthology.orchestra.run.smithi018.stdout:Change: 2024-09-20 18:54:53.319236240 +0000 2024-09-20T19:05:29.693 INFO:teuthology.orchestra.run.smithi018.stdout: Birth: - 2024-09-20T19:05:29.694 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-20T19:05:29.747 INFO:teuthology.orchestra.run.smithi018.stderr:1+0 records in 2024-09-20T19:05:29.747 INFO:teuthology.orchestra.run.smithi018.stderr:1+0 records out 2024-09-20T19:05:29.748 INFO:teuthology.orchestra.run.smithi018.stderr:512 bytes copied, 0.000175193 s, 2.9 MB/s 2024-09-20T19:05:29.749 DEBUG:teuthology.orchestra.run.smithi018:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-20T19:05:29.799 DEBUG:teuthology.orchestra.run.smithi018:> stat /dev/vg_nvme/lv_2 2024-09-20T19:05:29.845 INFO:teuthology.orchestra.run.smithi018.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-20T19:05:29.845 INFO:teuthology.orchestra.run.smithi018.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-20T19:05:29.845 INFO:teuthology.orchestra.run.smithi018.stdout:Device: 5h/5d Inode: 899 Links: 1 2024-09-20T19:05:29.845 INFO:teuthology.orchestra.run.smithi018.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-20T19:05:29.845 INFO:teuthology.orchestra.run.smithi018.stdout:Access: 2024-09-20 18:54:54.011230097 +0000 2024-09-20T19:05:29.845 INFO:teuthology.orchestra.run.smithi018.stdout:Modify: 2024-09-20 18:54:53.759232334 +0000 2024-09-20T19:05:29.845 INFO:teuthology.orchestra.run.smithi018.stdout:Change: 2024-09-20 18:54:53.759232334 +0000 2024-09-20T19:05:29.845 INFO:teuthology.orchestra.run.smithi018.stdout: Birth: - 2024-09-20T19:05:29.846 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-20T19:05:29.899 INFO:teuthology.orchestra.run.smithi018.stderr:1+0 records in 2024-09-20T19:05:29.900 INFO:teuthology.orchestra.run.smithi018.stderr:1+0 records out 2024-09-20T19:05:29.900 INFO:teuthology.orchestra.run.smithi018.stderr:512 bytes copied, 0.000312494 s, 1.6 MB/s 2024-09-20T19:05:29.901 DEBUG:teuthology.orchestra.run.smithi018:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-20T19:05:29.950 DEBUG:teuthology.orchestra.run.smithi018:> stat /dev/vg_nvme/lv_3 2024-09-20T19:05:29.996 INFO:teuthology.orchestra.run.smithi018.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-20T19:05:29.997 INFO:teuthology.orchestra.run.smithi018.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-20T19:05:29.997 INFO:teuthology.orchestra.run.smithi018.stdout:Device: 5h/5d Inode: 916 Links: 1 2024-09-20T19:05:29.997 INFO:teuthology.orchestra.run.smithi018.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-20T19:05:29.997 INFO:teuthology.orchestra.run.smithi018.stdout:Access: 2024-09-20 18:54:54.511225657 +0000 2024-09-20T19:05:29.997 INFO:teuthology.orchestra.run.smithi018.stdout:Modify: 2024-09-20 18:54:54.227228179 +0000 2024-09-20T19:05:29.997 INFO:teuthology.orchestra.run.smithi018.stdout:Change: 2024-09-20 18:54:54.227228179 +0000 2024-09-20T19:05:29.997 INFO:teuthology.orchestra.run.smithi018.stdout: Birth: - 2024-09-20T19:05:29.997 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-20T19:05:30.053 INFO:teuthology.orchestra.run.smithi018.stderr:1+0 records in 2024-09-20T19:05:30.053 INFO:teuthology.orchestra.run.smithi018.stderr:1+0 records out 2024-09-20T19:05:30.053 INFO:teuthology.orchestra.run.smithi018.stderr:512 bytes copied, 0.000211487 s, 2.4 MB/s 2024-09-20T19:05:30.054 DEBUG:teuthology.orchestra.run.smithi018:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-20T19:05:30.107 DEBUG:teuthology.orchestra.run.smithi018:> stat /dev/vg_nvme/lv_4 2024-09-20T19:05:30.154 INFO:teuthology.orchestra.run.smithi018.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-20T19:05:30.154 INFO:teuthology.orchestra.run.smithi018.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-20T19:05:30.154 INFO:teuthology.orchestra.run.smithi018.stdout:Device: 5h/5d Inode: 936 Links: 1 2024-09-20T19:05:30.154 INFO:teuthology.orchestra.run.smithi018.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-20T19:05:30.154 INFO:teuthology.orchestra.run.smithi018.stdout:Access: 2024-09-20 18:54:54.979221502 +0000 2024-09-20T19:05:30.154 INFO:teuthology.orchestra.run.smithi018.stdout:Modify: 2024-09-20 18:54:54.731223704 +0000 2024-09-20T19:05:30.154 INFO:teuthology.orchestra.run.smithi018.stdout:Change: 2024-09-20 18:54:54.731223704 +0000 2024-09-20T19:05:30.154 INFO:teuthology.orchestra.run.smithi018.stdout: Birth: - 2024-09-20T19:05:30.155 DEBUG:teuthology.orchestra.run.smithi018:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-20T19:05:30.208 INFO:teuthology.orchestra.run.smithi018.stderr:1+0 records in 2024-09-20T19:05:30.208 INFO:teuthology.orchestra.run.smithi018.stderr:1+0 records out 2024-09-20T19:05:30.208 INFO:teuthology.orchestra.run.smithi018.stderr:512 bytes copied, 0.000316113 s, 1.6 MB/s 2024-09-20T19:05:30.209 DEBUG:teuthology.orchestra.run.smithi018:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-20T19:05:30.259 DEBUG:teuthology.orchestra.run.smithi082:> set -ex 2024-09-20T19:05:30.260 DEBUG:teuthology.orchestra.run.smithi082:> dd if=/scratch_devs of=/dev/stdout 2024-09-20T19:05:30.263 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-20T19:05:30.264 DEBUG:teuthology.orchestra.run.smithi082:> stat /dev/vg_nvme/lv_1 2024-09-20T19:05:30.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: cluster 2024-09-20T19:05:28.434717+0000 mgr.a (mgr.14152) 94 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:30.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: cluster 2024-09-20T19:05:28.434717+0000 mgr.a (mgr.14152) 94 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:30.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: audit 2024-09-20T19:05:29.032730+0000 mgr.a (mgr.14152) 95 : audit [DBG] from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi018=a;smithi082=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:05:30.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: audit 2024-09-20T19:05:29.032730+0000 mgr.a (mgr.14152) 95 : audit [DBG] from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi018=a;smithi082=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:05:30.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: cephadm 2024-09-20T19:05:29.035830+0000 mgr.a (mgr.14152) 96 : cephadm [INF] Saving service mgr spec with placement smithi018=a;smithi082=b;count:2 2024-09-20T19:05:30.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: cephadm 2024-09-20T19:05:29.035830+0000 mgr.a (mgr.14152) 96 : cephadm [INF] Saving service mgr spec with placement smithi018=a;smithi082=b;count:2 2024-09-20T19:05:30.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: audit 2024-09-20T19:05:29.042321+0000 mon.a (mon.0) 279 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:30.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: audit 2024-09-20T19:05:29.042321+0000 mon.a (mon.0) 279 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:30.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: audit 2024-09-20T19:05:29.044232+0000 mon.a (mon.0) 280 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:30.304 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: audit 2024-09-20T19:05:29.044232+0000 mon.a (mon.0) 280 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:30.304 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: audit 2024-09-20T19:05:29.737357+0000 mon.a (mon.0) 281 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:30.304 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: audit 2024-09-20T19:05:29.737357+0000 mon.a (mon.0) 281 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:30.304 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: audit 2024-09-20T19:05:29.738728+0000 mon.a (mon.0) 282 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:30.304 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: audit 2024-09-20T19:05:29.738728+0000 mon.a (mon.0) 282 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:30.304 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: audit 2024-09-20T19:05:29.747914+0000 mon.a (mon.0) 283 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:30.304 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: audit 2024-09-20T19:05:29.747914+0000 mon.a (mon.0) 283 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:30.304 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: audit 2024-09-20T19:05:29.750234+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-20T19:05:30.304 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: audit 2024-09-20T19:05:29.750234+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-20T19:05:30.304 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: audit 2024-09-20T19:05:29.752969+0000 mon.a (mon.0) 285 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-20T19:05:30.304 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: audit 2024-09-20T19:05:29.752969+0000 mon.a (mon.0) 285 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-20T19:05:30.304 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: audit 2024-09-20T19:05:29.757315+0000 mon.a (mon.0) 286 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-20T19:05:30.305 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: audit 2024-09-20T19:05:29.757315+0000 mon.a (mon.0) 286 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-20T19:05:30.305 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: audit 2024-09-20T19:05:29.758584+0000 mon.a (mon.0) 287 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:30.305 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:30 smithi137 bash[25001]: audit 2024-09-20T19:05:29.758584+0000 mon.a (mon.0) 287 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:30.314 INFO:teuthology.orchestra.run.smithi082.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-20T19:05:30.314 INFO:teuthology.orchestra.run.smithi082.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-20T19:05:30.314 INFO:teuthology.orchestra.run.smithi082.stdout:Device: 5h/5d Inode: 874 Links: 1 2024-09-20T19:05:30.314 INFO:teuthology.orchestra.run.smithi082.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-20T19:05:30.314 INFO:teuthology.orchestra.run.smithi082.stdout:Access: 2024-09-20 18:54:51.629460676 +0000 2024-09-20T19:05:30.314 INFO:teuthology.orchestra.run.smithi082.stdout:Modify: 2024-09-20 18:54:51.385462849 +0000 2024-09-20T19:05:30.315 INFO:teuthology.orchestra.run.smithi082.stdout:Change: 2024-09-20 18:54:51.385462849 +0000 2024-09-20T19:05:30.315 INFO:teuthology.orchestra.run.smithi082.stdout: Birth: - 2024-09-20T19:05:30.315 DEBUG:teuthology.orchestra.run.smithi082:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-20T19:05:30.348 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: cluster 2024-09-20T19:05:28.434717+0000 mgr.a (mgr.14152) 94 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:30.348 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: cluster 2024-09-20T19:05:28.434717+0000 mgr.a (mgr.14152) 94 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:30.348 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: audit 2024-09-20T19:05:29.032730+0000 mgr.a (mgr.14152) 95 : audit [DBG] from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi018=a;smithi082=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:05:30.348 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: audit 2024-09-20T19:05:29.032730+0000 mgr.a (mgr.14152) 95 : audit [DBG] from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi018=a;smithi082=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:05:30.349 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: cephadm 2024-09-20T19:05:29.035830+0000 mgr.a (mgr.14152) 96 : cephadm [INF] Saving service mgr spec with placement smithi018=a;smithi082=b;count:2 2024-09-20T19:05:30.349 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: cephadm 2024-09-20T19:05:29.035830+0000 mgr.a (mgr.14152) 96 : cephadm [INF] Saving service mgr spec with placement smithi018=a;smithi082=b;count:2 2024-09-20T19:05:30.349 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: audit 2024-09-20T19:05:29.042321+0000 mon.a (mon.0) 279 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:30.349 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: audit 2024-09-20T19:05:29.042321+0000 mon.a (mon.0) 279 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:30.349 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: audit 2024-09-20T19:05:29.044232+0000 mon.a (mon.0) 280 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:30.349 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: audit 2024-09-20T19:05:29.044232+0000 mon.a (mon.0) 280 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:30.349 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: audit 2024-09-20T19:05:29.737357+0000 mon.a (mon.0) 281 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:30.349 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: audit 2024-09-20T19:05:29.737357+0000 mon.a (mon.0) 281 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:30.349 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: audit 2024-09-20T19:05:29.738728+0000 mon.a (mon.0) 282 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:30.349 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: audit 2024-09-20T19:05:29.738728+0000 mon.a (mon.0) 282 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:30.350 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: audit 2024-09-20T19:05:29.747914+0000 mon.a (mon.0) 283 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:30.350 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: audit 2024-09-20T19:05:29.747914+0000 mon.a (mon.0) 283 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:30.350 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: audit 2024-09-20T19:05:29.750234+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-20T19:05:30.350 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: audit 2024-09-20T19:05:29.750234+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-20T19:05:30.350 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: audit 2024-09-20T19:05:29.752969+0000 mon.a (mon.0) 285 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-20T19:05:30.350 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: audit 2024-09-20T19:05:29.752969+0000 mon.a (mon.0) 285 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-20T19:05:30.350 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: audit 2024-09-20T19:05:29.757315+0000 mon.a (mon.0) 286 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-20T19:05:30.350 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: audit 2024-09-20T19:05:29.757315+0000 mon.a (mon.0) 286 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-20T19:05:30.350 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: audit 2024-09-20T19:05:29.758584+0000 mon.a (mon.0) 287 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:30.351 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:30 smithi082 bash[24745]: audit 2024-09-20T19:05:29.758584+0000 mon.a (mon.0) 287 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:30.360 INFO:teuthology.orchestra.run.smithi082.stderr:1+0 records in 2024-09-20T19:05:30.361 INFO:teuthology.orchestra.run.smithi082.stderr:1+0 records out 2024-09-20T19:05:30.361 INFO:teuthology.orchestra.run.smithi082.stderr:512 bytes copied, 0.000314175 s, 1.6 MB/s 2024-09-20T19:05:30.361 DEBUG:teuthology.orchestra.run.smithi082:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-20T19:05:30.411 DEBUG:teuthology.orchestra.run.smithi082:> stat /dev/vg_nvme/lv_2 2024-09-20T19:05:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: cluster 2024-09-20T19:05:28.434717+0000 mgr.a (mgr.14152) 94 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:30.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: cluster 2024-09-20T19:05:28.434717+0000 mgr.a (mgr.14152) 94 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:30.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: audit 2024-09-20T19:05:29.032730+0000 mgr.a (mgr.14152) 95 : audit [DBG] from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi018=a;smithi082=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:05:30.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: audit 2024-09-20T19:05:29.032730+0000 mgr.a (mgr.14152) 95 : audit [DBG] from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi018=a;smithi082=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:05:30.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: cephadm 2024-09-20T19:05:29.035830+0000 mgr.a (mgr.14152) 96 : cephadm [INF] Saving service mgr spec with placement smithi018=a;smithi082=b;count:2 2024-09-20T19:05:30.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: cephadm 2024-09-20T19:05:29.035830+0000 mgr.a (mgr.14152) 96 : cephadm [INF] Saving service mgr spec with placement smithi018=a;smithi082=b;count:2 2024-09-20T19:05:30.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: audit 2024-09-20T19:05:29.042321+0000 mon.a (mon.0) 279 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:30.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: audit 2024-09-20T19:05:29.042321+0000 mon.a (mon.0) 279 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:30.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: audit 2024-09-20T19:05:29.044232+0000 mon.a (mon.0) 280 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:30.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: audit 2024-09-20T19:05:29.044232+0000 mon.a (mon.0) 280 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:30.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: audit 2024-09-20T19:05:29.737357+0000 mon.a (mon.0) 281 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:30.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: audit 2024-09-20T19:05:29.737357+0000 mon.a (mon.0) 281 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:30.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: audit 2024-09-20T19:05:29.738728+0000 mon.a (mon.0) 282 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:30.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: audit 2024-09-20T19:05:29.738728+0000 mon.a (mon.0) 282 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:30.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: audit 2024-09-20T19:05:29.747914+0000 mon.a (mon.0) 283 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:30.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: audit 2024-09-20T19:05:29.747914+0000 mon.a (mon.0) 283 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:30.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: audit 2024-09-20T19:05:29.750234+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-20T19:05:30.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: audit 2024-09-20T19:05:29.750234+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-20T19:05:30.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: audit 2024-09-20T19:05:29.752969+0000 mon.a (mon.0) 285 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-20T19:05:30.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: audit 2024-09-20T19:05:29.752969+0000 mon.a (mon.0) 285 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-20T19:05:30.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: audit 2024-09-20T19:05:29.757315+0000 mon.a (mon.0) 286 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-20T19:05:30.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: audit 2024-09-20T19:05:29.757315+0000 mon.a (mon.0) 286 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-20T19:05:30.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: audit 2024-09-20T19:05:29.758584+0000 mon.a (mon.0) 287 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:30.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:30 smithi018 bash[22763]: audit 2024-09-20T19:05:29.758584+0000 mon.a (mon.0) 287 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:30.462 INFO:teuthology.orchestra.run.smithi082.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-20T19:05:30.462 INFO:teuthology.orchestra.run.smithi082.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-20T19:05:30.462 INFO:teuthology.orchestra.run.smithi082.stdout:Device: 5h/5d Inode: 892 Links: 1 2024-09-20T19:05:30.462 INFO:teuthology.orchestra.run.smithi082.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-20T19:05:30.462 INFO:teuthology.orchestra.run.smithi082.stdout:Access: 2024-09-20 18:54:52.097456507 +0000 2024-09-20T19:05:30.462 INFO:teuthology.orchestra.run.smithi082.stdout:Modify: 2024-09-20 18:54:51.849458716 +0000 2024-09-20T19:05:30.462 INFO:teuthology.orchestra.run.smithi082.stdout:Change: 2024-09-20 18:54:51.849458716 +0000 2024-09-20T19:05:30.462 INFO:teuthology.orchestra.run.smithi082.stdout: Birth: - 2024-09-20T19:05:30.462 DEBUG:teuthology.orchestra.run.smithi082:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-20T19:05:30.515 INFO:teuthology.orchestra.run.smithi082.stderr:1+0 records in 2024-09-20T19:05:30.516 INFO:teuthology.orchestra.run.smithi082.stderr:1+0 records out 2024-09-20T19:05:30.516 INFO:teuthology.orchestra.run.smithi082.stderr:512 bytes copied, 0.000340555 s, 1.5 MB/s 2024-09-20T19:05:30.517 DEBUG:teuthology.orchestra.run.smithi082:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-20T19:05:30.564 DEBUG:teuthology.orchestra.run.smithi082:> stat /dev/vg_nvme/lv_3 2024-09-20T19:05:30.610 INFO:teuthology.orchestra.run.smithi082.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-20T19:05:30.610 INFO:teuthology.orchestra.run.smithi082.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-20T19:05:30.610 INFO:teuthology.orchestra.run.smithi082.stdout:Device: 5h/5d Inode: 905 Links: 1 2024-09-20T19:05:30.610 INFO:teuthology.orchestra.run.smithi082.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-20T19:05:30.610 INFO:teuthology.orchestra.run.smithi082.stdout:Access: 2024-09-20 18:54:52.605451981 +0000 2024-09-20T19:05:30.611 INFO:teuthology.orchestra.run.smithi082.stdout:Modify: 2024-09-20 18:54:52.333454404 +0000 2024-09-20T19:05:30.611 INFO:teuthology.orchestra.run.smithi082.stdout:Change: 2024-09-20 18:54:52.333454404 +0000 2024-09-20T19:05:30.611 INFO:teuthology.orchestra.run.smithi082.stdout: Birth: - 2024-09-20T19:05:30.611 DEBUG:teuthology.orchestra.run.smithi082:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-20T19:05:30.665 INFO:teuthology.orchestra.run.smithi082.stderr:1+0 records in 2024-09-20T19:05:30.665 INFO:teuthology.orchestra.run.smithi082.stderr:1+0 records out 2024-09-20T19:05:30.665 INFO:teuthology.orchestra.run.smithi082.stderr:512 bytes copied, 0.000356909 s, 1.4 MB/s 2024-09-20T19:05:30.666 DEBUG:teuthology.orchestra.run.smithi082:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-20T19:05:30.715 DEBUG:teuthology.orchestra.run.smithi082:> stat /dev/vg_nvme/lv_4 2024-09-20T19:05:30.762 INFO:teuthology.orchestra.run.smithi082.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-20T19:05:30.762 INFO:teuthology.orchestra.run.smithi082.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-20T19:05:30.762 INFO:teuthology.orchestra.run.smithi082.stdout:Device: 5h/5d Inode: 927 Links: 1 2024-09-20T19:05:30.762 INFO:teuthology.orchestra.run.smithi082.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-20T19:05:30.762 INFO:teuthology.orchestra.run.smithi082.stdout:Access: 2024-09-20 18:54:53.069447846 +0000 2024-09-20T19:05:30.762 INFO:teuthology.orchestra.run.smithi082.stdout:Modify: 2024-09-20 18:54:52.837449914 +0000 2024-09-20T19:05:30.762 INFO:teuthology.orchestra.run.smithi082.stdout:Change: 2024-09-20 18:54:52.837449914 +0000 2024-09-20T19:05:30.762 INFO:teuthology.orchestra.run.smithi082.stdout: Birth: - 2024-09-20T19:05:30.763 DEBUG:teuthology.orchestra.run.smithi082:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-20T19:05:30.821 INFO:teuthology.orchestra.run.smithi082.stderr:1+0 records in 2024-09-20T19:05:30.822 INFO:teuthology.orchestra.run.smithi082.stderr:1+0 records out 2024-09-20T19:05:30.822 INFO:teuthology.orchestra.run.smithi082.stderr:512 bytes copied, 0.000363208 s, 1.4 MB/s 2024-09-20T19:05:30.823 DEBUG:teuthology.orchestra.run.smithi082:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-20T19:05:30.872 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-09-20T19:05:30.872 DEBUG:teuthology.orchestra.run.smithi137:> dd if=/scratch_devs of=/dev/stdout 2024-09-20T19:05:30.878 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-20T19:05:30.878 DEBUG:teuthology.orchestra.run.smithi137:> stat /dev/vg_nvme/lv_1 2024-09-20T19:05:30.931 INFO:teuthology.orchestra.run.smithi137.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-20T19:05:30.931 INFO:teuthology.orchestra.run.smithi137.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-20T19:05:30.931 INFO:teuthology.orchestra.run.smithi137.stdout:Device: 5h/5d Inode: 884 Links: 1 2024-09-20T19:05:30.931 INFO:teuthology.orchestra.run.smithi137.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-20T19:05:30.931 INFO:teuthology.orchestra.run.smithi137.stdout:Access: 2024-09-20 18:54:51.890163649 +0000 2024-09-20T19:05:30.931 INFO:teuthology.orchestra.run.smithi137.stdout:Modify: 2024-09-20 18:54:51.642165853 +0000 2024-09-20T19:05:30.931 INFO:teuthology.orchestra.run.smithi137.stdout:Change: 2024-09-20 18:54:51.642165853 +0000 2024-09-20T19:05:30.931 INFO:teuthology.orchestra.run.smithi137.stdout: Birth: - 2024-09-20T19:05:30.931 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-20T19:05:30.985 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records in 2024-09-20T19:05:30.985 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records out 2024-09-20T19:05:30.986 INFO:teuthology.orchestra.run.smithi137.stderr:512 bytes copied, 0.00044696 s, 1.1 MB/s 2024-09-20T19:05:30.987 DEBUG:teuthology.orchestra.run.smithi137:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-20T19:05:31.035 DEBUG:teuthology.orchestra.run.smithi137:> stat /dev/vg_nvme/lv_2 2024-09-20T19:05:31.082 INFO:teuthology.orchestra.run.smithi137.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-20T19:05:31.082 INFO:teuthology.orchestra.run.smithi137.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-20T19:05:31.082 INFO:teuthology.orchestra.run.smithi137.stdout:Device: 5h/5d Inode: 899 Links: 1 2024-09-20T19:05:31.082 INFO:teuthology.orchestra.run.smithi137.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-20T19:05:31.083 INFO:teuthology.orchestra.run.smithi137.stdout:Access: 2024-09-20 18:54:52.126161551 +0000 2024-09-20T19:05:31.083 INFO:teuthology.orchestra.run.smithi137.stdout:Modify: 2024-09-20 18:54:52.122161587 +0000 2024-09-20T19:05:31.083 INFO:teuthology.orchestra.run.smithi137.stdout:Change: 2024-09-20 18:54:52.122161587 +0000 2024-09-20T19:05:31.083 INFO:teuthology.orchestra.run.smithi137.stdout: Birth: - 2024-09-20T19:05:31.083 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-20T19:05:31.137 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records in 2024-09-20T19:05:31.137 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records out 2024-09-20T19:05:31.137 INFO:teuthology.orchestra.run.smithi137.stderr:512 bytes copied, 0.000324821 s, 1.6 MB/s 2024-09-20T19:05:31.138 DEBUG:teuthology.orchestra.run.smithi137:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-20T19:05:31.187 DEBUG:teuthology.orchestra.run.smithi137:> stat /dev/vg_nvme/lv_3 2024-09-20T19:05:31.234 INFO:teuthology.orchestra.run.smithi137.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-20T19:05:31.234 INFO:teuthology.orchestra.run.smithi137.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-20T19:05:31.234 INFO:teuthology.orchestra.run.smithi137.stdout:Device: 5h/5d Inode: 917 Links: 1 2024-09-20T19:05:31.234 INFO:teuthology.orchestra.run.smithi137.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-20T19:05:31.234 INFO:teuthology.orchestra.run.smithi137.stdout:Access: 2024-09-20 18:54:52.846155150 +0000 2024-09-20T19:05:31.234 INFO:teuthology.orchestra.run.smithi137.stdout:Modify: 2024-09-20 18:54:52.598157355 +0000 2024-09-20T19:05:31.234 INFO:teuthology.orchestra.run.smithi137.stdout:Change: 2024-09-20 18:54:52.598157355 +0000 2024-09-20T19:05:31.234 INFO:teuthology.orchestra.run.smithi137.stdout: Birth: - 2024-09-20T19:05:31.234 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-20T19:05:31.286 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:31 smithi137 bash[25001]: cephadm 2024-09-20T19:05:29.759848+0000 mgr.a (mgr.14152) 97 : cephadm [INF] Deploying daemon mgr.b on smithi082 2024-09-20T19:05:31.287 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:31 smithi137 bash[25001]: cephadm 2024-09-20T19:05:29.759848+0000 mgr.a (mgr.14152) 97 : cephadm [INF] Deploying daemon mgr.b on smithi082 2024-09-20T19:05:31.289 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records in 2024-09-20T19:05:31.289 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records out 2024-09-20T19:05:31.289 INFO:teuthology.orchestra.run.smithi137.stderr:512 bytes copied, 0.000432463 s, 1.2 MB/s 2024-09-20T19:05:31.290 DEBUG:teuthology.orchestra.run.smithi137:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-20T19:05:31.305 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:31 smithi082 bash[24745]: cephadm 2024-09-20T19:05:29.759848+0000 mgr.a (mgr.14152) 97 : cephadm [INF] Deploying daemon mgr.b on smithi082 2024-09-20T19:05:31.305 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:31 smithi082 bash[24745]: cephadm 2024-09-20T19:05:29.759848+0000 mgr.a (mgr.14152) 97 : cephadm [INF] Deploying daemon mgr.b on smithi082 2024-09-20T19:05:31.339 DEBUG:teuthology.orchestra.run.smithi137:> stat /dev/vg_nvme/lv_4 2024-09-20T19:05:31.386 INFO:teuthology.orchestra.run.smithi137.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-20T19:05:31.386 INFO:teuthology.orchestra.run.smithi137.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-20T19:05:31.386 INFO:teuthology.orchestra.run.smithi137.stdout:Device: 5h/5d Inode: 934 Links: 1 2024-09-20T19:05:31.386 INFO:teuthology.orchestra.run.smithi137.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-20T19:05:31.386 INFO:teuthology.orchestra.run.smithi137.stdout:Access: 2024-09-20 18:54:53.350150671 +0000 2024-09-20T19:05:31.386 INFO:teuthology.orchestra.run.smithi137.stdout:Modify: 2024-09-20 18:54:53.098152910 +0000 2024-09-20T19:05:31.386 INFO:teuthology.orchestra.run.smithi137.stdout:Change: 2024-09-20 18:54:53.098152910 +0000 2024-09-20T19:05:31.386 INFO:teuthology.orchestra.run.smithi137.stdout: Birth: - 2024-09-20T19:05:31.387 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-20T19:05:31.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:31 smithi018 bash[22763]: cephadm 2024-09-20T19:05:29.759848+0000 mgr.a (mgr.14152) 97 : cephadm [INF] Deploying daemon mgr.b on smithi082 2024-09-20T19:05:31.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:31 smithi018 bash[22763]: cephadm 2024-09-20T19:05:29.759848+0000 mgr.a (mgr.14152) 97 : cephadm [INF] Deploying daemon mgr.b on smithi082 2024-09-20T19:05:31.440 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records in 2024-09-20T19:05:31.440 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records out 2024-09-20T19:05:31.441 INFO:teuthology.orchestra.run.smithi137.stderr:512 bytes copied, 0.000291095 s, 1.8 MB/s 2024-09-20T19:05:31.442 DEBUG:teuthology.orchestra.run.smithi137:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-20T19:05:31.491 INFO:tasks.cephadm:Deploying osd.0 on smithi018 with /dev/vg_nvme/lv_4... 2024-09-20T19:05:31.492 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- lvm zap /dev/vg_nvme/lv_4 2024-09-20T19:05:32.381 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:32 smithi082 bash[24745]: cluster 2024-09-20T19:05:30.435145+0000 mgr.a (mgr.14152) 98 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:32.381 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:32 smithi082 bash[24745]: cluster 2024-09-20T19:05:30.435145+0000 mgr.a (mgr.14152) 98 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:32.382 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:32 smithi082 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:05:32.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:32 smithi018 bash[22763]: cluster 2024-09-20T19:05:30.435145+0000 mgr.a (mgr.14152) 98 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:32.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:32 smithi018 bash[22763]: cluster 2024-09-20T19:05:30.435145+0000 mgr.a (mgr.14152) 98 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:32.553 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:32 smithi137 bash[25001]: cluster 2024-09-20T19:05:30.435145+0000 mgr.a (mgr.14152) 98 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:32.554 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:32 smithi137 bash[25001]: cluster 2024-09-20T19:05:30.435145+0000 mgr.a (mgr.14152) 98 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:32.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:32 smithi082 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:05:33.700 INFO:journalctl@ceph.mgr.b.smithi082.stdout:Sep 20 19:05:33 smithi082 bash[25238]: debug 2024-09-20T19:05:33.511+0000 7fecf28d9640 1 -- 172.21.15.82:0/1056434903 <== mon.2 v2:172.21.15.82:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) ==== 194+0+0 (secure 0 0 0) 0x56028b4250e0 con 0x56028b427800 2024-09-20T19:05:33.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:33 smithi082 bash[24745]: cluster 2024-09-20T19:05:32.435591+0000 mgr.a (mgr.14152) 99 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:33.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:33 smithi082 bash[24745]: cluster 2024-09-20T19:05:32.435591+0000 mgr.a (mgr.14152) 99 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:33.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:33 smithi082 bash[24745]: audit 2024-09-20T19:05:32.524834+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:33 smithi082 bash[24745]: audit 2024-09-20T19:05:32.524834+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:33 smithi082 bash[24745]: audit 2024-09-20T19:05:32.531868+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:33 smithi082 bash[24745]: audit 2024-09-20T19:05:32.531868+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:33 smithi082 bash[24745]: audit 2024-09-20T19:05:32.539177+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:33 smithi082 bash[24745]: audit 2024-09-20T19:05:32.539177+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:33 smithi082 bash[24745]: audit 2024-09-20T19:05:32.546269+0000 mon.a (mon.0) 291 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:33 smithi082 bash[24745]: audit 2024-09-20T19:05:32.546269+0000 mon.a (mon.0) 291 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:33 smithi082 bash[24745]: audit 2024-09-20T19:05:32.596038+0000 mon.a (mon.0) 292 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:33.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:33 smithi082 bash[24745]: audit 2024-09-20T19:05:32.596038+0000 mon.a (mon.0) 292 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:33.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:33 smithi137 bash[25001]: cluster 2024-09-20T19:05:32.435591+0000 mgr.a (mgr.14152) 99 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:33.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:33 smithi137 bash[25001]: cluster 2024-09-20T19:05:32.435591+0000 mgr.a (mgr.14152) 99 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:33.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:33 smithi137 bash[25001]: audit 2024-09-20T19:05:32.524834+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:33 smithi137 bash[25001]: audit 2024-09-20T19:05:32.524834+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:33 smithi137 bash[25001]: audit 2024-09-20T19:05:32.531868+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:33 smithi137 bash[25001]: audit 2024-09-20T19:05:32.531868+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:33 smithi137 bash[25001]: audit 2024-09-20T19:05:32.539177+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:33 smithi137 bash[25001]: audit 2024-09-20T19:05:32.539177+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:33 smithi137 bash[25001]: audit 2024-09-20T19:05:32.546269+0000 mon.a (mon.0) 291 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:33 smithi137 bash[25001]: audit 2024-09-20T19:05:32.546269+0000 mon.a (mon.0) 291 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:33 smithi137 bash[25001]: audit 2024-09-20T19:05:32.596038+0000 mon.a (mon.0) 292 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:33.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:33 smithi137 bash[25001]: audit 2024-09-20T19:05:32.596038+0000 mon.a (mon.0) 292 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:33.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:33 smithi018 bash[22763]: cluster 2024-09-20T19:05:32.435591+0000 mgr.a (mgr.14152) 99 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:33.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:33 smithi018 bash[22763]: cluster 2024-09-20T19:05:32.435591+0000 mgr.a (mgr.14152) 99 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:33.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:33 smithi018 bash[22763]: audit 2024-09-20T19:05:32.524834+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:33 smithi018 bash[22763]: audit 2024-09-20T19:05:32.524834+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:33 smithi018 bash[22763]: audit 2024-09-20T19:05:32.531868+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:33 smithi018 bash[22763]: audit 2024-09-20T19:05:32.531868+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:33 smithi018 bash[22763]: audit 2024-09-20T19:05:32.539177+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:33 smithi018 bash[22763]: audit 2024-09-20T19:05:32.539177+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:33 smithi018 bash[22763]: audit 2024-09-20T19:05:32.546269+0000 mon.a (mon.0) 291 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:33 smithi018 bash[22763]: audit 2024-09-20T19:05:32.546269+0000 mon.a (mon.0) 291 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:33.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:33 smithi018 bash[22763]: audit 2024-09-20T19:05:32.596038+0000 mon.a (mon.0) 292 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:33.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:33 smithi018 bash[22763]: audit 2024-09-20T19:05:32.596038+0000 mon.a (mon.0) 292 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:35.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:35 smithi137 bash[25001]: cluster 2024-09-20T19:05:34.436036+0000 mgr.a (mgr.14152) 100 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:35.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:35 smithi137 bash[25001]: cluster 2024-09-20T19:05:34.436036+0000 mgr.a (mgr.14152) 100 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:35.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:35 smithi018 bash[22763]: cluster 2024-09-20T19:05:34.436036+0000 mgr.a (mgr.14152) 100 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:35.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:35 smithi018 bash[22763]: cluster 2024-09-20T19:05:34.436036+0000 mgr.a (mgr.14152) 100 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:35.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:35 smithi082 bash[24745]: cluster 2024-09-20T19:05:34.436036+0000 mgr.a (mgr.14152) 100 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:35.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:35 smithi082 bash[24745]: cluster 2024-09-20T19:05:34.436036+0000 mgr.a (mgr.14152) 100 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:36.227 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:05:37.504 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:37 smithi018 bash[22763]: audit 2024-09-20T19:05:36.342420+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:37.504 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:37 smithi018 bash[22763]: audit 2024-09-20T19:05:36.342420+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:37.504 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:37 smithi018 bash[22763]: cluster 2024-09-20T19:05:36.436406+0000 mgr.a (mgr.14152) 101 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:37.504 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:37 smithi018 bash[22763]: cluster 2024-09-20T19:05:36.436406+0000 mgr.a (mgr.14152) 101 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:37.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:37 smithi082 bash[24745]: audit 2024-09-20T19:05:36.342420+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:37.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:37 smithi082 bash[24745]: audit 2024-09-20T19:05:36.342420+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:37.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:37 smithi082 bash[24745]: cluster 2024-09-20T19:05:36.436406+0000 mgr.a (mgr.14152) 101 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:37.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:37 smithi082 bash[24745]: cluster 2024-09-20T19:05:36.436406+0000 mgr.a (mgr.14152) 101 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:37.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:37 smithi137 bash[25001]: audit 2024-09-20T19:05:36.342420+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:37.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:37 smithi137 bash[25001]: audit 2024-09-20T19:05:36.342420+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:37.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:37 smithi137 bash[25001]: cluster 2024-09-20T19:05:36.436406+0000 mgr.a (mgr.14152) 101 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:37.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:37 smithi137 bash[25001]: cluster 2024-09-20T19:05:36.436406+0000 mgr.a (mgr.14152) 101 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:39.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:38 smithi018 bash[22763]: audit 2024-09-20T19:05:37.816466+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:39.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:38 smithi018 bash[22763]: audit 2024-09-20T19:05:37.816466+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:39.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:38 smithi018 bash[22763]: audit 2024-09-20T19:05:37.823985+0000 mon.a (mon.0) 295 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:39.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:38 smithi018 bash[22763]: audit 2024-09-20T19:05:37.823985+0000 mon.a (mon.0) 295 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:39.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:38 smithi018 bash[22763]: audit 2024-09-20T19:05:37.825633+0000 mon.a (mon.0) 296 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:39.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:38 smithi018 bash[22763]: audit 2024-09-20T19:05:37.825633+0000 mon.a (mon.0) 296 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:39.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:38 smithi018 bash[22763]: audit 2024-09-20T19:05:37.827386+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:39.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:38 smithi018 bash[22763]: audit 2024-09-20T19:05:37.827386+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:39.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:38 smithi018 bash[22763]: audit 2024-09-20T19:05:37.837195+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:39.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:38 smithi018 bash[22763]: audit 2024-09-20T19:05:37.837195+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:39.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:38 smithi018 bash[22763]: cephadm 2024-09-20T19:05:37.888138+0000 mgr.a (mgr.14152) 102 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-20T19:05:39.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:38 smithi018 bash[22763]: cephadm 2024-09-20T19:05:37.888138+0000 mgr.a (mgr.14152) 102 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-20T19:05:39.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:38 smithi018 bash[22763]: audit 2024-09-20T19:05:37.888904+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-20T19:05:39.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:38 smithi018 bash[22763]: audit 2024-09-20T19:05:37.888904+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-20T19:05:39.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:38 smithi018 bash[22763]: audit 2024-09-20T19:05:37.890805+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-20T19:05:39.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:38 smithi018 bash[22763]: audit 2024-09-20T19:05:37.890805+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-20T19:05:39.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:38 smithi018 bash[22763]: audit 2024-09-20T19:05:37.892450+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:39.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:38 smithi018 bash[22763]: audit 2024-09-20T19:05:37.892450+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:39.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:38 smithi018 bash[22763]: cephadm 2024-09-20T19:05:37.894278+0000 mgr.a (mgr.14152) 103 : cephadm [INF] Reconfiguring daemon mgr.a on smithi018 2024-09-20T19:05:39.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:38 smithi018 bash[22763]: cephadm 2024-09-20T19:05:37.894278+0000 mgr.a (mgr.14152) 103 : cephadm [INF] Reconfiguring daemon mgr.a on smithi018 2024-09-20T19:05:39.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:38 smithi082 bash[24745]: audit 2024-09-20T19:05:37.816466+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:39.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:38 smithi082 bash[24745]: audit 2024-09-20T19:05:37.816466+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:39.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:38 smithi082 bash[24745]: audit 2024-09-20T19:05:37.823985+0000 mon.a (mon.0) 295 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:39.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:38 smithi082 bash[24745]: audit 2024-09-20T19:05:37.823985+0000 mon.a (mon.0) 295 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:39.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:38 smithi082 bash[24745]: audit 2024-09-20T19:05:37.825633+0000 mon.a (mon.0) 296 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:39.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:38 smithi082 bash[24745]: audit 2024-09-20T19:05:37.825633+0000 mon.a (mon.0) 296 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:39.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:38 smithi082 bash[24745]: audit 2024-09-20T19:05:37.827386+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:39.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:38 smithi082 bash[24745]: audit 2024-09-20T19:05:37.827386+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:39.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:38 smithi082 bash[24745]: audit 2024-09-20T19:05:37.837195+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:39.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:38 smithi082 bash[24745]: audit 2024-09-20T19:05:37.837195+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:39.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:38 smithi082 bash[24745]: cephadm 2024-09-20T19:05:37.888138+0000 mgr.a (mgr.14152) 102 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-20T19:05:39.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:38 smithi082 bash[24745]: cephadm 2024-09-20T19:05:37.888138+0000 mgr.a (mgr.14152) 102 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-20T19:05:39.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:38 smithi082 bash[24745]: audit 2024-09-20T19:05:37.888904+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-20T19:05:39.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:38 smithi082 bash[24745]: audit 2024-09-20T19:05:37.888904+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-20T19:05:39.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:38 smithi082 bash[24745]: audit 2024-09-20T19:05:37.890805+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-20T19:05:39.202 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:38 smithi082 bash[24745]: audit 2024-09-20T19:05:37.890805+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-20T19:05:39.202 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:38 smithi082 bash[24745]: audit 2024-09-20T19:05:37.892450+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:39.202 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:38 smithi082 bash[24745]: audit 2024-09-20T19:05:37.892450+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:39.202 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:38 smithi082 bash[24745]: cephadm 2024-09-20T19:05:37.894278+0000 mgr.a (mgr.14152) 103 : cephadm [INF] Reconfiguring daemon mgr.a on smithi018 2024-09-20T19:05:39.202 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:38 smithi082 bash[24745]: cephadm 2024-09-20T19:05:37.894278+0000 mgr.a (mgr.14152) 103 : cephadm [INF] Reconfiguring daemon mgr.a on smithi018 2024-09-20T19:05:39.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:38 smithi137 bash[25001]: audit 2024-09-20T19:05:37.816466+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:39.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:38 smithi137 bash[25001]: audit 2024-09-20T19:05:37.816466+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:39.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:38 smithi137 bash[25001]: audit 2024-09-20T19:05:37.823985+0000 mon.a (mon.0) 295 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:39.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:38 smithi137 bash[25001]: audit 2024-09-20T19:05:37.823985+0000 mon.a (mon.0) 295 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:39.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:38 smithi137 bash[25001]: audit 2024-09-20T19:05:37.825633+0000 mon.a (mon.0) 296 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:39.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:38 smithi137 bash[25001]: audit 2024-09-20T19:05:37.825633+0000 mon.a (mon.0) 296 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:39.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:38 smithi137 bash[25001]: audit 2024-09-20T19:05:37.827386+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:39.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:38 smithi137 bash[25001]: audit 2024-09-20T19:05:37.827386+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:39.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:38 smithi137 bash[25001]: audit 2024-09-20T19:05:37.837195+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:39.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:38 smithi137 bash[25001]: audit 2024-09-20T19:05:37.837195+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:39.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:38 smithi137 bash[25001]: cephadm 2024-09-20T19:05:37.888138+0000 mgr.a (mgr.14152) 102 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-20T19:05:39.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:38 smithi137 bash[25001]: cephadm 2024-09-20T19:05:37.888138+0000 mgr.a (mgr.14152) 102 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-20T19:05:39.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:38 smithi137 bash[25001]: audit 2024-09-20T19:05:37.888904+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-20T19:05:39.304 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:38 smithi137 bash[25001]: audit 2024-09-20T19:05:37.888904+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-20T19:05:39.304 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:38 smithi137 bash[25001]: audit 2024-09-20T19:05:37.890805+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-20T19:05:39.304 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:38 smithi137 bash[25001]: audit 2024-09-20T19:05:37.890805+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-20T19:05:39.304 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:38 smithi137 bash[25001]: audit 2024-09-20T19:05:37.892450+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:39.304 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:38 smithi137 bash[25001]: audit 2024-09-20T19:05:37.892450+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:39.304 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:38 smithi137 bash[25001]: cephadm 2024-09-20T19:05:37.894278+0000 mgr.a (mgr.14152) 103 : cephadm [INF] Reconfiguring daemon mgr.a on smithi018 2024-09-20T19:05:39.304 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:38 smithi137 bash[25001]: cephadm 2024-09-20T19:05:37.894278+0000 mgr.a (mgr.14152) 103 : cephadm [INF] Reconfiguring daemon mgr.a on smithi018 2024-09-20T19:05:40.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:39 smithi018 bash[22763]: cluster 2024-09-20T19:05:38.436760+0000 mgr.a (mgr.14152) 104 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:40.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:39 smithi018 bash[22763]: cluster 2024-09-20T19:05:38.436760+0000 mgr.a (mgr.14152) 104 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:40.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:39 smithi018 bash[22763]: cluster 2024-09-20T19:05:39.426108+0000 mon.a (mon.0) 302 : cluster [DBG] Standby manager daemon b started 2024-09-20T19:05:40.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:39 smithi018 bash[22763]: cluster 2024-09-20T19:05:39.426108+0000 mon.a (mon.0) 302 : cluster [DBG] Standby manager daemon b started 2024-09-20T19:05:40.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:39 smithi018 bash[22763]: audit 2024-09-20T19:05:39.430705+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2024-09-20T19:05:40.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:39 smithi018 bash[22763]: audit 2024-09-20T19:05:39.430705+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2024-09-20T19:05:40.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:39 smithi018 bash[22763]: audit 2024-09-20T19:05:39.431348+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-20T19:05:40.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:39 smithi018 bash[22763]: audit 2024-09-20T19:05:39.431348+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-20T19:05:40.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:39 smithi018 bash[22763]: audit 2024-09-20T19:05:39.432450+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2024-09-20T19:05:40.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:39 smithi018 bash[22763]: audit 2024-09-20T19:05:39.432450+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2024-09-20T19:05:40.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:39 smithi018 bash[22763]: audit 2024-09-20T19:05:39.432970+0000 mon.b (mon.2) 6 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-20T19:05:40.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:39 smithi018 bash[22763]: audit 2024-09-20T19:05:39.432970+0000 mon.b (mon.2) 6 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-20T19:05:40.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:39 smithi082 bash[24745]: cluster 2024-09-20T19:05:38.436760+0000 mgr.a (mgr.14152) 104 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:40.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:39 smithi082 bash[24745]: cluster 2024-09-20T19:05:38.436760+0000 mgr.a (mgr.14152) 104 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:40.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:39 smithi082 bash[24745]: cluster 2024-09-20T19:05:39.426108+0000 mon.a (mon.0) 302 : cluster [DBG] Standby manager daemon b started 2024-09-20T19:05:40.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:39 smithi082 bash[24745]: cluster 2024-09-20T19:05:39.426108+0000 mon.a (mon.0) 302 : cluster [DBG] Standby manager daemon b started 2024-09-20T19:05:40.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:39 smithi082 bash[24745]: audit 2024-09-20T19:05:39.430705+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2024-09-20T19:05:40.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:39 smithi082 bash[24745]: audit 2024-09-20T19:05:39.430705+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2024-09-20T19:05:40.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:39 smithi082 bash[24745]: audit 2024-09-20T19:05:39.431348+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-20T19:05:40.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:39 smithi082 bash[24745]: audit 2024-09-20T19:05:39.431348+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-20T19:05:40.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:39 smithi082 bash[24745]: audit 2024-09-20T19:05:39.432450+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2024-09-20T19:05:40.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:39 smithi082 bash[24745]: audit 2024-09-20T19:05:39.432450+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2024-09-20T19:05:40.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:39 smithi082 bash[24745]: audit 2024-09-20T19:05:39.432970+0000 mon.b (mon.2) 6 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-20T19:05:40.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:39 smithi082 bash[24745]: audit 2024-09-20T19:05:39.432970+0000 mon.b (mon.2) 6 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-20T19:05:40.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:39 smithi137 bash[25001]: cluster 2024-09-20T19:05:38.436760+0000 mgr.a (mgr.14152) 104 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:40.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:39 smithi137 bash[25001]: cluster 2024-09-20T19:05:38.436760+0000 mgr.a (mgr.14152) 104 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:40.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:39 smithi137 bash[25001]: cluster 2024-09-20T19:05:39.426108+0000 mon.a (mon.0) 302 : cluster [DBG] Standby manager daemon b started 2024-09-20T19:05:40.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:39 smithi137 bash[25001]: cluster 2024-09-20T19:05:39.426108+0000 mon.a (mon.0) 302 : cluster [DBG] Standby manager daemon b started 2024-09-20T19:05:40.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:39 smithi137 bash[25001]: audit 2024-09-20T19:05:39.430705+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2024-09-20T19:05:40.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:39 smithi137 bash[25001]: audit 2024-09-20T19:05:39.430705+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2024-09-20T19:05:40.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:39 smithi137 bash[25001]: audit 2024-09-20T19:05:39.431348+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-20T19:05:40.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:39 smithi137 bash[25001]: audit 2024-09-20T19:05:39.431348+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-20T19:05:40.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:39 smithi137 bash[25001]: audit 2024-09-20T19:05:39.432450+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2024-09-20T19:05:40.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:39 smithi137 bash[25001]: audit 2024-09-20T19:05:39.432450+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2024-09-20T19:05:40.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:39 smithi137 bash[25001]: audit 2024-09-20T19:05:39.432970+0000 mon.b (mon.2) 6 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-20T19:05:40.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:39 smithi137 bash[25001]: audit 2024-09-20T19:05:39.432970+0000 mon.b (mon.2) 6 : audit [DBG] from='mgr.? 172.21.15.82:0/1606710829' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-20T19:05:40.542 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:05:40.581 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph orch daemon add osd smithi018:vg_nvme/lv_4 2024-09-20T19:05:40.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:40 smithi018 bash[22763]: cluster 2024-09-20T19:05:39.847222+0000 mon.a (mon.0) 303 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-09-20T19:05:40.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:40 smithi018 bash[22763]: cluster 2024-09-20T19:05:39.847222+0000 mon.a (mon.0) 303 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-09-20T19:05:40.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:40 smithi018 bash[22763]: audit 2024-09-20T19:05:39.848537+0000 mon.a (mon.0) 304 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2024-09-20T19:05:40.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:40 smithi018 bash[22763]: audit 2024-09-20T19:05:39.848537+0000 mon.a (mon.0) 304 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2024-09-20T19:05:41.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:40 smithi082 bash[24745]: cluster 2024-09-20T19:05:39.847222+0000 mon.a (mon.0) 303 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-09-20T19:05:41.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:40 smithi082 bash[24745]: cluster 2024-09-20T19:05:39.847222+0000 mon.a (mon.0) 303 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-09-20T19:05:41.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:40 smithi082 bash[24745]: audit 2024-09-20T19:05:39.848537+0000 mon.a (mon.0) 304 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2024-09-20T19:05:41.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:40 smithi082 bash[24745]: audit 2024-09-20T19:05:39.848537+0000 mon.a (mon.0) 304 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2024-09-20T19:05:41.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:40 smithi137 bash[25001]: cluster 2024-09-20T19:05:39.847222+0000 mon.a (mon.0) 303 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-09-20T19:05:41.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:40 smithi137 bash[25001]: cluster 2024-09-20T19:05:39.847222+0000 mon.a (mon.0) 303 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-09-20T19:05:41.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:40 smithi137 bash[25001]: audit 2024-09-20T19:05:39.848537+0000 mon.a (mon.0) 304 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2024-09-20T19:05:41.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:40 smithi137 bash[25001]: audit 2024-09-20T19:05:39.848537+0000 mon.a (mon.0) 304 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2024-09-20T19:05:41.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:41 smithi018 bash[22763]: cluster 2024-09-20T19:05:40.437138+0000 mgr.a (mgr.14152) 105 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:41.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:41 smithi018 bash[22763]: cluster 2024-09-20T19:05:40.437138+0000 mgr.a (mgr.14152) 105 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:42.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:41 smithi082 bash[24745]: cluster 2024-09-20T19:05:40.437138+0000 mgr.a (mgr.14152) 105 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:42.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:41 smithi082 bash[24745]: cluster 2024-09-20T19:05:40.437138+0000 mgr.a (mgr.14152) 105 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:42.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:41 smithi137 bash[25001]: cluster 2024-09-20T19:05:40.437138+0000 mgr.a (mgr.14152) 105 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:42.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:41 smithi137 bash[25001]: cluster 2024-09-20T19:05:40.437138+0000 mgr.a (mgr.14152) 105 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:43.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:43 smithi082 bash[24745]: audit 2024-09-20T19:05:42.430706+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:43.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:43 smithi082 bash[24745]: audit 2024-09-20T19:05:42.430706+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:43.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:43 smithi082 bash[24745]: cluster 2024-09-20T19:05:42.437535+0000 mgr.a (mgr.14152) 106 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:43.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:43 smithi082 bash[24745]: cluster 2024-09-20T19:05:42.437535+0000 mgr.a (mgr.14152) 106 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:43.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:43 smithi082 bash[24745]: audit 2024-09-20T19:05:42.438450+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:43.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:43 smithi082 bash[24745]: audit 2024-09-20T19:05:42.438450+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:43.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:43 smithi082 bash[24745]: audit 2024-09-20T19:05:42.441147+0000 mon.a (mon.0) 307 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:43.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:43 smithi082 bash[24745]: audit 2024-09-20T19:05:42.441147+0000 mon.a (mon.0) 307 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:43.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:43 smithi082 bash[24745]: audit 2024-09-20T19:05:43.136576+0000 mon.a (mon.0) 308 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:43.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:43 smithi082 bash[24745]: audit 2024-09-20T19:05:43.136576+0000 mon.a (mon.0) 308 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:43.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:43 smithi082 bash[24745]: audit 2024-09-20T19:05:43.138127+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:43.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:43 smithi082 bash[24745]: audit 2024-09-20T19:05:43.138127+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:43.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:43 smithi082 bash[24745]: audit 2024-09-20T19:05:43.147613+0000 mon.a (mon.0) 310 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:43.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:43 smithi082 bash[24745]: audit 2024-09-20T19:05:43.147613+0000 mon.a (mon.0) 310 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:43.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:43 smithi137 bash[25001]: audit 2024-09-20T19:05:42.430706+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:43.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:43 smithi137 bash[25001]: audit 2024-09-20T19:05:42.430706+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:43.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:43 smithi137 bash[25001]: cluster 2024-09-20T19:05:42.437535+0000 mgr.a (mgr.14152) 106 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:43.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:43 smithi137 bash[25001]: cluster 2024-09-20T19:05:42.437535+0000 mgr.a (mgr.14152) 106 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:43.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:43 smithi137 bash[25001]: audit 2024-09-20T19:05:42.438450+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:43.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:43 smithi137 bash[25001]: audit 2024-09-20T19:05:42.438450+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:43.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:43 smithi137 bash[25001]: audit 2024-09-20T19:05:42.441147+0000 mon.a (mon.0) 307 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:43.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:43 smithi137 bash[25001]: audit 2024-09-20T19:05:42.441147+0000 mon.a (mon.0) 307 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:43.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:43 smithi137 bash[25001]: audit 2024-09-20T19:05:43.136576+0000 mon.a (mon.0) 308 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:43.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:43 smithi137 bash[25001]: audit 2024-09-20T19:05:43.136576+0000 mon.a (mon.0) 308 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:43.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:43 smithi137 bash[25001]: audit 2024-09-20T19:05:43.138127+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:43.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:43 smithi137 bash[25001]: audit 2024-09-20T19:05:43.138127+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:43.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:43 smithi137 bash[25001]: audit 2024-09-20T19:05:43.147613+0000 mon.a (mon.0) 310 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:43.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:43 smithi137 bash[25001]: audit 2024-09-20T19:05:43.147613+0000 mon.a (mon.0) 310 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:43.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:43 smithi018 bash[22763]: audit 2024-09-20T19:05:42.430706+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:43.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:43 smithi018 bash[22763]: audit 2024-09-20T19:05:42.430706+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:43.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:43 smithi018 bash[22763]: cluster 2024-09-20T19:05:42.437535+0000 mgr.a (mgr.14152) 106 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:43.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:43 smithi018 bash[22763]: cluster 2024-09-20T19:05:42.437535+0000 mgr.a (mgr.14152) 106 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:43.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:43 smithi018 bash[22763]: audit 2024-09-20T19:05:42.438450+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:43.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:43 smithi018 bash[22763]: audit 2024-09-20T19:05:42.438450+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:43.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:43 smithi018 bash[22763]: audit 2024-09-20T19:05:42.441147+0000 mon.a (mon.0) 307 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:43.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:43 smithi018 bash[22763]: audit 2024-09-20T19:05:42.441147+0000 mon.a (mon.0) 307 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:05:43.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:43 smithi018 bash[22763]: audit 2024-09-20T19:05:43.136576+0000 mon.a (mon.0) 308 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:43.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:43 smithi018 bash[22763]: audit 2024-09-20T19:05:43.136576+0000 mon.a (mon.0) 308 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:43.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:43 smithi018 bash[22763]: audit 2024-09-20T19:05:43.138127+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:43.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:43 smithi018 bash[22763]: audit 2024-09-20T19:05:43.138127+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:05:43.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:43 smithi018 bash[22763]: audit 2024-09-20T19:05:43.147613+0000 mon.a (mon.0) 310 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:43.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:43 smithi018 bash[22763]: audit 2024-09-20T19:05:43.147613+0000 mon.a (mon.0) 310 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:05:45.307 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:05:45.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:45 smithi018 bash[22763]: cluster 2024-09-20T19:05:44.437879+0000 mgr.a (mgr.14152) 107 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:45.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:45 smithi018 bash[22763]: cluster 2024-09-20T19:05:44.437879+0000 mgr.a (mgr.14152) 107 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:45.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:45 smithi137 bash[25001]: cluster 2024-09-20T19:05:44.437879+0000 mgr.a (mgr.14152) 107 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:45.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:45 smithi137 bash[25001]: cluster 2024-09-20T19:05:44.437879+0000 mgr.a (mgr.14152) 107 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:45.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:45 smithi082 bash[24745]: cluster 2024-09-20T19:05:44.437879+0000 mgr.a (mgr.14152) 107 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:45.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:45 smithi082 bash[24745]: cluster 2024-09-20T19:05:44.437879+0000 mgr.a (mgr.14152) 107 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:47.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:47 smithi137 bash[25001]: cluster 2024-09-20T19:05:46.438200+0000 mgr.a (mgr.14152) 108 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:47.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:47 smithi137 bash[25001]: cluster 2024-09-20T19:05:46.438200+0000 mgr.a (mgr.14152) 108 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:47.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:47 smithi137 bash[25001]: audit 2024-09-20T19:05:46.749965+0000 mgr.a (mgr.14152) 109 : audit [DBG] from='client.14208 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi018:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:05:47.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:47 smithi137 bash[25001]: audit 2024-09-20T19:05:46.749965+0000 mgr.a (mgr.14152) 109 : audit [DBG] from='client.14208 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi018:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:05:47.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:47 smithi137 bash[25001]: audit 2024-09-20T19:05:46.752811+0000 mon.a (mon.0) 311 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:05:47.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:47 smithi137 bash[25001]: audit 2024-09-20T19:05:46.752811+0000 mon.a (mon.0) 311 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:05:47.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:47 smithi137 bash[25001]: audit 2024-09-20T19:05:46.757926+0000 mon.a (mon.0) 312 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:05:47.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:47 smithi137 bash[25001]: audit 2024-09-20T19:05:46.757926+0000 mon.a (mon.0) 312 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:05:47.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:47 smithi137 bash[25001]: audit 2024-09-20T19:05:46.758996+0000 mon.a (mon.0) 313 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:47.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:47 smithi137 bash[25001]: audit 2024-09-20T19:05:46.758996+0000 mon.a (mon.0) 313 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:47.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:47 smithi018 bash[22763]: cluster 2024-09-20T19:05:46.438200+0000 mgr.a (mgr.14152) 108 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:47.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:47 smithi018 bash[22763]: cluster 2024-09-20T19:05:46.438200+0000 mgr.a (mgr.14152) 108 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:47.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:47 smithi018 bash[22763]: audit 2024-09-20T19:05:46.749965+0000 mgr.a (mgr.14152) 109 : audit [DBG] from='client.14208 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi018:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:05:47.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:47 smithi018 bash[22763]: audit 2024-09-20T19:05:46.749965+0000 mgr.a (mgr.14152) 109 : audit [DBG] from='client.14208 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi018:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:05:47.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:47 smithi018 bash[22763]: audit 2024-09-20T19:05:46.752811+0000 mon.a (mon.0) 311 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:05:47.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:47 smithi018 bash[22763]: audit 2024-09-20T19:05:46.752811+0000 mon.a (mon.0) 311 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:05:47.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:47 smithi018 bash[22763]: audit 2024-09-20T19:05:46.757926+0000 mon.a (mon.0) 312 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:05:47.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:47 smithi018 bash[22763]: audit 2024-09-20T19:05:46.757926+0000 mon.a (mon.0) 312 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:05:47.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:47 smithi018 bash[22763]: audit 2024-09-20T19:05:46.758996+0000 mon.a (mon.0) 313 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:47.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:47 smithi018 bash[22763]: audit 2024-09-20T19:05:46.758996+0000 mon.a (mon.0) 313 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:47.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:47 smithi082 bash[24745]: cluster 2024-09-20T19:05:46.438200+0000 mgr.a (mgr.14152) 108 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:47.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:47 smithi082 bash[24745]: cluster 2024-09-20T19:05:46.438200+0000 mgr.a (mgr.14152) 108 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:47.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:47 smithi082 bash[24745]: audit 2024-09-20T19:05:46.749965+0000 mgr.a (mgr.14152) 109 : audit [DBG] from='client.14208 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi018:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:05:47.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:47 smithi082 bash[24745]: audit 2024-09-20T19:05:46.749965+0000 mgr.a (mgr.14152) 109 : audit [DBG] from='client.14208 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi018:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:05:47.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:47 smithi082 bash[24745]: audit 2024-09-20T19:05:46.752811+0000 mon.a (mon.0) 311 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:05:47.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:47 smithi082 bash[24745]: audit 2024-09-20T19:05:46.752811+0000 mon.a (mon.0) 311 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:05:47.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:47 smithi082 bash[24745]: audit 2024-09-20T19:05:46.757926+0000 mon.a (mon.0) 312 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:05:47.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:47 smithi082 bash[24745]: audit 2024-09-20T19:05:46.757926+0000 mon.a (mon.0) 312 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:05:47.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:47 smithi082 bash[24745]: audit 2024-09-20T19:05:46.758996+0000 mon.a (mon.0) 313 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:47.951 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:47 smithi082 bash[24745]: audit 2024-09-20T19:05:46.758996+0000 mon.a (mon.0) 313 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:05:49.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:49 smithi137 bash[25001]: cluster 2024-09-20T19:05:48.438535+0000 mgr.a (mgr.14152) 110 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:49.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:49 smithi137 bash[25001]: cluster 2024-09-20T19:05:48.438535+0000 mgr.a (mgr.14152) 110 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:49.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:49 smithi018 bash[22763]: cluster 2024-09-20T19:05:48.438535+0000 mgr.a (mgr.14152) 110 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:49.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:49 smithi018 bash[22763]: cluster 2024-09-20T19:05:48.438535+0000 mgr.a (mgr.14152) 110 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:49.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:49 smithi082 bash[24745]: cluster 2024-09-20T19:05:48.438535+0000 mgr.a (mgr.14152) 110 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:49.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:49 smithi082 bash[24745]: cluster 2024-09-20T19:05:48.438535+0000 mgr.a (mgr.14152) 110 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:51.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:51 smithi137 bash[25001]: cluster 2024-09-20T19:05:50.438959+0000 mgr.a (mgr.14152) 111 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:51.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:51 smithi137 bash[25001]: cluster 2024-09-20T19:05:50.438959+0000 mgr.a (mgr.14152) 111 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:51.884 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:51 smithi018 bash[22763]: cluster 2024-09-20T19:05:50.438959+0000 mgr.a (mgr.14152) 111 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:51.885 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:51 smithi018 bash[22763]: cluster 2024-09-20T19:05:50.438959+0000 mgr.a (mgr.14152) 111 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:51.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:51 smithi082 bash[24745]: cluster 2024-09-20T19:05:50.438959+0000 mgr.a (mgr.14152) 111 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:51.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:51 smithi082 bash[24745]: cluster 2024-09-20T19:05:50.438959+0000 mgr.a (mgr.14152) 111 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:53.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:53 smithi137 bash[25001]: cluster 2024-09-20T19:05:52.439384+0000 mgr.a (mgr.14152) 112 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:53.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:53 smithi137 bash[25001]: cluster 2024-09-20T19:05:52.439384+0000 mgr.a (mgr.14152) 112 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:53.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:53 smithi018 bash[22763]: cluster 2024-09-20T19:05:52.439384+0000 mgr.a (mgr.14152) 112 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:53.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:53 smithi018 bash[22763]: cluster 2024-09-20T19:05:52.439384+0000 mgr.a (mgr.14152) 112 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:53.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:53 smithi082 bash[24745]: cluster 2024-09-20T19:05:52.439384+0000 mgr.a (mgr.14152) 112 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:53.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:53 smithi082 bash[24745]: cluster 2024-09-20T19:05:52.439384+0000 mgr.a (mgr.14152) 112 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:55.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:55 smithi137 bash[25001]: cluster 2024-09-20T19:05:54.439740+0000 mgr.a (mgr.14152) 113 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:55.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:55 smithi137 bash[25001]: cluster 2024-09-20T19:05:54.439740+0000 mgr.a (mgr.14152) 113 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:55.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:55 smithi137 bash[25001]: audit 2024-09-20T19:05:55.427435+0000 mon.a (mon.0) 314 : audit [INF] from='client.? 172.21.15.18:0/2348023617' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ead1e471-eb47-48a0-a4cb-458a6541fb61"} : dispatch 2024-09-20T19:05:55.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:55 smithi137 bash[25001]: audit 2024-09-20T19:05:55.427435+0000 mon.a (mon.0) 314 : audit [INF] from='client.? 172.21.15.18:0/2348023617' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ead1e471-eb47-48a0-a4cb-458a6541fb61"} : dispatch 2024-09-20T19:05:55.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:55 smithi137 bash[25001]: audit 2024-09-20T19:05:55.429569+0000 mon.a (mon.0) 315 : audit [INF] from='client.? 172.21.15.18:0/2348023617' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ead1e471-eb47-48a0-a4cb-458a6541fb61"}]': finished 2024-09-20T19:05:55.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:55 smithi137 bash[25001]: audit 2024-09-20T19:05:55.429569+0000 mon.a (mon.0) 315 : audit [INF] from='client.? 172.21.15.18:0/2348023617' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ead1e471-eb47-48a0-a4cb-458a6541fb61"}]': finished 2024-09-20T19:05:55.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:55 smithi137 bash[25001]: cluster 2024-09-20T19:05:55.433629+0000 mon.a (mon.0) 316 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-20T19:05:55.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:55 smithi137 bash[25001]: cluster 2024-09-20T19:05:55.433629+0000 mon.a (mon.0) 316 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-20T19:05:55.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:55 smithi137 bash[25001]: audit 2024-09-20T19:05:55.433870+0000 mon.a (mon.0) 317 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:05:55.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:55 smithi137 bash[25001]: audit 2024-09-20T19:05:55.433870+0000 mon.a (mon.0) 317 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:05:55.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:55 smithi018 bash[22763]: cluster 2024-09-20T19:05:54.439740+0000 mgr.a (mgr.14152) 113 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:55.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:55 smithi018 bash[22763]: cluster 2024-09-20T19:05:54.439740+0000 mgr.a (mgr.14152) 113 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:55.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:55 smithi018 bash[22763]: audit 2024-09-20T19:05:55.427435+0000 mon.a (mon.0) 314 : audit [INF] from='client.? 172.21.15.18:0/2348023617' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ead1e471-eb47-48a0-a4cb-458a6541fb61"} : dispatch 2024-09-20T19:05:55.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:55 smithi018 bash[22763]: audit 2024-09-20T19:05:55.427435+0000 mon.a (mon.0) 314 : audit [INF] from='client.? 172.21.15.18:0/2348023617' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ead1e471-eb47-48a0-a4cb-458a6541fb61"} : dispatch 2024-09-20T19:05:55.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:55 smithi018 bash[22763]: audit 2024-09-20T19:05:55.429569+0000 mon.a (mon.0) 315 : audit [INF] from='client.? 172.21.15.18:0/2348023617' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ead1e471-eb47-48a0-a4cb-458a6541fb61"}]': finished 2024-09-20T19:05:55.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:55 smithi018 bash[22763]: audit 2024-09-20T19:05:55.429569+0000 mon.a (mon.0) 315 : audit [INF] from='client.? 172.21.15.18:0/2348023617' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ead1e471-eb47-48a0-a4cb-458a6541fb61"}]': finished 2024-09-20T19:05:55.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:55 smithi018 bash[22763]: cluster 2024-09-20T19:05:55.433629+0000 mon.a (mon.0) 316 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-20T19:05:55.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:55 smithi018 bash[22763]: cluster 2024-09-20T19:05:55.433629+0000 mon.a (mon.0) 316 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-20T19:05:55.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:55 smithi018 bash[22763]: audit 2024-09-20T19:05:55.433870+0000 mon.a (mon.0) 317 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:05:55.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:55 smithi018 bash[22763]: audit 2024-09-20T19:05:55.433870+0000 mon.a (mon.0) 317 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:05:55.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:55 smithi082 bash[24745]: cluster 2024-09-20T19:05:54.439740+0000 mgr.a (mgr.14152) 113 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:55.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:55 smithi082 bash[24745]: cluster 2024-09-20T19:05:54.439740+0000 mgr.a (mgr.14152) 113 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:55.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:55 smithi082 bash[24745]: audit 2024-09-20T19:05:55.427435+0000 mon.a (mon.0) 314 : audit [INF] from='client.? 172.21.15.18:0/2348023617' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ead1e471-eb47-48a0-a4cb-458a6541fb61"} : dispatch 2024-09-20T19:05:55.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:55 smithi082 bash[24745]: audit 2024-09-20T19:05:55.427435+0000 mon.a (mon.0) 314 : audit [INF] from='client.? 172.21.15.18:0/2348023617' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ead1e471-eb47-48a0-a4cb-458a6541fb61"} : dispatch 2024-09-20T19:05:55.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:55 smithi082 bash[24745]: audit 2024-09-20T19:05:55.429569+0000 mon.a (mon.0) 315 : audit [INF] from='client.? 172.21.15.18:0/2348023617' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ead1e471-eb47-48a0-a4cb-458a6541fb61"}]': finished 2024-09-20T19:05:55.952 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:55 smithi082 bash[24745]: audit 2024-09-20T19:05:55.429569+0000 mon.a (mon.0) 315 : audit [INF] from='client.? 172.21.15.18:0/2348023617' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ead1e471-eb47-48a0-a4cb-458a6541fb61"}]': finished 2024-09-20T19:05:55.952 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:55 smithi082 bash[24745]: cluster 2024-09-20T19:05:55.433629+0000 mon.a (mon.0) 316 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-20T19:05:55.952 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:55 smithi082 bash[24745]: cluster 2024-09-20T19:05:55.433629+0000 mon.a (mon.0) 316 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-20T19:05:55.952 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:55 smithi082 bash[24745]: audit 2024-09-20T19:05:55.433870+0000 mon.a (mon.0) 317 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:05:55.952 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:55 smithi082 bash[24745]: audit 2024-09-20T19:05:55.433870+0000 mon.a (mon.0) 317 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:05:56.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:56 smithi137 bash[25001]: audit 2024-09-20T19:05:56.056538+0000 mon.a (mon.0) 318 : audit [DBG] from='client.? 172.21.15.18:0/3769664851' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:05:56.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:56 smithi137 bash[25001]: audit 2024-09-20T19:05:56.056538+0000 mon.a (mon.0) 318 : audit [DBG] from='client.? 172.21.15.18:0/3769664851' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:05:56.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:56 smithi018 bash[22763]: audit 2024-09-20T19:05:56.056538+0000 mon.a (mon.0) 318 : audit [DBG] from='client.? 172.21.15.18:0/3769664851' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:05:56.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:56 smithi018 bash[22763]: audit 2024-09-20T19:05:56.056538+0000 mon.a (mon.0) 318 : audit [DBG] from='client.? 172.21.15.18:0/3769664851' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:05:56.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:56 smithi082 bash[24745]: audit 2024-09-20T19:05:56.056538+0000 mon.a (mon.0) 318 : audit [DBG] from='client.? 172.21.15.18:0/3769664851' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:05:56.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:56 smithi082 bash[24745]: audit 2024-09-20T19:05:56.056538+0000 mon.a (mon.0) 318 : audit [DBG] from='client.? 172.21.15.18:0/3769664851' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:05:57.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:57 smithi137 bash[25001]: cluster 2024-09-20T19:05:56.440040+0000 mgr.a (mgr.14152) 114 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:57.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:57 smithi137 bash[25001]: cluster 2024-09-20T19:05:56.440040+0000 mgr.a (mgr.14152) 114 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:57.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:57 smithi018 bash[22763]: cluster 2024-09-20T19:05:56.440040+0000 mgr.a (mgr.14152) 114 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:57.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:57 smithi018 bash[22763]: cluster 2024-09-20T19:05:56.440040+0000 mgr.a (mgr.14152) 114 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:57.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:57 smithi082 bash[24745]: cluster 2024-09-20T19:05:56.440040+0000 mgr.a (mgr.14152) 114 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:57.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:57 smithi082 bash[24745]: cluster 2024-09-20T19:05:56.440040+0000 mgr.a (mgr.14152) 114 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:59.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:59 smithi137 bash[25001]: cluster 2024-09-20T19:05:58.440341+0000 mgr.a (mgr.14152) 115 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:59.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:05:59 smithi137 bash[25001]: cluster 2024-09-20T19:05:58.440341+0000 mgr.a (mgr.14152) 115 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:59.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:59 smithi018 bash[22763]: cluster 2024-09-20T19:05:58.440341+0000 mgr.a (mgr.14152) 115 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:59.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:05:59 smithi018 bash[22763]: cluster 2024-09-20T19:05:58.440341+0000 mgr.a (mgr.14152) 115 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:59.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:59 smithi082 bash[24745]: cluster 2024-09-20T19:05:58.440341+0000 mgr.a (mgr.14152) 115 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:05:59.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:05:59 smithi082 bash[24745]: cluster 2024-09-20T19:05:58.440341+0000 mgr.a (mgr.14152) 115 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:01.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:01 smithi137 bash[25001]: cluster 2024-09-20T19:06:00.440706+0000 mgr.a (mgr.14152) 116 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:01.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:01 smithi137 bash[25001]: cluster 2024-09-20T19:06:00.440706+0000 mgr.a (mgr.14152) 116 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:01.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:01 smithi018 bash[22763]: cluster 2024-09-20T19:06:00.440706+0000 mgr.a (mgr.14152) 116 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:01.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:01 smithi018 bash[22763]: cluster 2024-09-20T19:06:00.440706+0000 mgr.a (mgr.14152) 116 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:01.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:01 smithi082 bash[24745]: cluster 2024-09-20T19:06:00.440706+0000 mgr.a (mgr.14152) 116 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:01.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:01 smithi082 bash[24745]: cluster 2024-09-20T19:06:00.440706+0000 mgr.a (mgr.14152) 116 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:03.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:03 smithi137 bash[25001]: cluster 2024-09-20T19:06:02.441154+0000 mgr.a (mgr.14152) 117 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:03.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:03 smithi137 bash[25001]: cluster 2024-09-20T19:06:02.441154+0000 mgr.a (mgr.14152) 117 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:03.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:03 smithi018 bash[22763]: cluster 2024-09-20T19:06:02.441154+0000 mgr.a (mgr.14152) 117 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:03.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:03 smithi018 bash[22763]: cluster 2024-09-20T19:06:02.441154+0000 mgr.a (mgr.14152) 117 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:03.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:03 smithi082 bash[24745]: cluster 2024-09-20T19:06:02.441154+0000 mgr.a (mgr.14152) 117 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:03.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:03 smithi082 bash[24745]: cluster 2024-09-20T19:06:02.441154+0000 mgr.a (mgr.14152) 117 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:05.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:05 smithi137 bash[25001]: cluster 2024-09-20T19:06:04.441570+0000 mgr.a (mgr.14152) 118 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:05.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:05 smithi137 bash[25001]: cluster 2024-09-20T19:06:04.441570+0000 mgr.a (mgr.14152) 118 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:05.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:05 smithi018 bash[22763]: cluster 2024-09-20T19:06:04.441570+0000 mgr.a (mgr.14152) 118 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:05.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:05 smithi018 bash[22763]: cluster 2024-09-20T19:06:04.441570+0000 mgr.a (mgr.14152) 118 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:05.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:05 smithi082 bash[24745]: cluster 2024-09-20T19:06:04.441570+0000 mgr.a (mgr.14152) 118 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:05.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:05 smithi082 bash[24745]: cluster 2024-09-20T19:06:04.441570+0000 mgr.a (mgr.14152) 118 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:07.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:07 smithi137 bash[25001]: cluster 2024-09-20T19:06:06.441875+0000 mgr.a (mgr.14152) 119 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:07.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:07 smithi137 bash[25001]: cluster 2024-09-20T19:06:06.441875+0000 mgr.a (mgr.14152) 119 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:07.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:07 smithi018 bash[22763]: cluster 2024-09-20T19:06:06.441875+0000 mgr.a (mgr.14152) 119 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:07.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:07 smithi018 bash[22763]: cluster 2024-09-20T19:06:06.441875+0000 mgr.a (mgr.14152) 119 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:07.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:07 smithi082 bash[24745]: cluster 2024-09-20T19:06:06.441875+0000 mgr.a (mgr.14152) 119 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:07.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:07 smithi082 bash[24745]: cluster 2024-09-20T19:06:06.441875+0000 mgr.a (mgr.14152) 119 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:09.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:09 smithi137 bash[25001]: cluster 2024-09-20T19:06:08.442220+0000 mgr.a (mgr.14152) 120 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:09.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:09 smithi137 bash[25001]: cluster 2024-09-20T19:06:08.442220+0000 mgr.a (mgr.14152) 120 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:09.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:09 smithi137 bash[25001]: audit 2024-09-20T19:06:09.032228+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-20T19:06:09.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:09 smithi137 bash[25001]: audit 2024-09-20T19:06:09.032228+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-20T19:06:09.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:09 smithi137 bash[25001]: audit 2024-09-20T19:06:09.033901+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:09.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:09 smithi137 bash[25001]: audit 2024-09-20T19:06:09.033901+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:09.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:09 smithi137 bash[25001]: cephadm 2024-09-20T19:06:09.035284+0000 mgr.a (mgr.14152) 121 : cephadm [INF] Deploying daemon osd.0 on smithi018 2024-09-20T19:06:09.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:09 smithi137 bash[25001]: cephadm 2024-09-20T19:06:09.035284+0000 mgr.a (mgr.14152) 121 : cephadm [INF] Deploying daemon osd.0 on smithi018 2024-09-20T19:06:09.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:09 smithi018 bash[22763]: cluster 2024-09-20T19:06:08.442220+0000 mgr.a (mgr.14152) 120 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:09.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:09 smithi018 bash[22763]: cluster 2024-09-20T19:06:08.442220+0000 mgr.a (mgr.14152) 120 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:09.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:09 smithi018 bash[22763]: audit 2024-09-20T19:06:09.032228+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-20T19:06:09.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:09 smithi018 bash[22763]: audit 2024-09-20T19:06:09.032228+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-20T19:06:09.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:09 smithi018 bash[22763]: audit 2024-09-20T19:06:09.033901+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:09.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:09 smithi018 bash[22763]: audit 2024-09-20T19:06:09.033901+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:09.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:09 smithi018 bash[22763]: cephadm 2024-09-20T19:06:09.035284+0000 mgr.a (mgr.14152) 121 : cephadm [INF] Deploying daemon osd.0 on smithi018 2024-09-20T19:06:09.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:09 smithi018 bash[22763]: cephadm 2024-09-20T19:06:09.035284+0000 mgr.a (mgr.14152) 121 : cephadm [INF] Deploying daemon osd.0 on smithi018 2024-09-20T19:06:09.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:09 smithi082 bash[24745]: cluster 2024-09-20T19:06:08.442220+0000 mgr.a (mgr.14152) 120 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:09.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:09 smithi082 bash[24745]: cluster 2024-09-20T19:06:08.442220+0000 mgr.a (mgr.14152) 120 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:09.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:09 smithi082 bash[24745]: audit 2024-09-20T19:06:09.032228+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-20T19:06:09.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:09 smithi082 bash[24745]: audit 2024-09-20T19:06:09.032228+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-20T19:06:09.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:09 smithi082 bash[24745]: audit 2024-09-20T19:06:09.033901+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:09.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:09 smithi082 bash[24745]: audit 2024-09-20T19:06:09.033901+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:09.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:09 smithi082 bash[24745]: cephadm 2024-09-20T19:06:09.035284+0000 mgr.a (mgr.14152) 121 : cephadm [INF] Deploying daemon osd.0 on smithi018 2024-09-20T19:06:09.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:09 smithi082 bash[24745]: cephadm 2024-09-20T19:06:09.035284+0000 mgr.a (mgr.14152) 121 : cephadm [INF] Deploying daemon osd.0 on smithi018 2024-09-20T19:06:11.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:11 smithi018 bash[22763]: cluster 2024-09-20T19:06:10.442614+0000 mgr.a (mgr.14152) 122 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:11.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:11 smithi018 bash[22763]: cluster 2024-09-20T19:06:10.442614+0000 mgr.a (mgr.14152) 122 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:11.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:11 smithi137 bash[25001]: cluster 2024-09-20T19:06:10.442614+0000 mgr.a (mgr.14152) 122 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:11.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:11 smithi137 bash[25001]: cluster 2024-09-20T19:06:10.442614+0000 mgr.a (mgr.14152) 122 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:11.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:11 smithi082 bash[24745]: cluster 2024-09-20T19:06:10.442614+0000 mgr.a (mgr.14152) 122 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:11.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:11 smithi082 bash[24745]: cluster 2024-09-20T19:06:10.442614+0000 mgr.a (mgr.14152) 122 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:13.422 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:06:13 smithi018 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:06:13.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:13 smithi018 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:06:13.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:13 smithi018 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:06:13.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:13 smithi018 bash[22763]: cluster 2024-09-20T19:06:12.443076+0000 mgr.a (mgr.14152) 123 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:13.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:13 smithi018 bash[22763]: cluster 2024-09-20T19:06:12.443076+0000 mgr.a (mgr.14152) 123 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:13.923 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:06:13 smithi018 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:06:13.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:13 smithi082 bash[24745]: cluster 2024-09-20T19:06:12.443076+0000 mgr.a (mgr.14152) 123 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:13.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:13 smithi082 bash[24745]: cluster 2024-09-20T19:06:12.443076+0000 mgr.a (mgr.14152) 123 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:14.051 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:13 smithi137 bash[25001]: cluster 2024-09-20T19:06:12.443076+0000 mgr.a (mgr.14152) 123 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:14.051 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:13 smithi137 bash[25001]: cluster 2024-09-20T19:06:12.443076+0000 mgr.a (mgr.14152) 123 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:14.836 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:14 smithi018 bash[22763]: audit 2024-09-20T19:06:13.619361+0000 mon.a (mon.0) 321 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:06:14.837 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:14 smithi018 bash[22763]: audit 2024-09-20T19:06:13.619361+0000 mon.a (mon.0) 321 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:06:14.837 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:14 smithi018 bash[22763]: audit 2024-09-20T19:06:13.623355+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:14.837 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:14 smithi018 bash[22763]: audit 2024-09-20T19:06:13.623355+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:14.837 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:14 smithi018 bash[22763]: audit 2024-09-20T19:06:13.627262+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:14.837 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:14 smithi018 bash[22763]: audit 2024-09-20T19:06:13.627262+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:14.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:14 smithi082 bash[24745]: audit 2024-09-20T19:06:13.619361+0000 mon.a (mon.0) 321 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:06:14.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:14 smithi082 bash[24745]: audit 2024-09-20T19:06:13.619361+0000 mon.a (mon.0) 321 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:06:14.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:14 smithi082 bash[24745]: audit 2024-09-20T19:06:13.623355+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:14.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:14 smithi082 bash[24745]: audit 2024-09-20T19:06:13.623355+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:14.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:14 smithi082 bash[24745]: audit 2024-09-20T19:06:13.627262+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:14.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:14 smithi082 bash[24745]: audit 2024-09-20T19:06:13.627262+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:15.051 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:14 smithi137 bash[25001]: audit 2024-09-20T19:06:13.619361+0000 mon.a (mon.0) 321 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:06:15.051 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:14 smithi137 bash[25001]: audit 2024-09-20T19:06:13.619361+0000 mon.a (mon.0) 321 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:06:15.052 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:14 smithi137 bash[25001]: audit 2024-09-20T19:06:13.623355+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:15.052 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:14 smithi137 bash[25001]: audit 2024-09-20T19:06:13.623355+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:15.052 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:14 smithi137 bash[25001]: audit 2024-09-20T19:06:13.627262+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:15.052 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:14 smithi137 bash[25001]: audit 2024-09-20T19:06:13.627262+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:15.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:15 smithi018 bash[22763]: cluster 2024-09-20T19:06:14.443465+0000 mgr.a (mgr.14152) 124 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:15.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:15 smithi018 bash[22763]: cluster 2024-09-20T19:06:14.443465+0000 mgr.a (mgr.14152) 124 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:15.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:15 smithi082 bash[24745]: cluster 2024-09-20T19:06:14.443465+0000 mgr.a (mgr.14152) 124 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:15.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:15 smithi082 bash[24745]: cluster 2024-09-20T19:06:14.443465+0000 mgr.a (mgr.14152) 124 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:16.051 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:15 smithi137 bash[25001]: cluster 2024-09-20T19:06:14.443465+0000 mgr.a (mgr.14152) 124 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:16.051 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:15 smithi137 bash[25001]: cluster 2024-09-20T19:06:14.443465+0000 mgr.a (mgr.14152) 124 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:17.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:17 smithi018 bash[22763]: cluster 2024-09-20T19:06:16.443865+0000 mgr.a (mgr.14152) 125 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:17.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:17 smithi018 bash[22763]: cluster 2024-09-20T19:06:16.443865+0000 mgr.a (mgr.14152) 125 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:17.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:17 smithi082 bash[24745]: cluster 2024-09-20T19:06:16.443865+0000 mgr.a (mgr.14152) 125 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:17.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:17 smithi082 bash[24745]: cluster 2024-09-20T19:06:16.443865+0000 mgr.a (mgr.14152) 125 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:18.051 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:17 smithi137 bash[25001]: cluster 2024-09-20T19:06:16.443865+0000 mgr.a (mgr.14152) 125 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:18.051 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:17 smithi137 bash[25001]: cluster 2024-09-20T19:06:16.443865+0000 mgr.a (mgr.14152) 125 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:20.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:19 smithi082 bash[24745]: cluster 2024-09-20T19:06:18.444302+0000 mgr.a (mgr.14152) 126 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:20.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:19 smithi082 bash[24745]: cluster 2024-09-20T19:06:18.444302+0000 mgr.a (mgr.14152) 126 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:20.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:19 smithi082 bash[24745]: audit 2024-09-20T19:06:18.927438+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:20.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:19 smithi082 bash[24745]: audit 2024-09-20T19:06:18.927438+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:20.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:19 smithi082 bash[24745]: audit 2024-09-20T19:06:18.931536+0000 mon.a (mon.0) 325 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:20.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:19 smithi082 bash[24745]: audit 2024-09-20T19:06:18.931536+0000 mon.a (mon.0) 325 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:20.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:19 smithi082 bash[24745]: audit 2024-09-20T19:06:19.581424+0000 mon.a (mon.0) 326 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:20.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:19 smithi082 bash[24745]: audit 2024-09-20T19:06:19.581424+0000 mon.a (mon.0) 326 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:20.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:19 smithi082 bash[24745]: audit 2024-09-20T19:06:19.582679+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:06:20.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:19 smithi082 bash[24745]: audit 2024-09-20T19:06:19.582679+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:06:20.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:19 smithi082 bash[24745]: audit 2024-09-20T19:06:19.590857+0000 mon.a (mon.0) 328 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:20.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:19 smithi082 bash[24745]: audit 2024-09-20T19:06:19.590857+0000 mon.a (mon.0) 328 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:20.272 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:19 smithi018 bash[22763]: cluster 2024-09-20T19:06:18.444302+0000 mgr.a (mgr.14152) 126 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:20.272 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:19 smithi018 bash[22763]: cluster 2024-09-20T19:06:18.444302+0000 mgr.a (mgr.14152) 126 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:20.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:19 smithi018 bash[22763]: audit 2024-09-20T19:06:18.927438+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:20.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:19 smithi018 bash[22763]: audit 2024-09-20T19:06:18.927438+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:20.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:19 smithi018 bash[22763]: audit 2024-09-20T19:06:18.931536+0000 mon.a (mon.0) 325 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:20.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:19 smithi018 bash[22763]: audit 2024-09-20T19:06:18.931536+0000 mon.a (mon.0) 325 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:20.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:19 smithi018 bash[22763]: audit 2024-09-20T19:06:19.581424+0000 mon.a (mon.0) 326 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:20.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:19 smithi018 bash[22763]: audit 2024-09-20T19:06:19.581424+0000 mon.a (mon.0) 326 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:20.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:19 smithi018 bash[22763]: audit 2024-09-20T19:06:19.582679+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:06:20.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:19 smithi018 bash[22763]: audit 2024-09-20T19:06:19.582679+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:06:20.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:19 smithi018 bash[22763]: audit 2024-09-20T19:06:19.590857+0000 mon.a (mon.0) 328 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:20.273 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:19 smithi018 bash[22763]: audit 2024-09-20T19:06:19.590857+0000 mon.a (mon.0) 328 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:20.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:19 smithi137 bash[25001]: cluster 2024-09-20T19:06:18.444302+0000 mgr.a (mgr.14152) 126 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:20.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:19 smithi137 bash[25001]: cluster 2024-09-20T19:06:18.444302+0000 mgr.a (mgr.14152) 126 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:20.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:19 smithi137 bash[25001]: audit 2024-09-20T19:06:18.927438+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:20.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:19 smithi137 bash[25001]: audit 2024-09-20T19:06:18.927438+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:20.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:19 smithi137 bash[25001]: audit 2024-09-20T19:06:18.931536+0000 mon.a (mon.0) 325 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:20.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:19 smithi137 bash[25001]: audit 2024-09-20T19:06:18.931536+0000 mon.a (mon.0) 325 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:20.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:19 smithi137 bash[25001]: audit 2024-09-20T19:06:19.581424+0000 mon.a (mon.0) 326 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:20.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:19 smithi137 bash[25001]: audit 2024-09-20T19:06:19.581424+0000 mon.a (mon.0) 326 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:20.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:19 smithi137 bash[25001]: audit 2024-09-20T19:06:19.582679+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:06:20.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:19 smithi137 bash[25001]: audit 2024-09-20T19:06:19.582679+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:06:20.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:19 smithi137 bash[25001]: audit 2024-09-20T19:06:19.590857+0000 mon.a (mon.0) 328 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:20.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:19 smithi137 bash[25001]: audit 2024-09-20T19:06:19.590857+0000 mon.a (mon.0) 328 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:22.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:21 smithi082 bash[24745]: cluster 2024-09-20T19:06:20.444618+0000 mgr.a (mgr.14152) 127 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:22.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:21 smithi082 bash[24745]: cluster 2024-09-20T19:06:20.444618+0000 mgr.a (mgr.14152) 127 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:22.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:21 smithi137 bash[25001]: cluster 2024-09-20T19:06:20.444618+0000 mgr.a (mgr.14152) 127 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:22.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:21 smithi137 bash[25001]: cluster 2024-09-20T19:06:20.444618+0000 mgr.a (mgr.14152) 127 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:22.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:21 smithi018 bash[22763]: cluster 2024-09-20T19:06:20.444618+0000 mgr.a (mgr.14152) 127 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:22.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:21 smithi018 bash[22763]: cluster 2024-09-20T19:06:20.444618+0000 mgr.a (mgr.14152) 127 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:24.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:23 smithi082 bash[24745]: cluster 2024-09-20T19:06:22.445003+0000 mgr.a (mgr.14152) 128 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:24.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:23 smithi082 bash[24745]: cluster 2024-09-20T19:06:22.445003+0000 mgr.a (mgr.14152) 128 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:24.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:23 smithi137 bash[25001]: cluster 2024-09-20T19:06:22.445003+0000 mgr.a (mgr.14152) 128 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:24.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:23 smithi137 bash[25001]: cluster 2024-09-20T19:06:22.445003+0000 mgr.a (mgr.14152) 128 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:24.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:23 smithi018 bash[22763]: cluster 2024-09-20T19:06:22.445003+0000 mgr.a (mgr.14152) 128 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:24.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:24 smithi018 bash[22763]: cluster 2024-09-20T19:06:22.445003+0000 mgr.a (mgr.14152) 128 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:26.074 INFO:teuthology.orchestra.run.smithi018.stdout:Created osd(s) 0 on host 'smithi018' 2024-09-20T19:06:26.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:25 smithi082 bash[24745]: cluster 2024-09-20T19:06:24.445455+0000 mgr.a (mgr.14152) 129 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:26.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:25 smithi082 bash[24745]: cluster 2024-09-20T19:06:24.445455+0000 mgr.a (mgr.14152) 129 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:26.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:25 smithi137 bash[25001]: cluster 2024-09-20T19:06:24.445455+0000 mgr.a (mgr.14152) 129 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:26.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:25 smithi137 bash[25001]: cluster 2024-09-20T19:06:24.445455+0000 mgr.a (mgr.14152) 129 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:26.310 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:25 smithi018 bash[22763]: cluster 2024-09-20T19:06:24.445455+0000 mgr.a (mgr.14152) 129 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:26.310 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:25 smithi018 bash[22763]: cluster 2024-09-20T19:06:24.445455+0000 mgr.a (mgr.14152) 129 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:26.704 DEBUG:teuthology.orchestra.run.smithi018:osd.0> sudo journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@osd.0.service 2024-09-20T19:06:26.707 INFO:tasks.cephadm:Deploying osd.1 on smithi018 with /dev/vg_nvme/lv_3... 2024-09-20T19:06:26.707 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- lvm zap /dev/vg_nvme/lv_3 2024-09-20T19:06:27.048 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:26 smithi018 bash[22763]: audit 2024-09-20T19:06:26.053827+0000 mon.a (mon.0) 329 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:06:27.048 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:26 smithi018 bash[22763]: audit 2024-09-20T19:06:26.053827+0000 mon.a (mon.0) 329 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:06:27.048 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:26 smithi018 bash[22763]: audit 2024-09-20T19:06:26.060443+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:27.048 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:26 smithi018 bash[22763]: audit 2024-09-20T19:06:26.060443+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:27.048 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:26 smithi018 bash[22763]: audit 2024-09-20T19:06:26.067693+0000 mon.a (mon.0) 331 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:27.048 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:26 smithi018 bash[22763]: audit 2024-09-20T19:06:26.067693+0000 mon.a (mon.0) 331 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:27.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:26 smithi082 bash[24745]: audit 2024-09-20T19:06:26.053827+0000 mon.a (mon.0) 329 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:06:27.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:26 smithi082 bash[24745]: audit 2024-09-20T19:06:26.053827+0000 mon.a (mon.0) 329 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:06:27.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:26 smithi082 bash[24745]: audit 2024-09-20T19:06:26.060443+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:27.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:26 smithi082 bash[24745]: audit 2024-09-20T19:06:26.060443+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:27.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:26 smithi082 bash[24745]: audit 2024-09-20T19:06:26.067693+0000 mon.a (mon.0) 331 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:27.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:26 smithi082 bash[24745]: audit 2024-09-20T19:06:26.067693+0000 mon.a (mon.0) 331 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:27.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:26 smithi137 bash[25001]: audit 2024-09-20T19:06:26.053827+0000 mon.a (mon.0) 329 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:06:27.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:26 smithi137 bash[25001]: audit 2024-09-20T19:06:26.053827+0000 mon.a (mon.0) 329 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:06:27.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:26 smithi137 bash[25001]: audit 2024-09-20T19:06:26.060443+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:27.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:26 smithi137 bash[25001]: audit 2024-09-20T19:06:26.060443+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:27.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:26 smithi137 bash[25001]: audit 2024-09-20T19:06:26.067693+0000 mon.a (mon.0) 331 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:27.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:26 smithi137 bash[25001]: audit 2024-09-20T19:06:26.067693+0000 mon.a (mon.0) 331 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:27.423 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 20 19:06:27 smithi018 bash[35146]: debug 2024-09-20T19:06:27.042+0000 7fc7b025d640 -1 osd.0 0 log_to_monitors true 2024-09-20T19:06:28.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:27 smithi082 bash[24745]: cluster 2024-09-20T19:06:26.445701+0000 mgr.a (mgr.14152) 130 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:28.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:27 smithi082 bash[24745]: cluster 2024-09-20T19:06:26.445701+0000 mgr.a (mgr.14152) 130 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:28.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:27 smithi082 bash[24745]: audit 2024-09-20T19:06:27.048552+0000 mon.a (mon.0) 332 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-20T19:06:28.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:27 smithi082 bash[24745]: audit 2024-09-20T19:06:27.048552+0000 mon.a (mon.0) 332 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-20T19:06:28.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:27 smithi137 bash[25001]: cluster 2024-09-20T19:06:26.445701+0000 mgr.a (mgr.14152) 130 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:28.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:27 smithi137 bash[25001]: cluster 2024-09-20T19:06:26.445701+0000 mgr.a (mgr.14152) 130 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:28.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:27 smithi137 bash[25001]: audit 2024-09-20T19:06:27.048552+0000 mon.a (mon.0) 332 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-20T19:06:28.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:27 smithi137 bash[25001]: audit 2024-09-20T19:06:27.048552+0000 mon.a (mon.0) 332 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-20T19:06:28.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:27 smithi018 bash[22763]: cluster 2024-09-20T19:06:26.445701+0000 mgr.a (mgr.14152) 130 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:28.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:27 smithi018 bash[22763]: cluster 2024-09-20T19:06:26.445701+0000 mgr.a (mgr.14152) 130 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:28.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:27 smithi018 bash[22763]: audit 2024-09-20T19:06:27.048552+0000 mon.a (mon.0) 332 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-20T19:06:28.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:27 smithi018 bash[22763]: audit 2024-09-20T19:06:27.048552+0000 mon.a (mon.0) 332 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-20T19:06:29.237 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:28 smithi018 bash[22763]: audit 2024-09-20T19:06:27.949668+0000 mon.a (mon.0) 333 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-20T19:06:29.237 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:28 smithi018 bash[22763]: audit 2024-09-20T19:06:27.949668+0000 mon.a (mon.0) 333 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-20T19:06:29.237 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:28 smithi018 bash[22763]: cluster 2024-09-20T19:06:27.954075+0000 mon.a (mon.0) 334 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-20T19:06:29.237 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:28 smithi018 bash[22763]: cluster 2024-09-20T19:06:27.954075+0000 mon.a (mon.0) 334 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-20T19:06:29.238 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:28 smithi018 bash[22763]: audit 2024-09-20T19:06:27.954493+0000 mon.a (mon.0) 335 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi018", "root=default"]} : dispatch 2024-09-20T19:06:29.238 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:28 smithi018 bash[22763]: audit 2024-09-20T19:06:27.954493+0000 mon.a (mon.0) 335 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi018", "root=default"]} : dispatch 2024-09-20T19:06:29.238 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:28 smithi018 bash[22763]: audit 2024-09-20T19:06:27.955014+0000 mon.a (mon.0) 336 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:29.238 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:28 smithi018 bash[22763]: audit 2024-09-20T19:06:27.955014+0000 mon.a (mon.0) 336 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:29.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:28 smithi137 bash[25001]: audit 2024-09-20T19:06:27.949668+0000 mon.a (mon.0) 333 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-20T19:06:29.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:28 smithi137 bash[25001]: audit 2024-09-20T19:06:27.949668+0000 mon.a (mon.0) 333 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-20T19:06:29.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:28 smithi137 bash[25001]: cluster 2024-09-20T19:06:27.954075+0000 mon.a (mon.0) 334 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-20T19:06:29.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:28 smithi137 bash[25001]: cluster 2024-09-20T19:06:27.954075+0000 mon.a (mon.0) 334 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-20T19:06:29.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:28 smithi137 bash[25001]: audit 2024-09-20T19:06:27.954493+0000 mon.a (mon.0) 335 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi018", "root=default"]} : dispatch 2024-09-20T19:06:29.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:28 smithi137 bash[25001]: audit 2024-09-20T19:06:27.954493+0000 mon.a (mon.0) 335 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi018", "root=default"]} : dispatch 2024-09-20T19:06:29.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:28 smithi137 bash[25001]: audit 2024-09-20T19:06:27.955014+0000 mon.a (mon.0) 336 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:29.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:28 smithi137 bash[25001]: audit 2024-09-20T19:06:27.955014+0000 mon.a (mon.0) 336 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:29.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:28 smithi082 bash[24745]: audit 2024-09-20T19:06:27.949668+0000 mon.a (mon.0) 333 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-20T19:06:29.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:28 smithi082 bash[24745]: audit 2024-09-20T19:06:27.949668+0000 mon.a (mon.0) 333 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-20T19:06:29.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:28 smithi082 bash[24745]: cluster 2024-09-20T19:06:27.954075+0000 mon.a (mon.0) 334 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-20T19:06:29.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:28 smithi082 bash[24745]: cluster 2024-09-20T19:06:27.954075+0000 mon.a (mon.0) 334 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-20T19:06:29.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:28 smithi082 bash[24745]: audit 2024-09-20T19:06:27.954493+0000 mon.a (mon.0) 335 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi018", "root=default"]} : dispatch 2024-09-20T19:06:29.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:28 smithi082 bash[24745]: audit 2024-09-20T19:06:27.954493+0000 mon.a (mon.0) 335 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi018", "root=default"]} : dispatch 2024-09-20T19:06:29.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:28 smithi082 bash[24745]: audit 2024-09-20T19:06:27.955014+0000 mon.a (mon.0) 336 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:29.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:28 smithi082 bash[24745]: audit 2024-09-20T19:06:27.955014+0000 mon.a (mon.0) 336 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:29.672 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 20 19:06:29 smithi018 bash[35146]: debug 2024-09-20T19:06:29.230+0000 7fc7ac1e0640 -1 osd.0 0 waiting for initial osdmap 2024-09-20T19:06:29.673 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 20 19:06:29 smithi018 bash[35146]: debug 2024-09-20T19:06:29.266+0000 7fc7a3fff640 -1 osd.0 7 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-20T19:06:30.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:29 smithi137 bash[25001]: cluster 2024-09-20T19:06:28.446054+0000 mgr.a (mgr.14152) 131 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:30.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:29 smithi137 bash[25001]: cluster 2024-09-20T19:06:28.446054+0000 mgr.a (mgr.14152) 131 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:30.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:29 smithi137 bash[25001]: audit 2024-09-20T19:06:28.951714+0000 mon.a (mon.0) 337 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]': finished 2024-09-20T19:06:30.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:29 smithi137 bash[25001]: audit 2024-09-20T19:06:28.951714+0000 mon.a (mon.0) 337 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]': finished 2024-09-20T19:06:30.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:29 smithi137 bash[25001]: cluster 2024-09-20T19:06:28.956634+0000 mon.a (mon.0) 338 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-20T19:06:30.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:29 smithi137 bash[25001]: cluster 2024-09-20T19:06:28.956634+0000 mon.a (mon.0) 338 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-20T19:06:30.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:29 smithi137 bash[25001]: audit 2024-09-20T19:06:28.958193+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:30.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:29 smithi137 bash[25001]: audit 2024-09-20T19:06:28.958193+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:30.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:29 smithi137 bash[25001]: audit 2024-09-20T19:06:28.968067+0000 mon.a (mon.0) 340 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:30.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:29 smithi137 bash[25001]: audit 2024-09-20T19:06:28.968067+0000 mon.a (mon.0) 340 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:30.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:29 smithi137 bash[25001]: audit 2024-09-20T19:06:29.238685+0000 mon.a (mon.0) 341 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' 2024-09-20T19:06:30.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:29 smithi137 bash[25001]: audit 2024-09-20T19:06:29.238685+0000 mon.a (mon.0) 341 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' 2024-09-20T19:06:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:29 smithi018 bash[22763]: cluster 2024-09-20T19:06:28.446054+0000 mgr.a (mgr.14152) 131 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:29 smithi018 bash[22763]: cluster 2024-09-20T19:06:28.446054+0000 mgr.a (mgr.14152) 131 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:29 smithi018 bash[22763]: audit 2024-09-20T19:06:28.951714+0000 mon.a (mon.0) 337 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]': finished 2024-09-20T19:06:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:29 smithi018 bash[22763]: audit 2024-09-20T19:06:28.951714+0000 mon.a (mon.0) 337 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]': finished 2024-09-20T19:06:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:29 smithi018 bash[22763]: cluster 2024-09-20T19:06:28.956634+0000 mon.a (mon.0) 338 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-20T19:06:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:29 smithi018 bash[22763]: cluster 2024-09-20T19:06:28.956634+0000 mon.a (mon.0) 338 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-20T19:06:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:29 smithi018 bash[22763]: audit 2024-09-20T19:06:28.958193+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:29 smithi018 bash[22763]: audit 2024-09-20T19:06:28.958193+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:29 smithi018 bash[22763]: audit 2024-09-20T19:06:28.968067+0000 mon.a (mon.0) 340 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:29 smithi018 bash[22763]: audit 2024-09-20T19:06:28.968067+0000 mon.a (mon.0) 340 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:30.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:29 smithi018 bash[22763]: audit 2024-09-20T19:06:29.238685+0000 mon.a (mon.0) 341 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' 2024-09-20T19:06:30.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:29 smithi018 bash[22763]: audit 2024-09-20T19:06:29.238685+0000 mon.a (mon.0) 341 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' 2024-09-20T19:06:30.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:29 smithi082 bash[24745]: cluster 2024-09-20T19:06:28.446054+0000 mgr.a (mgr.14152) 131 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:30.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:29 smithi082 bash[24745]: cluster 2024-09-20T19:06:28.446054+0000 mgr.a (mgr.14152) 131 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:30.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:29 smithi082 bash[24745]: audit 2024-09-20T19:06:28.951714+0000 mon.a (mon.0) 337 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]': finished 2024-09-20T19:06:30.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:29 smithi082 bash[24745]: audit 2024-09-20T19:06:28.951714+0000 mon.a (mon.0) 337 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]': finished 2024-09-20T19:06:30.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:29 smithi082 bash[24745]: cluster 2024-09-20T19:06:28.956634+0000 mon.a (mon.0) 338 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-20T19:06:30.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:29 smithi082 bash[24745]: cluster 2024-09-20T19:06:28.956634+0000 mon.a (mon.0) 338 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-20T19:06:30.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:29 smithi082 bash[24745]: audit 2024-09-20T19:06:28.958193+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:30.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:29 smithi082 bash[24745]: audit 2024-09-20T19:06:28.958193+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:30.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:29 smithi082 bash[24745]: audit 2024-09-20T19:06:28.968067+0000 mon.a (mon.0) 340 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:30.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:29 smithi082 bash[24745]: audit 2024-09-20T19:06:28.968067+0000 mon.a (mon.0) 340 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:30.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:29 smithi082 bash[24745]: audit 2024-09-20T19:06:29.238685+0000 mon.a (mon.0) 341 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' 2024-09-20T19:06:30.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:29 smithi082 bash[24745]: audit 2024-09-20T19:06:29.238685+0000 mon.a (mon.0) 341 : audit [INF] from='osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426]' entity='osd.0' 2024-09-20T19:06:31.094 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:06:31.248 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:30 smithi018 bash[22763]: cluster 2024-09-20T19:06:28.005875+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:06:31.249 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:30 smithi018 bash[22763]: cluster 2024-09-20T19:06:28.005875+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:06:31.249 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:30 smithi018 bash[22763]: cluster 2024-09-20T19:06:28.006034+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:06:31.249 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:30 smithi018 bash[22763]: cluster 2024-09-20T19:06:28.006034+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:06:31.249 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:30 smithi018 bash[22763]: audit 2024-09-20T19:06:29.968153+0000 mon.a (mon.0) 342 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:31.249 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:30 smithi018 bash[22763]: audit 2024-09-20T19:06:29.968153+0000 mon.a (mon.0) 342 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:31.250 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:30 smithi018 bash[22763]: cluster 2024-09-20T19:06:30.243840+0000 mon.a (mon.0) 343 : cluster [INF] osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426] boot 2024-09-20T19:06:31.250 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:30 smithi018 bash[22763]: cluster 2024-09-20T19:06:30.243840+0000 mon.a (mon.0) 343 : cluster [INF] osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426] boot 2024-09-20T19:06:31.250 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:30 smithi018 bash[22763]: cluster 2024-09-20T19:06:30.243918+0000 mon.a (mon.0) 344 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-20T19:06:31.250 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:30 smithi018 bash[22763]: cluster 2024-09-20T19:06:30.243918+0000 mon.a (mon.0) 344 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-20T19:06:31.250 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:30 smithi018 bash[22763]: audit 2024-09-20T19:06:30.244669+0000 mon.a (mon.0) 345 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:31.250 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:30 smithi018 bash[22763]: audit 2024-09-20T19:06:30.244669+0000 mon.a (mon.0) 345 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:31.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:30 smithi137 bash[25001]: cluster 2024-09-20T19:06:28.005875+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:06:31.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:30 smithi137 bash[25001]: cluster 2024-09-20T19:06:28.005875+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:06:31.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:30 smithi137 bash[25001]: cluster 2024-09-20T19:06:28.006034+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:06:31.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:30 smithi137 bash[25001]: cluster 2024-09-20T19:06:28.006034+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:06:31.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:30 smithi137 bash[25001]: audit 2024-09-20T19:06:29.968153+0000 mon.a (mon.0) 342 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:31.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:30 smithi137 bash[25001]: audit 2024-09-20T19:06:29.968153+0000 mon.a (mon.0) 342 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:31.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:30 smithi137 bash[25001]: cluster 2024-09-20T19:06:30.243840+0000 mon.a (mon.0) 343 : cluster [INF] osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426] boot 2024-09-20T19:06:31.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:30 smithi137 bash[25001]: cluster 2024-09-20T19:06:30.243840+0000 mon.a (mon.0) 343 : cluster [INF] osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426] boot 2024-09-20T19:06:31.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:30 smithi137 bash[25001]: cluster 2024-09-20T19:06:30.243918+0000 mon.a (mon.0) 344 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-20T19:06:31.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:30 smithi137 bash[25001]: cluster 2024-09-20T19:06:30.243918+0000 mon.a (mon.0) 344 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-20T19:06:31.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:30 smithi137 bash[25001]: audit 2024-09-20T19:06:30.244669+0000 mon.a (mon.0) 345 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:31.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:30 smithi137 bash[25001]: audit 2024-09-20T19:06:30.244669+0000 mon.a (mon.0) 345 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:31.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:30 smithi082 bash[24745]: cluster 2024-09-20T19:06:28.005875+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:06:31.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:30 smithi082 bash[24745]: cluster 2024-09-20T19:06:28.005875+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:06:31.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:30 smithi082 bash[24745]: cluster 2024-09-20T19:06:28.006034+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:06:31.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:30 smithi082 bash[24745]: cluster 2024-09-20T19:06:28.006034+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:06:31.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:30 smithi082 bash[24745]: audit 2024-09-20T19:06:29.968153+0000 mon.a (mon.0) 342 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:31.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:30 smithi082 bash[24745]: audit 2024-09-20T19:06:29.968153+0000 mon.a (mon.0) 342 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:31.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:30 smithi082 bash[24745]: cluster 2024-09-20T19:06:30.243840+0000 mon.a (mon.0) 343 : cluster [INF] osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426] boot 2024-09-20T19:06:31.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:30 smithi082 bash[24745]: cluster 2024-09-20T19:06:30.243840+0000 mon.a (mon.0) 343 : cluster [INF] osd.0 [v2:172.21.15.18:6802/301062426,v1:172.21.15.18:6803/301062426] boot 2024-09-20T19:06:31.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:30 smithi082 bash[24745]: cluster 2024-09-20T19:06:30.243918+0000 mon.a (mon.0) 344 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-20T19:06:31.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:30 smithi082 bash[24745]: cluster 2024-09-20T19:06:30.243918+0000 mon.a (mon.0) 344 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-20T19:06:31.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:30 smithi082 bash[24745]: audit 2024-09-20T19:06:30.244669+0000 mon.a (mon.0) 345 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:31.451 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:30 smithi082 bash[24745]: audit 2024-09-20T19:06:30.244669+0000 mon.a (mon.0) 345 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-20T19:06:32.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:31 smithi137 bash[25001]: cluster 2024-09-20T19:06:30.446439+0000 mgr.a (mgr.14152) 132 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:32.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:31 smithi137 bash[25001]: cluster 2024-09-20T19:06:30.446439+0000 mgr.a (mgr.14152) 132 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:32.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:31 smithi018 bash[22763]: cluster 2024-09-20T19:06:30.446439+0000 mgr.a (mgr.14152) 132 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:32.425 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:31 smithi018 bash[22763]: cluster 2024-09-20T19:06:30.446439+0000 mgr.a (mgr.14152) 132 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:32.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:31 smithi082 bash[24745]: cluster 2024-09-20T19:06:30.446439+0000 mgr.a (mgr.14152) 132 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:32.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:31 smithi082 bash[24745]: cluster 2024-09-20T19:06:30.446439+0000 mgr.a (mgr.14152) 132 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-20T19:06:33.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:32 smithi018 bash[22763]: cluster 2024-09-20T19:06:31.976560+0000 mon.a (mon.0) 346 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-20T19:06:33.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:32 smithi018 bash[22763]: cluster 2024-09-20T19:06:31.976560+0000 mon.a (mon.0) 346 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-20T19:06:33.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:32 smithi137 bash[25001]: cluster 2024-09-20T19:06:31.976560+0000 mon.a (mon.0) 346 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-20T19:06:33.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:32 smithi137 bash[25001]: cluster 2024-09-20T19:06:31.976560+0000 mon.a (mon.0) 346 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-20T19:06:33.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:32 smithi082 bash[24745]: cluster 2024-09-20T19:06:31.976560+0000 mon.a (mon.0) 346 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-20T19:06:33.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:32 smithi082 bash[24745]: cluster 2024-09-20T19:06:31.976560+0000 mon.a (mon.0) 346 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-20T19:06:34.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:33 smithi137 bash[25001]: cluster 2024-09-20T19:06:32.446907+0000 mgr.a (mgr.14152) 133 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:34.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:33 smithi137 bash[25001]: cluster 2024-09-20T19:06:32.446907+0000 mgr.a (mgr.14152) 133 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:34.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:33 smithi018 bash[22763]: cluster 2024-09-20T19:06:32.446907+0000 mgr.a (mgr.14152) 133 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:34.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:33 smithi018 bash[22763]: cluster 2024-09-20T19:06:32.446907+0000 mgr.a (mgr.14152) 133 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:34.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:33 smithi082 bash[24745]: cluster 2024-09-20T19:06:32.446907+0000 mgr.a (mgr.14152) 133 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:34.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:33 smithi082 bash[24745]: cluster 2024-09-20T19:06:32.446907+0000 mgr.a (mgr.14152) 133 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:36.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:35 smithi018 bash[22763]: cluster 2024-09-20T19:06:34.447497+0000 mgr.a (mgr.14152) 134 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:36.252 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:35 smithi018 bash[22763]: cluster 2024-09-20T19:06:34.447497+0000 mgr.a (mgr.14152) 134 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:36.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:35 smithi137 bash[25001]: cluster 2024-09-20T19:06:34.447497+0000 mgr.a (mgr.14152) 134 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:36.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:35 smithi137 bash[25001]: cluster 2024-09-20T19:06:34.447497+0000 mgr.a (mgr.14152) 134 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:36.401 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:06:36.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:35 smithi082 bash[24745]: cluster 2024-09-20T19:06:34.447497+0000 mgr.a (mgr.14152) 134 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:36.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:35 smithi082 bash[24745]: cluster 2024-09-20T19:06:34.447497+0000 mgr.a (mgr.14152) 134 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:36.454 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph orch daemon add osd smithi018:vg_nvme/lv_3 2024-09-20T19:06:38.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:37 smithi137 bash[25001]: cluster 2024-09-20T19:06:36.447925+0000 mgr.a (mgr.14152) 135 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:38.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:37 smithi137 bash[25001]: cluster 2024-09-20T19:06:36.447925+0000 mgr.a (mgr.14152) 135 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:38.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:37 smithi018 bash[22763]: cluster 2024-09-20T19:06:36.447925+0000 mgr.a (mgr.14152) 135 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:38.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:37 smithi018 bash[22763]: cluster 2024-09-20T19:06:36.447925+0000 mgr.a (mgr.14152) 135 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:38.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:37 smithi082 bash[24745]: cluster 2024-09-20T19:06:36.447925+0000 mgr.a (mgr.14152) 135 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:38.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:37 smithi082 bash[24745]: cluster 2024-09-20T19:06:36.447925+0000 mgr.a (mgr.14152) 135 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:40.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:39 smithi137 bash[25001]: cluster 2024-09-20T19:06:38.448310+0000 mgr.a (mgr.14152) 136 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:40.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:39 smithi137 bash[25001]: cluster 2024-09-20T19:06:38.448310+0000 mgr.a (mgr.14152) 136 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:40.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:39 smithi137 bash[25001]: audit 2024-09-20T19:06:39.235543+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:39 smithi137 bash[25001]: audit 2024-09-20T19:06:39.235543+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:39 smithi137 bash[25001]: audit 2024-09-20T19:06:39.243522+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:39 smithi137 bash[25001]: audit 2024-09-20T19:06:39.243522+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:39 smithi137 bash[25001]: audit 2024-09-20T19:06:39.245909+0000 mon.a (mon.0) 349 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-20T19:06:40.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:39 smithi137 bash[25001]: audit 2024-09-20T19:06:39.245909+0000 mon.a (mon.0) 349 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-20T19:06:40.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:39 smithi137 bash[25001]: audit 2024-09-20T19:06:39.253272+0000 mon.a (mon.0) 350 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:39 smithi137 bash[25001]: audit 2024-09-20T19:06:39.253272+0000 mon.a (mon.0) 350 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:39 smithi137 bash[25001]: audit 2024-09-20T19:06:39.257556+0000 mon.a (mon.0) 351 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:40.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:39 smithi137 bash[25001]: audit 2024-09-20T19:06:39.257556+0000 mon.a (mon.0) 351 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:40.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:39 smithi137 bash[25001]: audit 2024-09-20T19:06:39.259232+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:06:40.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:39 smithi137 bash[25001]: audit 2024-09-20T19:06:39.259232+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:06:40.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:39 smithi137 bash[25001]: audit 2024-09-20T19:06:39.268724+0000 mon.a (mon.0) 353 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.303 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:39 smithi137 bash[25001]: audit 2024-09-20T19:06:39.268724+0000 mon.a (mon.0) 353 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:39 smithi018 bash[22763]: cluster 2024-09-20T19:06:38.448310+0000 mgr.a (mgr.14152) 136 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:40.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:39 smithi018 bash[22763]: cluster 2024-09-20T19:06:38.448310+0000 mgr.a (mgr.14152) 136 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:40.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:39 smithi018 bash[22763]: audit 2024-09-20T19:06:39.235543+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:39 smithi018 bash[22763]: audit 2024-09-20T19:06:39.235543+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:39 smithi018 bash[22763]: audit 2024-09-20T19:06:39.243522+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:39 smithi018 bash[22763]: audit 2024-09-20T19:06:39.243522+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:39 smithi018 bash[22763]: audit 2024-09-20T19:06:39.245909+0000 mon.a (mon.0) 349 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-20T19:06:40.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:39 smithi018 bash[22763]: audit 2024-09-20T19:06:39.245909+0000 mon.a (mon.0) 349 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-20T19:06:40.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:39 smithi018 bash[22763]: audit 2024-09-20T19:06:39.253272+0000 mon.a (mon.0) 350 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:39 smithi018 bash[22763]: audit 2024-09-20T19:06:39.253272+0000 mon.a (mon.0) 350 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:39 smithi018 bash[22763]: audit 2024-09-20T19:06:39.257556+0000 mon.a (mon.0) 351 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:40.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:39 smithi018 bash[22763]: audit 2024-09-20T19:06:39.257556+0000 mon.a (mon.0) 351 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:40.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:39 smithi018 bash[22763]: audit 2024-09-20T19:06:39.259232+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:06:40.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:39 smithi018 bash[22763]: audit 2024-09-20T19:06:39.259232+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:06:40.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:39 smithi018 bash[22763]: audit 2024-09-20T19:06:39.268724+0000 mon.a (mon.0) 353 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.424 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:39 smithi018 bash[22763]: audit 2024-09-20T19:06:39.268724+0000 mon.a (mon.0) 353 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:39 smithi082 bash[24745]: cluster 2024-09-20T19:06:38.448310+0000 mgr.a (mgr.14152) 136 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:40.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:39 smithi082 bash[24745]: cluster 2024-09-20T19:06:38.448310+0000 mgr.a (mgr.14152) 136 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:40.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:39 smithi082 bash[24745]: audit 2024-09-20T19:06:39.235543+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:39 smithi082 bash[24745]: audit 2024-09-20T19:06:39.235543+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:39 smithi082 bash[24745]: audit 2024-09-20T19:06:39.243522+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:39 smithi082 bash[24745]: audit 2024-09-20T19:06:39.243522+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:39 smithi082 bash[24745]: audit 2024-09-20T19:06:39.245909+0000 mon.a (mon.0) 349 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-20T19:06:40.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:39 smithi082 bash[24745]: audit 2024-09-20T19:06:39.245909+0000 mon.a (mon.0) 349 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-20T19:06:40.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:39 smithi082 bash[24745]: audit 2024-09-20T19:06:39.253272+0000 mon.a (mon.0) 350 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:39 smithi082 bash[24745]: audit 2024-09-20T19:06:39.253272+0000 mon.a (mon.0) 350 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:39 smithi082 bash[24745]: audit 2024-09-20T19:06:39.257556+0000 mon.a (mon.0) 351 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:40.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:39 smithi082 bash[24745]: audit 2024-09-20T19:06:39.257556+0000 mon.a (mon.0) 351 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:40.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:39 smithi082 bash[24745]: audit 2024-09-20T19:06:39.259232+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:06:40.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:39 smithi082 bash[24745]: audit 2024-09-20T19:06:39.259232+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:06:40.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:39 smithi082 bash[24745]: audit 2024-09-20T19:06:39.268724+0000 mon.a (mon.0) 353 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:40.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:39 smithi082 bash[24745]: audit 2024-09-20T19:06:39.268724+0000 mon.a (mon.0) 353 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:06:41.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:41 smithi137 bash[25001]: cephadm 2024-09-20T19:06:39.226723+0000 mgr.a (mgr.14152) 137 : cephadm [INF] Detected new or changed devices on smithi018 2024-09-20T19:06:41.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:41 smithi137 bash[25001]: cephadm 2024-09-20T19:06:39.226723+0000 mgr.a (mgr.14152) 137 : cephadm [INF] Detected new or changed devices on smithi018 2024-09-20T19:06:41.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:41 smithi137 bash[25001]: cephadm 2024-09-20T19:06:39.247123+0000 mgr.a (mgr.14152) 138 : cephadm [INF] Adjusting osd_memory_target on smithi018 to 17269M 2024-09-20T19:06:41.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:41 smithi137 bash[25001]: cephadm 2024-09-20T19:06:39.247123+0000 mgr.a (mgr.14152) 138 : cephadm [INF] Adjusting osd_memory_target on smithi018 to 17269M 2024-09-20T19:06:41.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:41 smithi018 bash[22763]: cephadm 2024-09-20T19:06:39.226723+0000 mgr.a (mgr.14152) 137 : cephadm [INF] Detected new or changed devices on smithi018 2024-09-20T19:06:41.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:41 smithi018 bash[22763]: cephadm 2024-09-20T19:06:39.226723+0000 mgr.a (mgr.14152) 137 : cephadm [INF] Detected new or changed devices on smithi018 2024-09-20T19:06:41.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:41 smithi018 bash[22763]: cephadm 2024-09-20T19:06:39.247123+0000 mgr.a (mgr.14152) 138 : cephadm [INF] Adjusting osd_memory_target on smithi018 to 17269M 2024-09-20T19:06:41.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:41 smithi018 bash[22763]: cephadm 2024-09-20T19:06:39.247123+0000 mgr.a (mgr.14152) 138 : cephadm [INF] Adjusting osd_memory_target on smithi018 to 17269M 2024-09-20T19:06:41.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:41 smithi082 bash[24745]: cephadm 2024-09-20T19:06:39.226723+0000 mgr.a (mgr.14152) 137 : cephadm [INF] Detected new or changed devices on smithi018 2024-09-20T19:06:41.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:41 smithi082 bash[24745]: cephadm 2024-09-20T19:06:39.226723+0000 mgr.a (mgr.14152) 137 : cephadm [INF] Detected new or changed devices on smithi018 2024-09-20T19:06:41.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:41 smithi082 bash[24745]: cephadm 2024-09-20T19:06:39.247123+0000 mgr.a (mgr.14152) 138 : cephadm [INF] Adjusting osd_memory_target on smithi018 to 17269M 2024-09-20T19:06:41.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:41 smithi082 bash[24745]: cephadm 2024-09-20T19:06:39.247123+0000 mgr.a (mgr.14152) 138 : cephadm [INF] Adjusting osd_memory_target on smithi018 to 17269M 2024-09-20T19:06:41.686 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:06:42.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:42 smithi018 bash[22763]: cluster 2024-09-20T19:06:40.448777+0000 mgr.a (mgr.14152) 139 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:42.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:42 smithi018 bash[22763]: cluster 2024-09-20T19:06:40.448777+0000 mgr.a (mgr.14152) 139 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:42.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:42 smithi137 bash[25001]: cluster 2024-09-20T19:06:40.448777+0000 mgr.a (mgr.14152) 139 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:42.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:42 smithi137 bash[25001]: cluster 2024-09-20T19:06:40.448777+0000 mgr.a (mgr.14152) 139 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:42.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:42 smithi082 bash[24745]: cluster 2024-09-20T19:06:40.448777+0000 mgr.a (mgr.14152) 139 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:42.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:42 smithi082 bash[24745]: cluster 2024-09-20T19:06:40.448777+0000 mgr.a (mgr.14152) 139 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:44.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:44 smithi137 bash[25001]: cluster 2024-09-20T19:06:42.449252+0000 mgr.a (mgr.14152) 140 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:44.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:44 smithi137 bash[25001]: cluster 2024-09-20T19:06:42.449252+0000 mgr.a (mgr.14152) 140 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:44.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:44 smithi137 bash[25001]: audit 2024-09-20T19:06:43.161982+0000 mgr.a (mgr.14152) 141 : audit [DBG] from='client.14235 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi018:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:06:44.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:44 smithi137 bash[25001]: audit 2024-09-20T19:06:43.161982+0000 mgr.a (mgr.14152) 141 : audit [DBG] from='client.14235 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi018:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:06:44.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:44 smithi137 bash[25001]: audit 2024-09-20T19:06:43.168646+0000 mon.a (mon.0) 354 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:06:44.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:44 smithi137 bash[25001]: audit 2024-09-20T19:06:43.168646+0000 mon.a (mon.0) 354 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:06:44.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:44 smithi137 bash[25001]: audit 2024-09-20T19:06:43.174253+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:06:44.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:44 smithi137 bash[25001]: audit 2024-09-20T19:06:43.174253+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:06:44.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:44 smithi137 bash[25001]: audit 2024-09-20T19:06:43.175749+0000 mon.a (mon.0) 356 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:44.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:44 smithi137 bash[25001]: audit 2024-09-20T19:06:43.175749+0000 mon.a (mon.0) 356 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:44.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:44 smithi018 bash[22763]: cluster 2024-09-20T19:06:42.449252+0000 mgr.a (mgr.14152) 140 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:44.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:44 smithi018 bash[22763]: cluster 2024-09-20T19:06:42.449252+0000 mgr.a (mgr.14152) 140 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:44.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:44 smithi018 bash[22763]: audit 2024-09-20T19:06:43.161982+0000 mgr.a (mgr.14152) 141 : audit [DBG] from='client.14235 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi018:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:06:44.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:44 smithi018 bash[22763]: audit 2024-09-20T19:06:43.161982+0000 mgr.a (mgr.14152) 141 : audit [DBG] from='client.14235 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi018:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:06:44.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:44 smithi018 bash[22763]: audit 2024-09-20T19:06:43.168646+0000 mon.a (mon.0) 354 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:06:44.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:44 smithi018 bash[22763]: audit 2024-09-20T19:06:43.168646+0000 mon.a (mon.0) 354 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:06:44.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:44 smithi018 bash[22763]: audit 2024-09-20T19:06:43.174253+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:06:44.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:44 smithi018 bash[22763]: audit 2024-09-20T19:06:43.174253+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:06:44.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:44 smithi018 bash[22763]: audit 2024-09-20T19:06:43.175749+0000 mon.a (mon.0) 356 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:44.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:44 smithi018 bash[22763]: audit 2024-09-20T19:06:43.175749+0000 mon.a (mon.0) 356 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:44.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:44 smithi082 bash[24745]: cluster 2024-09-20T19:06:42.449252+0000 mgr.a (mgr.14152) 140 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:44.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:44 smithi082 bash[24745]: cluster 2024-09-20T19:06:42.449252+0000 mgr.a (mgr.14152) 140 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:44.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:44 smithi082 bash[24745]: audit 2024-09-20T19:06:43.161982+0000 mgr.a (mgr.14152) 141 : audit [DBG] from='client.14235 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi018:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:06:44.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:44 smithi082 bash[24745]: audit 2024-09-20T19:06:43.161982+0000 mgr.a (mgr.14152) 141 : audit [DBG] from='client.14235 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi018:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:06:44.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:44 smithi082 bash[24745]: audit 2024-09-20T19:06:43.168646+0000 mon.a (mon.0) 354 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:06:44.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:44 smithi082 bash[24745]: audit 2024-09-20T19:06:43.168646+0000 mon.a (mon.0) 354 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:06:44.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:44 smithi082 bash[24745]: audit 2024-09-20T19:06:43.174253+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:06:44.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:44 smithi082 bash[24745]: audit 2024-09-20T19:06:43.174253+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:06:44.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:44 smithi082 bash[24745]: audit 2024-09-20T19:06:43.175749+0000 mon.a (mon.0) 356 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:44.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:44 smithi082 bash[24745]: audit 2024-09-20T19:06:43.175749+0000 mon.a (mon.0) 356 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:06:46.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:46 smithi137 bash[25001]: cluster 2024-09-20T19:06:44.449712+0000 mgr.a (mgr.14152) 142 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:46.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:46 smithi137 bash[25001]: cluster 2024-09-20T19:06:44.449712+0000 mgr.a (mgr.14152) 142 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:46.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:46 smithi018 bash[22763]: cluster 2024-09-20T19:06:44.449712+0000 mgr.a (mgr.14152) 142 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:46.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:46 smithi018 bash[22763]: cluster 2024-09-20T19:06:44.449712+0000 mgr.a (mgr.14152) 142 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:46.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:46 smithi082 bash[24745]: cluster 2024-09-20T19:06:44.449712+0000 mgr.a (mgr.14152) 142 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:46.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:46 smithi082 bash[24745]: cluster 2024-09-20T19:06:44.449712+0000 mgr.a (mgr.14152) 142 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:48.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:48 smithi137 bash[25001]: cluster 2024-09-20T19:06:46.450142+0000 mgr.a (mgr.14152) 143 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:48.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:48 smithi137 bash[25001]: cluster 2024-09-20T19:06:46.450142+0000 mgr.a (mgr.14152) 143 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:48.313 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:48 smithi018 bash[22763]: cluster 2024-09-20T19:06:46.450142+0000 mgr.a (mgr.14152) 143 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:48.313 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:48 smithi018 bash[22763]: cluster 2024-09-20T19:06:46.450142+0000 mgr.a (mgr.14152) 143 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:48.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:48 smithi082 bash[24745]: cluster 2024-09-20T19:06:46.450142+0000 mgr.a (mgr.14152) 143 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:48.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:48 smithi082 bash[24745]: cluster 2024-09-20T19:06:46.450142+0000 mgr.a (mgr.14152) 143 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:50.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:50 smithi137 bash[25001]: cluster 2024-09-20T19:06:48.450596+0000 mgr.a (mgr.14152) 144 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:50.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:50 smithi137 bash[25001]: cluster 2024-09-20T19:06:48.450596+0000 mgr.a (mgr.14152) 144 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:50.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:50 smithi018 bash[22763]: cluster 2024-09-20T19:06:48.450596+0000 mgr.a (mgr.14152) 144 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:50.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:50 smithi018 bash[22763]: cluster 2024-09-20T19:06:48.450596+0000 mgr.a (mgr.14152) 144 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:50.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:50 smithi082 bash[24745]: cluster 2024-09-20T19:06:48.450596+0000 mgr.a (mgr.14152) 144 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:50.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:50 smithi082 bash[24745]: cluster 2024-09-20T19:06:48.450596+0000 mgr.a (mgr.14152) 144 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:52.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:52 smithi137 bash[25001]: cluster 2024-09-20T19:06:50.451033+0000 mgr.a (mgr.14152) 145 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:52.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:52 smithi137 bash[25001]: cluster 2024-09-20T19:06:50.451033+0000 mgr.a (mgr.14152) 145 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:52.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:52 smithi137 bash[25001]: audit 2024-09-20T19:06:51.874898+0000 mon.a (mon.0) 357 : audit [INF] from='client.? 172.21.15.18:0/2447650275' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e2e4614c-3858-4039-8ebc-3cc14de8622b"} : dispatch 2024-09-20T19:06:52.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:52 smithi137 bash[25001]: audit 2024-09-20T19:06:51.874898+0000 mon.a (mon.0) 357 : audit [INF] from='client.? 172.21.15.18:0/2447650275' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e2e4614c-3858-4039-8ebc-3cc14de8622b"} : dispatch 2024-09-20T19:06:52.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:52 smithi137 bash[25001]: audit 2024-09-20T19:06:51.877930+0000 mon.a (mon.0) 358 : audit [INF] from='client.? 172.21.15.18:0/2447650275' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e2e4614c-3858-4039-8ebc-3cc14de8622b"}]': finished 2024-09-20T19:06:52.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:52 smithi137 bash[25001]: audit 2024-09-20T19:06:51.877930+0000 mon.a (mon.0) 358 : audit [INF] from='client.? 172.21.15.18:0/2447650275' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e2e4614c-3858-4039-8ebc-3cc14de8622b"}]': finished 2024-09-20T19:06:52.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:52 smithi137 bash[25001]: cluster 2024-09-20T19:06:51.880570+0000 mon.a (mon.0) 359 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-20T19:06:52.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:52 smithi137 bash[25001]: cluster 2024-09-20T19:06:51.880570+0000 mon.a (mon.0) 359 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-20T19:06:52.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:52 smithi137 bash[25001]: audit 2024-09-20T19:06:51.880901+0000 mon.a (mon.0) 360 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:06:52.302 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:52 smithi137 bash[25001]: audit 2024-09-20T19:06:51.880901+0000 mon.a (mon.0) 360 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:06:52.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:52 smithi018 bash[22763]: cluster 2024-09-20T19:06:50.451033+0000 mgr.a (mgr.14152) 145 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:52.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:52 smithi018 bash[22763]: cluster 2024-09-20T19:06:50.451033+0000 mgr.a (mgr.14152) 145 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:52.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:52 smithi018 bash[22763]: audit 2024-09-20T19:06:51.874898+0000 mon.a (mon.0) 357 : audit [INF] from='client.? 172.21.15.18:0/2447650275' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e2e4614c-3858-4039-8ebc-3cc14de8622b"} : dispatch 2024-09-20T19:06:52.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:52 smithi018 bash[22763]: audit 2024-09-20T19:06:51.874898+0000 mon.a (mon.0) 357 : audit [INF] from='client.? 172.21.15.18:0/2447650275' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e2e4614c-3858-4039-8ebc-3cc14de8622b"} : dispatch 2024-09-20T19:06:52.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:52 smithi018 bash[22763]: audit 2024-09-20T19:06:51.877930+0000 mon.a (mon.0) 358 : audit [INF] from='client.? 172.21.15.18:0/2447650275' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e2e4614c-3858-4039-8ebc-3cc14de8622b"}]': finished 2024-09-20T19:06:52.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:52 smithi018 bash[22763]: audit 2024-09-20T19:06:51.877930+0000 mon.a (mon.0) 358 : audit [INF] from='client.? 172.21.15.18:0/2447650275' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e2e4614c-3858-4039-8ebc-3cc14de8622b"}]': finished 2024-09-20T19:06:52.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:52 smithi018 bash[22763]: cluster 2024-09-20T19:06:51.880570+0000 mon.a (mon.0) 359 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-20T19:06:52.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:52 smithi018 bash[22763]: cluster 2024-09-20T19:06:51.880570+0000 mon.a (mon.0) 359 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-20T19:06:52.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:52 smithi018 bash[22763]: audit 2024-09-20T19:06:51.880901+0000 mon.a (mon.0) 360 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:06:52.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:52 smithi018 bash[22763]: audit 2024-09-20T19:06:51.880901+0000 mon.a (mon.0) 360 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:06:52.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:52 smithi082 bash[24745]: cluster 2024-09-20T19:06:50.451033+0000 mgr.a (mgr.14152) 145 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:52.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:52 smithi082 bash[24745]: cluster 2024-09-20T19:06:50.451033+0000 mgr.a (mgr.14152) 145 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:52.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:52 smithi082 bash[24745]: audit 2024-09-20T19:06:51.874898+0000 mon.a (mon.0) 357 : audit [INF] from='client.? 172.21.15.18:0/2447650275' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e2e4614c-3858-4039-8ebc-3cc14de8622b"} : dispatch 2024-09-20T19:06:52.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:52 smithi082 bash[24745]: audit 2024-09-20T19:06:51.874898+0000 mon.a (mon.0) 357 : audit [INF] from='client.? 172.21.15.18:0/2447650275' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e2e4614c-3858-4039-8ebc-3cc14de8622b"} : dispatch 2024-09-20T19:06:52.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:52 smithi082 bash[24745]: audit 2024-09-20T19:06:51.877930+0000 mon.a (mon.0) 358 : audit [INF] from='client.? 172.21.15.18:0/2447650275' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e2e4614c-3858-4039-8ebc-3cc14de8622b"}]': finished 2024-09-20T19:06:52.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:52 smithi082 bash[24745]: audit 2024-09-20T19:06:51.877930+0000 mon.a (mon.0) 358 : audit [INF] from='client.? 172.21.15.18:0/2447650275' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e2e4614c-3858-4039-8ebc-3cc14de8622b"}]': finished 2024-09-20T19:06:52.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:52 smithi082 bash[24745]: cluster 2024-09-20T19:06:51.880570+0000 mon.a (mon.0) 359 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-20T19:06:52.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:52 smithi082 bash[24745]: cluster 2024-09-20T19:06:51.880570+0000 mon.a (mon.0) 359 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-20T19:06:52.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:52 smithi082 bash[24745]: audit 2024-09-20T19:06:51.880901+0000 mon.a (mon.0) 360 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:06:52.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:52 smithi082 bash[24745]: audit 2024-09-20T19:06:51.880901+0000 mon.a (mon.0) 360 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:06:53.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:53 smithi137 bash[25001]: audit 2024-09-20T19:06:52.555804+0000 mon.a (mon.0) 361 : audit [DBG] from='client.? 172.21.15.18:0/4003713038' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:06:53.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:53 smithi137 bash[25001]: audit 2024-09-20T19:06:52.555804+0000 mon.a (mon.0) 361 : audit [DBG] from='client.? 172.21.15.18:0/4003713038' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:06:53.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:53 smithi018 bash[22763]: audit 2024-09-20T19:06:52.555804+0000 mon.a (mon.0) 361 : audit [DBG] from='client.? 172.21.15.18:0/4003713038' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:06:53.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:53 smithi018 bash[22763]: audit 2024-09-20T19:06:52.555804+0000 mon.a (mon.0) 361 : audit [DBG] from='client.? 172.21.15.18:0/4003713038' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:06:53.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:53 smithi082 bash[24745]: audit 2024-09-20T19:06:52.555804+0000 mon.a (mon.0) 361 : audit [DBG] from='client.? 172.21.15.18:0/4003713038' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:06:53.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:53 smithi082 bash[24745]: audit 2024-09-20T19:06:52.555804+0000 mon.a (mon.0) 361 : audit [DBG] from='client.? 172.21.15.18:0/4003713038' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:06:54.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:54 smithi137 bash[25001]: cluster 2024-09-20T19:06:52.451358+0000 mgr.a (mgr.14152) 146 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:54.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:54 smithi137 bash[25001]: cluster 2024-09-20T19:06:52.451358+0000 mgr.a (mgr.14152) 146 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:54.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:54 smithi018 bash[22763]: cluster 2024-09-20T19:06:52.451358+0000 mgr.a (mgr.14152) 146 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:54.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:54 smithi018 bash[22763]: cluster 2024-09-20T19:06:52.451358+0000 mgr.a (mgr.14152) 146 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:54.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:54 smithi082 bash[24745]: cluster 2024-09-20T19:06:52.451358+0000 mgr.a (mgr.14152) 146 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:54.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:54 smithi082 bash[24745]: cluster 2024-09-20T19:06:52.451358+0000 mgr.a (mgr.14152) 146 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:56.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:56 smithi137 bash[25001]: cluster 2024-09-20T19:06:54.451780+0000 mgr.a (mgr.14152) 147 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:56.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:56 smithi137 bash[25001]: cluster 2024-09-20T19:06:54.451780+0000 mgr.a (mgr.14152) 147 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:56.371 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:56 smithi018 bash[22763]: cluster 2024-09-20T19:06:54.451780+0000 mgr.a (mgr.14152) 147 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:56.371 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:56 smithi018 bash[22763]: cluster 2024-09-20T19:06:54.451780+0000 mgr.a (mgr.14152) 147 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:56.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:56 smithi082 bash[24745]: cluster 2024-09-20T19:06:54.451780+0000 mgr.a (mgr.14152) 147 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:56.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:56 smithi082 bash[24745]: cluster 2024-09-20T19:06:54.451780+0000 mgr.a (mgr.14152) 147 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:58.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:58 smithi137 bash[25001]: cluster 2024-09-20T19:06:56.452243+0000 mgr.a (mgr.14152) 148 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:58.301 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:06:58 smithi137 bash[25001]: cluster 2024-09-20T19:06:56.452243+0000 mgr.a (mgr.14152) 148 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:58.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:58 smithi018 bash[22763]: cluster 2024-09-20T19:06:56.452243+0000 mgr.a (mgr.14152) 148 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:58.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:06:58 smithi018 bash[22763]: cluster 2024-09-20T19:06:56.452243+0000 mgr.a (mgr.14152) 148 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:58.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:58 smithi082 bash[24745]: cluster 2024-09-20T19:06:56.452243+0000 mgr.a (mgr.14152) 148 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:06:58.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:06:58 smithi082 bash[24745]: cluster 2024-09-20T19:06:56.452243+0000 mgr.a (mgr.14152) 148 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:00.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:00 smithi137 bash[25001]: cluster 2024-09-20T19:06:58.452707+0000 mgr.a (mgr.14152) 149 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:00.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:00 smithi137 bash[25001]: cluster 2024-09-20T19:06:58.452707+0000 mgr.a (mgr.14152) 149 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:00.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:00 smithi018 bash[22763]: cluster 2024-09-20T19:06:58.452707+0000 mgr.a (mgr.14152) 149 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:00.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:00 smithi018 bash[22763]: cluster 2024-09-20T19:06:58.452707+0000 mgr.a (mgr.14152) 149 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:00.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:00 smithi082 bash[24745]: cluster 2024-09-20T19:06:58.452707+0000 mgr.a (mgr.14152) 149 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:00.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:00 smithi082 bash[24745]: cluster 2024-09-20T19:06:58.452707+0000 mgr.a (mgr.14152) 149 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:02.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:02 smithi137 bash[25001]: cluster 2024-09-20T19:07:00.453105+0000 mgr.a (mgr.14152) 150 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:02.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:02 smithi137 bash[25001]: cluster 2024-09-20T19:07:00.453105+0000 mgr.a (mgr.14152) 150 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:02.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:02 smithi018 bash[22763]: cluster 2024-09-20T19:07:00.453105+0000 mgr.a (mgr.14152) 150 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:02.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:02 smithi018 bash[22763]: cluster 2024-09-20T19:07:00.453105+0000 mgr.a (mgr.14152) 150 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:02.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:02 smithi082 bash[24745]: cluster 2024-09-20T19:07:00.453105+0000 mgr.a (mgr.14152) 150 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:02.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:02 smithi082 bash[24745]: cluster 2024-09-20T19:07:00.453105+0000 mgr.a (mgr.14152) 150 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:04.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:04 smithi018 bash[22763]: cluster 2024-09-20T19:07:02.453574+0000 mgr.a (mgr.14152) 151 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:04.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:04 smithi018 bash[22763]: cluster 2024-09-20T19:07:02.453574+0000 mgr.a (mgr.14152) 151 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:04.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:04 smithi082 bash[24745]: cluster 2024-09-20T19:07:02.453574+0000 mgr.a (mgr.14152) 151 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:04.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:04 smithi082 bash[24745]: cluster 2024-09-20T19:07:02.453574+0000 mgr.a (mgr.14152) 151 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:04.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:04 smithi137 bash[25001]: cluster 2024-09-20T19:07:02.453574+0000 mgr.a (mgr.14152) 151 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:04.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:04 smithi137 bash[25001]: cluster 2024-09-20T19:07:02.453574+0000 mgr.a (mgr.14152) 151 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:06.387 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:06 smithi018 bash[22763]: cluster 2024-09-20T19:07:04.454023+0000 mgr.a (mgr.14152) 152 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:06.387 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:06 smithi018 bash[22763]: cluster 2024-09-20T19:07:04.454023+0000 mgr.a (mgr.14152) 152 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:06.387 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:06 smithi018 bash[22763]: audit 2024-09-20T19:07:05.761260+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-20T19:07:06.387 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:06 smithi018 bash[22763]: audit 2024-09-20T19:07:05.761260+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-20T19:07:06.387 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:06 smithi018 bash[22763]: audit 2024-09-20T19:07:05.763135+0000 mon.a (mon.0) 363 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:06.387 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:06 smithi018 bash[22763]: audit 2024-09-20T19:07:05.763135+0000 mon.a (mon.0) 363 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:06.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:06 smithi082 bash[24745]: cluster 2024-09-20T19:07:04.454023+0000 mgr.a (mgr.14152) 152 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:06.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:06 smithi082 bash[24745]: cluster 2024-09-20T19:07:04.454023+0000 mgr.a (mgr.14152) 152 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:06.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:06 smithi082 bash[24745]: audit 2024-09-20T19:07:05.761260+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-20T19:07:06.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:06 smithi082 bash[24745]: audit 2024-09-20T19:07:05.761260+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-20T19:07:06.451 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:06 smithi082 bash[24745]: audit 2024-09-20T19:07:05.763135+0000 mon.a (mon.0) 363 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:06.451 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:06 smithi082 bash[24745]: audit 2024-09-20T19:07:05.763135+0000 mon.a (mon.0) 363 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:06.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:06 smithi137 bash[25001]: cluster 2024-09-20T19:07:04.454023+0000 mgr.a (mgr.14152) 152 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:06.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:06 smithi137 bash[25001]: cluster 2024-09-20T19:07:04.454023+0000 mgr.a (mgr.14152) 152 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:06.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:06 smithi137 bash[25001]: audit 2024-09-20T19:07:05.761260+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-20T19:07:06.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:06 smithi137 bash[25001]: audit 2024-09-20T19:07:05.761260+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-20T19:07:06.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:06 smithi137 bash[25001]: audit 2024-09-20T19:07:05.763135+0000 mon.a (mon.0) 363 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:06.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:06 smithi137 bash[25001]: audit 2024-09-20T19:07:05.763135+0000 mon.a (mon.0) 363 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:07.354 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:07 smithi018 bash[22763]: cephadm 2024-09-20T19:07:05.764733+0000 mgr.a (mgr.14152) 153 : cephadm [INF] Deploying daemon osd.1 on smithi018 2024-09-20T19:07:07.354 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:07 smithi018 bash[22763]: cephadm 2024-09-20T19:07:05.764733+0000 mgr.a (mgr.14152) 153 : cephadm [INF] Deploying daemon osd.1 on smithi018 2024-09-20T19:07:07.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:07 smithi082 bash[24745]: cephadm 2024-09-20T19:07:05.764733+0000 mgr.a (mgr.14152) 153 : cephadm [INF] Deploying daemon osd.1 on smithi018 2024-09-20T19:07:07.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:07 smithi082 bash[24745]: cephadm 2024-09-20T19:07:05.764733+0000 mgr.a (mgr.14152) 153 : cephadm [INF] Deploying daemon osd.1 on smithi018 2024-09-20T19:07:07.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:07 smithi137 bash[25001]: cephadm 2024-09-20T19:07:05.764733+0000 mgr.a (mgr.14152) 153 : cephadm [INF] Deploying daemon osd.1 on smithi018 2024-09-20T19:07:07.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:07 smithi137 bash[25001]: cephadm 2024-09-20T19:07:05.764733+0000 mgr.a (mgr.14152) 153 : cephadm [INF] Deploying daemon osd.1 on smithi018 2024-09-20T19:07:08.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:08 smithi018 bash[22763]: cluster 2024-09-20T19:07:06.454467+0000 mgr.a (mgr.14152) 154 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:08.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:08 smithi018 bash[22763]: cluster 2024-09-20T19:07:06.454467+0000 mgr.a (mgr.14152) 154 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:08.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:08 smithi082 bash[24745]: cluster 2024-09-20T19:07:06.454467+0000 mgr.a (mgr.14152) 154 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:08.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:08 smithi082 bash[24745]: cluster 2024-09-20T19:07:06.454467+0000 mgr.a (mgr.14152) 154 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:08.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:08 smithi137 bash[25001]: cluster 2024-09-20T19:07:06.454467+0000 mgr.a (mgr.14152) 154 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:08.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:08 smithi137 bash[25001]: cluster 2024-09-20T19:07:06.454467+0000 mgr.a (mgr.14152) 154 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:10.415 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:10 smithi018 bash[22763]: cluster 2024-09-20T19:07:08.454916+0000 mgr.a (mgr.14152) 155 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:10.415 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:10 smithi018 bash[22763]: cluster 2024-09-20T19:07:08.454916+0000 mgr.a (mgr.14152) 155 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:10.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:10 smithi082 bash[24745]: cluster 2024-09-20T19:07:08.454916+0000 mgr.a (mgr.14152) 155 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:10.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:10 smithi082 bash[24745]: cluster 2024-09-20T19:07:08.454916+0000 mgr.a (mgr.14152) 155 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:10.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:10 smithi137 bash[25001]: cluster 2024-09-20T19:07:08.454916+0000 mgr.a (mgr.14152) 155 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:10.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:10 smithi137 bash[25001]: cluster 2024-09-20T19:07:08.454916+0000 mgr.a (mgr.14152) 155 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:10.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:10 smithi018 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:07:10.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:10 smithi018 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:07:10.672 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:07:10 smithi018 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:07:10.672 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:07:10 smithi018 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:07:10.673 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 20 19:07:10 smithi018 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:07:10.673 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 20 19:07:10 smithi018 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:07:11.081 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:11 smithi018 bash[22763]: audit 2024-09-20T19:07:10.769955+0000 mon.a (mon.0) 364 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:07:11.081 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:11 smithi018 bash[22763]: audit 2024-09-20T19:07:10.769955+0000 mon.a (mon.0) 364 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:07:11.081 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:11 smithi018 bash[22763]: audit 2024-09-20T19:07:10.773986+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:11.081 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:11 smithi018 bash[22763]: audit 2024-09-20T19:07:10.773986+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:11.081 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:11 smithi018 bash[22763]: audit 2024-09-20T19:07:10.778365+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:11.081 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:11 smithi018 bash[22763]: audit 2024-09-20T19:07:10.778365+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:11.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:11 smithi082 bash[24745]: audit 2024-09-20T19:07:10.769955+0000 mon.a (mon.0) 364 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:07:11.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:11 smithi082 bash[24745]: audit 2024-09-20T19:07:10.769955+0000 mon.a (mon.0) 364 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:07:11.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:11 smithi082 bash[24745]: audit 2024-09-20T19:07:10.773986+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:11.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:11 smithi082 bash[24745]: audit 2024-09-20T19:07:10.773986+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:11.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:11 smithi082 bash[24745]: audit 2024-09-20T19:07:10.778365+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:11.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:11 smithi082 bash[24745]: audit 2024-09-20T19:07:10.778365+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:11.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:11 smithi137 bash[25001]: audit 2024-09-20T19:07:10.769955+0000 mon.a (mon.0) 364 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:07:11.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:11 smithi137 bash[25001]: audit 2024-09-20T19:07:10.769955+0000 mon.a (mon.0) 364 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:07:11.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:11 smithi137 bash[25001]: audit 2024-09-20T19:07:10.773986+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:11.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:11 smithi137 bash[25001]: audit 2024-09-20T19:07:10.773986+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:11.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:11 smithi137 bash[25001]: audit 2024-09-20T19:07:10.778365+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:11.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:11 smithi137 bash[25001]: audit 2024-09-20T19:07:10.778365+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:12.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:12 smithi018 bash[22763]: cluster 2024-09-20T19:07:10.455207+0000 mgr.a (mgr.14152) 156 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:12.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:12 smithi018 bash[22763]: cluster 2024-09-20T19:07:10.455207+0000 mgr.a (mgr.14152) 156 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:12.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:12 smithi082 bash[24745]: cluster 2024-09-20T19:07:10.455207+0000 mgr.a (mgr.14152) 156 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:12.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:12 smithi082 bash[24745]: cluster 2024-09-20T19:07:10.455207+0000 mgr.a (mgr.14152) 156 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:12.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:12 smithi137 bash[25001]: cluster 2024-09-20T19:07:10.455207+0000 mgr.a (mgr.14152) 156 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:12.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:12 smithi137 bash[25001]: cluster 2024-09-20T19:07:10.455207+0000 mgr.a (mgr.14152) 156 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:14.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:14 smithi018 bash[22763]: cluster 2024-09-20T19:07:12.455641+0000 mgr.a (mgr.14152) 157 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:14.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:14 smithi018 bash[22763]: cluster 2024-09-20T19:07:12.455641+0000 mgr.a (mgr.14152) 157 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:14.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:14 smithi082 bash[24745]: cluster 2024-09-20T19:07:12.455641+0000 mgr.a (mgr.14152) 157 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:14.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:14 smithi082 bash[24745]: cluster 2024-09-20T19:07:12.455641+0000 mgr.a (mgr.14152) 157 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:14.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:14 smithi137 bash[25001]: cluster 2024-09-20T19:07:12.455641+0000 mgr.a (mgr.14152) 157 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:14.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:14 smithi137 bash[25001]: cluster 2024-09-20T19:07:12.455641+0000 mgr.a (mgr.14152) 157 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:16.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:16 smithi018 bash[22763]: cluster 2024-09-20T19:07:14.456090+0000 mgr.a (mgr.14152) 158 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:16.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:16 smithi018 bash[22763]: cluster 2024-09-20T19:07:14.456090+0000 mgr.a (mgr.14152) 158 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:16.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:16 smithi082 bash[24745]: cluster 2024-09-20T19:07:14.456090+0000 mgr.a (mgr.14152) 158 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:16.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:16 smithi082 bash[24745]: cluster 2024-09-20T19:07:14.456090+0000 mgr.a (mgr.14152) 158 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:16.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:16 smithi137 bash[25001]: cluster 2024-09-20T19:07:14.456090+0000 mgr.a (mgr.14152) 158 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:16.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:16 smithi137 bash[25001]: cluster 2024-09-20T19:07:14.456090+0000 mgr.a (mgr.14152) 158 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:17.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:17 smithi018 bash[22763]: audit 2024-09-20T19:07:16.122446+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:17.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:17 smithi018 bash[22763]: audit 2024-09-20T19:07:16.122446+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:17.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:17 smithi018 bash[22763]: audit 2024-09-20T19:07:16.126665+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:17.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:17 smithi018 bash[22763]: audit 2024-09-20T19:07:16.126665+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:17.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:17 smithi018 bash[22763]: audit 2024-09-20T19:07:16.127829+0000 mon.a (mon.0) 369 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:17.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:17 smithi018 bash[22763]: audit 2024-09-20T19:07:16.127829+0000 mon.a (mon.0) 369 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:17.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:17 smithi018 bash[22763]: audit 2024-09-20T19:07:16.128493+0000 mon.a (mon.0) 370 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:07:17.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:17 smithi018 bash[22763]: audit 2024-09-20T19:07:16.128493+0000 mon.a (mon.0) 370 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:07:17.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:17 smithi018 bash[22763]: audit 2024-09-20T19:07:16.132672+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:17.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:17 smithi018 bash[22763]: audit 2024-09-20T19:07:16.132672+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:17.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:17 smithi082 bash[24745]: audit 2024-09-20T19:07:16.122446+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:17.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:17 smithi082 bash[24745]: audit 2024-09-20T19:07:16.122446+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:17.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:17 smithi082 bash[24745]: audit 2024-09-20T19:07:16.126665+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:17.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:17 smithi082 bash[24745]: audit 2024-09-20T19:07:16.126665+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:17.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:17 smithi082 bash[24745]: audit 2024-09-20T19:07:16.127829+0000 mon.a (mon.0) 369 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:17.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:17 smithi082 bash[24745]: audit 2024-09-20T19:07:16.127829+0000 mon.a (mon.0) 369 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:17.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:17 smithi082 bash[24745]: audit 2024-09-20T19:07:16.128493+0000 mon.a (mon.0) 370 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:07:17.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:17 smithi082 bash[24745]: audit 2024-09-20T19:07:16.128493+0000 mon.a (mon.0) 370 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:07:17.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:17 smithi082 bash[24745]: audit 2024-09-20T19:07:16.132672+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:17.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:17 smithi082 bash[24745]: audit 2024-09-20T19:07:16.132672+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:17.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:17 smithi137 bash[25001]: audit 2024-09-20T19:07:16.122446+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:17.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:17 smithi137 bash[25001]: audit 2024-09-20T19:07:16.122446+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:17.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:17 smithi137 bash[25001]: audit 2024-09-20T19:07:16.126665+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:17.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:17 smithi137 bash[25001]: audit 2024-09-20T19:07:16.126665+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:17.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:17 smithi137 bash[25001]: audit 2024-09-20T19:07:16.127829+0000 mon.a (mon.0) 369 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:17.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:17 smithi137 bash[25001]: audit 2024-09-20T19:07:16.127829+0000 mon.a (mon.0) 369 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:17.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:17 smithi137 bash[25001]: audit 2024-09-20T19:07:16.128493+0000 mon.a (mon.0) 370 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:07:17.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:17 smithi137 bash[25001]: audit 2024-09-20T19:07:16.128493+0000 mon.a (mon.0) 370 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:07:17.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:17 smithi137 bash[25001]: audit 2024-09-20T19:07:16.132672+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:17.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:17 smithi137 bash[25001]: audit 2024-09-20T19:07:16.132672+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:18.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:18 smithi018 bash[22763]: cluster 2024-09-20T19:07:16.456580+0000 mgr.a (mgr.14152) 159 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:18.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:18 smithi018 bash[22763]: cluster 2024-09-20T19:07:16.456580+0000 mgr.a (mgr.14152) 159 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:18.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:18 smithi082 bash[24745]: cluster 2024-09-20T19:07:16.456580+0000 mgr.a (mgr.14152) 159 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:18.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:18 smithi082 bash[24745]: cluster 2024-09-20T19:07:16.456580+0000 mgr.a (mgr.14152) 159 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:18.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:18 smithi137 bash[25001]: cluster 2024-09-20T19:07:16.456580+0000 mgr.a (mgr.14152) 159 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:18.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:18 smithi137 bash[25001]: cluster 2024-09-20T19:07:16.456580+0000 mgr.a (mgr.14152) 159 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:20.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:20 smithi018 bash[22763]: cluster 2024-09-20T19:07:18.457033+0000 mgr.a (mgr.14152) 160 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:20.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:20 smithi018 bash[22763]: cluster 2024-09-20T19:07:18.457033+0000 mgr.a (mgr.14152) 160 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:20.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:20 smithi082 bash[24745]: cluster 2024-09-20T19:07:18.457033+0000 mgr.a (mgr.14152) 160 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:20.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:20 smithi082 bash[24745]: cluster 2024-09-20T19:07:18.457033+0000 mgr.a (mgr.14152) 160 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:20.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:20 smithi137 bash[25001]: cluster 2024-09-20T19:07:18.457033+0000 mgr.a (mgr.14152) 160 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:20.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:20 smithi137 bash[25001]: cluster 2024-09-20T19:07:18.457033+0000 mgr.a (mgr.14152) 160 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:22.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:22 smithi018 bash[22763]: cluster 2024-09-20T19:07:20.457305+0000 mgr.a (mgr.14152) 161 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:22.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:22 smithi018 bash[22763]: cluster 2024-09-20T19:07:20.457305+0000 mgr.a (mgr.14152) 161 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:22.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:22 smithi082 bash[24745]: cluster 2024-09-20T19:07:20.457305+0000 mgr.a (mgr.14152) 161 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:22.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:22 smithi082 bash[24745]: cluster 2024-09-20T19:07:20.457305+0000 mgr.a (mgr.14152) 161 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:22.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:22 smithi137 bash[25001]: cluster 2024-09-20T19:07:20.457305+0000 mgr.a (mgr.14152) 161 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:22.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:22 smithi137 bash[25001]: cluster 2024-09-20T19:07:20.457305+0000 mgr.a (mgr.14152) 161 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:23.825 INFO:teuthology.orchestra.run.smithi018.stdout:Created osd(s) 1 on host 'smithi018' 2024-09-20T19:07:24.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:24 smithi018 bash[22763]: cluster 2024-09-20T19:07:22.457678+0000 mgr.a (mgr.14152) 162 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:24.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:24 smithi018 bash[22763]: cluster 2024-09-20T19:07:22.457678+0000 mgr.a (mgr.14152) 162 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:24.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:24 smithi018 bash[22763]: audit 2024-09-20T19:07:23.804047+0000 mon.a (mon.0) 372 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:07:24.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:24 smithi018 bash[22763]: audit 2024-09-20T19:07:23.804047+0000 mon.a (mon.0) 372 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:07:24.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:24 smithi018 bash[22763]: audit 2024-09-20T19:07:23.810921+0000 mon.a (mon.0) 373 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:24.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:24 smithi018 bash[22763]: audit 2024-09-20T19:07:23.810921+0000 mon.a (mon.0) 373 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:24.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:24 smithi018 bash[22763]: audit 2024-09-20T19:07:23.818635+0000 mon.a (mon.0) 374 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:24.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:24 smithi018 bash[22763]: audit 2024-09-20T19:07:23.818635+0000 mon.a (mon.0) 374 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:24.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:24 smithi082 bash[24745]: cluster 2024-09-20T19:07:22.457678+0000 mgr.a (mgr.14152) 162 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:24.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:24 smithi082 bash[24745]: cluster 2024-09-20T19:07:22.457678+0000 mgr.a (mgr.14152) 162 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:24.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:24 smithi082 bash[24745]: audit 2024-09-20T19:07:23.804047+0000 mon.a (mon.0) 372 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:07:24.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:24 smithi082 bash[24745]: audit 2024-09-20T19:07:23.804047+0000 mon.a (mon.0) 372 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:07:24.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:24 smithi082 bash[24745]: audit 2024-09-20T19:07:23.810921+0000 mon.a (mon.0) 373 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:24.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:24 smithi082 bash[24745]: audit 2024-09-20T19:07:23.810921+0000 mon.a (mon.0) 373 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:24.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:24 smithi082 bash[24745]: audit 2024-09-20T19:07:23.818635+0000 mon.a (mon.0) 374 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:24.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:24 smithi082 bash[24745]: audit 2024-09-20T19:07:23.818635+0000 mon.a (mon.0) 374 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:24.460 DEBUG:teuthology.orchestra.run.smithi018:osd.1> sudo journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@osd.1.service 2024-09-20T19:07:24.462 INFO:tasks.cephadm:Deploying osd.2 on smithi082 with /dev/vg_nvme/lv_4... 2024-09-20T19:07:24.462 DEBUG:teuthology.orchestra.run.smithi082:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- lvm zap /dev/vg_nvme/lv_4 2024-09-20T19:07:24.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:24 smithi137 bash[25001]: cluster 2024-09-20T19:07:22.457678+0000 mgr.a (mgr.14152) 162 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:24.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:24 smithi137 bash[25001]: cluster 2024-09-20T19:07:22.457678+0000 mgr.a (mgr.14152) 162 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:24.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:24 smithi137 bash[25001]: audit 2024-09-20T19:07:23.804047+0000 mon.a (mon.0) 372 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:07:24.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:24 smithi137 bash[25001]: audit 2024-09-20T19:07:23.804047+0000 mon.a (mon.0) 372 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:07:24.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:24 smithi137 bash[25001]: audit 2024-09-20T19:07:23.810921+0000 mon.a (mon.0) 373 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:24.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:24 smithi137 bash[25001]: audit 2024-09-20T19:07:23.810921+0000 mon.a (mon.0) 373 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:24.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:24 smithi137 bash[25001]: audit 2024-09-20T19:07:23.818635+0000 mon.a (mon.0) 374 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:24.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:24 smithi137 bash[25001]: audit 2024-09-20T19:07:23.818635+0000 mon.a (mon.0) 374 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:25.150 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 20 19:07:24 smithi018 bash[40470]: debug 2024-09-20T19:07:24.741+0000 7ff4cd148640 -1 osd.1 0 log_to_monitors true 2024-09-20T19:07:25.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:25 smithi018 bash[22763]: audit 2024-09-20T19:07:24.748685+0000 mon.a (mon.0) 375 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-20T19:07:25.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:25 smithi018 bash[22763]: audit 2024-09-20T19:07:24.748685+0000 mon.a (mon.0) 375 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-20T19:07:25.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:25 smithi082 bash[24745]: audit 2024-09-20T19:07:24.748685+0000 mon.a (mon.0) 375 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-20T19:07:25.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:25 smithi082 bash[24745]: audit 2024-09-20T19:07:24.748685+0000 mon.a (mon.0) 375 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-20T19:07:25.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:25 smithi137 bash[25001]: audit 2024-09-20T19:07:24.748685+0000 mon.a (mon.0) 375 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-20T19:07:25.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:25 smithi137 bash[25001]: audit 2024-09-20T19:07:24.748685+0000 mon.a (mon.0) 375 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-20T19:07:26.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:26 smithi082 bash[24745]: cluster 2024-09-20T19:07:24.458024+0000 mgr.a (mgr.14152) 163 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:26.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:26 smithi082 bash[24745]: cluster 2024-09-20T19:07:24.458024+0000 mgr.a (mgr.14152) 163 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:26.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:26 smithi082 bash[24745]: audit 2024-09-20T19:07:25.156477+0000 mon.a (mon.0) 376 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-20T19:07:26.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:26 smithi082 bash[24745]: audit 2024-09-20T19:07:25.156477+0000 mon.a (mon.0) 376 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-20T19:07:26.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:26 smithi082 bash[24745]: cluster 2024-09-20T19:07:25.159631+0000 mon.a (mon.0) 377 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-20T19:07:26.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:26 smithi082 bash[24745]: cluster 2024-09-20T19:07:25.159631+0000 mon.a (mon.0) 377 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-20T19:07:26.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:26 smithi082 bash[24745]: audit 2024-09-20T19:07:25.160113+0000 mon.a (mon.0) 378 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi018", "root=default"]} : dispatch 2024-09-20T19:07:26.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:26 smithi082 bash[24745]: audit 2024-09-20T19:07:25.160113+0000 mon.a (mon.0) 378 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi018", "root=default"]} : dispatch 2024-09-20T19:07:26.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:26 smithi082 bash[24745]: audit 2024-09-20T19:07:25.160558+0000 mon.a (mon.0) 379 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:26.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:26 smithi082 bash[24745]: audit 2024-09-20T19:07:25.160558+0000 mon.a (mon.0) 379 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:26.520 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:26 smithi018 bash[22763]: cluster 2024-09-20T19:07:24.458024+0000 mgr.a (mgr.14152) 163 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:26.520 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:26 smithi018 bash[22763]: cluster 2024-09-20T19:07:24.458024+0000 mgr.a (mgr.14152) 163 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:26.520 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:26 smithi018 bash[22763]: audit 2024-09-20T19:07:25.156477+0000 mon.a (mon.0) 376 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-20T19:07:26.520 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:26 smithi018 bash[22763]: audit 2024-09-20T19:07:25.156477+0000 mon.a (mon.0) 376 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-20T19:07:26.520 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:26 smithi018 bash[22763]: cluster 2024-09-20T19:07:25.159631+0000 mon.a (mon.0) 377 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-20T19:07:26.520 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:26 smithi018 bash[22763]: cluster 2024-09-20T19:07:25.159631+0000 mon.a (mon.0) 377 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-20T19:07:26.520 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:26 smithi018 bash[22763]: audit 2024-09-20T19:07:25.160113+0000 mon.a (mon.0) 378 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi018", "root=default"]} : dispatch 2024-09-20T19:07:26.520 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:26 smithi018 bash[22763]: audit 2024-09-20T19:07:25.160113+0000 mon.a (mon.0) 378 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi018", "root=default"]} : dispatch 2024-09-20T19:07:26.520 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:26 smithi018 bash[22763]: audit 2024-09-20T19:07:25.160558+0000 mon.a (mon.0) 379 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:26.520 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:26 smithi018 bash[22763]: audit 2024-09-20T19:07:25.160558+0000 mon.a (mon.0) 379 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:26.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:26 smithi137 bash[25001]: cluster 2024-09-20T19:07:24.458024+0000 mgr.a (mgr.14152) 163 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:26.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:26 smithi137 bash[25001]: cluster 2024-09-20T19:07:24.458024+0000 mgr.a (mgr.14152) 163 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:26.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:26 smithi137 bash[25001]: audit 2024-09-20T19:07:25.156477+0000 mon.a (mon.0) 376 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-20T19:07:26.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:26 smithi137 bash[25001]: audit 2024-09-20T19:07:25.156477+0000 mon.a (mon.0) 376 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-20T19:07:26.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:26 smithi137 bash[25001]: cluster 2024-09-20T19:07:25.159631+0000 mon.a (mon.0) 377 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-20T19:07:26.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:26 smithi137 bash[25001]: cluster 2024-09-20T19:07:25.159631+0000 mon.a (mon.0) 377 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-20T19:07:26.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:26 smithi137 bash[25001]: audit 2024-09-20T19:07:25.160113+0000 mon.a (mon.0) 378 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi018", "root=default"]} : dispatch 2024-09-20T19:07:26.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:26 smithi137 bash[25001]: audit 2024-09-20T19:07:25.160113+0000 mon.a (mon.0) 378 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi018", "root=default"]} : dispatch 2024-09-20T19:07:26.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:26 smithi137 bash[25001]: audit 2024-09-20T19:07:25.160558+0000 mon.a (mon.0) 379 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:26.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:26 smithi137 bash[25001]: audit 2024-09-20T19:07:25.160558+0000 mon.a (mon.0) 379 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:26.922 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 20 19:07:26 smithi018 bash[40470]: debug 2024-09-20T19:07:26.513+0000 7ff4c90cb640 -1 osd.1 0 waiting for initial osdmap 2024-09-20T19:07:26.922 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 20 19:07:26 smithi018 bash[40470]: debug 2024-09-20T19:07:26.537+0000 7ff4c0eea640 -1 osd.1 12 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-20T19:07:27.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:27 smithi082 bash[24745]: audit 2024-09-20T19:07:26.159112+0000 mon.a (mon.0) 380 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]': finished 2024-09-20T19:07:27.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:27 smithi082 bash[24745]: audit 2024-09-20T19:07:26.159112+0000 mon.a (mon.0) 380 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]': finished 2024-09-20T19:07:27.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:27 smithi082 bash[24745]: cluster 2024-09-20T19:07:26.166379+0000 mon.a (mon.0) 381 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-20T19:07:27.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:27 smithi082 bash[24745]: cluster 2024-09-20T19:07:26.166379+0000 mon.a (mon.0) 381 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-20T19:07:27.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:27 smithi082 bash[24745]: audit 2024-09-20T19:07:26.168236+0000 mon.a (mon.0) 382 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:27.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:27 smithi082 bash[24745]: audit 2024-09-20T19:07:26.168236+0000 mon.a (mon.0) 382 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:27.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:27 smithi082 bash[24745]: audit 2024-09-20T19:07:26.180327+0000 mon.a (mon.0) 383 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:27.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:27 smithi082 bash[24745]: audit 2024-09-20T19:07:26.180327+0000 mon.a (mon.0) 383 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:27.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:27 smithi082 bash[24745]: audit 2024-09-20T19:07:26.522716+0000 mon.a (mon.0) 384 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' 2024-09-20T19:07:27.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:27 smithi082 bash[24745]: audit 2024-09-20T19:07:26.522716+0000 mon.a (mon.0) 384 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' 2024-09-20T19:07:27.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:27 smithi137 bash[25001]: audit 2024-09-20T19:07:26.159112+0000 mon.a (mon.0) 380 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]': finished 2024-09-20T19:07:27.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:27 smithi137 bash[25001]: audit 2024-09-20T19:07:26.159112+0000 mon.a (mon.0) 380 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]': finished 2024-09-20T19:07:27.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:27 smithi137 bash[25001]: cluster 2024-09-20T19:07:26.166379+0000 mon.a (mon.0) 381 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-20T19:07:27.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:27 smithi137 bash[25001]: cluster 2024-09-20T19:07:26.166379+0000 mon.a (mon.0) 381 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-20T19:07:27.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:27 smithi137 bash[25001]: audit 2024-09-20T19:07:26.168236+0000 mon.a (mon.0) 382 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:27.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:27 smithi137 bash[25001]: audit 2024-09-20T19:07:26.168236+0000 mon.a (mon.0) 382 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:27.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:27 smithi137 bash[25001]: audit 2024-09-20T19:07:26.180327+0000 mon.a (mon.0) 383 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:27.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:27 smithi137 bash[25001]: audit 2024-09-20T19:07:26.180327+0000 mon.a (mon.0) 383 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:27.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:27 smithi137 bash[25001]: audit 2024-09-20T19:07:26.522716+0000 mon.a (mon.0) 384 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' 2024-09-20T19:07:27.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:27 smithi137 bash[25001]: audit 2024-09-20T19:07:26.522716+0000 mon.a (mon.0) 384 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' 2024-09-20T19:07:27.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:27 smithi018 bash[22763]: audit 2024-09-20T19:07:26.159112+0000 mon.a (mon.0) 380 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]': finished 2024-09-20T19:07:27.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:27 smithi018 bash[22763]: audit 2024-09-20T19:07:26.159112+0000 mon.a (mon.0) 380 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi018", "root=default"]}]': finished 2024-09-20T19:07:27.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:27 smithi018 bash[22763]: cluster 2024-09-20T19:07:26.166379+0000 mon.a (mon.0) 381 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-20T19:07:27.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:27 smithi018 bash[22763]: cluster 2024-09-20T19:07:26.166379+0000 mon.a (mon.0) 381 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-20T19:07:27.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:27 smithi018 bash[22763]: audit 2024-09-20T19:07:26.168236+0000 mon.a (mon.0) 382 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:27.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:27 smithi018 bash[22763]: audit 2024-09-20T19:07:26.168236+0000 mon.a (mon.0) 382 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:27.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:27 smithi018 bash[22763]: audit 2024-09-20T19:07:26.180327+0000 mon.a (mon.0) 383 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:27.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:27 smithi018 bash[22763]: audit 2024-09-20T19:07:26.180327+0000 mon.a (mon.0) 383 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:27.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:27 smithi018 bash[22763]: audit 2024-09-20T19:07:26.522716+0000 mon.a (mon.0) 384 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' 2024-09-20T19:07:27.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:27 smithi018 bash[22763]: audit 2024-09-20T19:07:26.522716+0000 mon.a (mon.0) 384 : audit [INF] from='osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269]' entity='osd.1' 2024-09-20T19:07:28.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:28 smithi082 bash[24745]: cluster 2024-09-20T19:07:25.772765+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:07:28.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:28 smithi082 bash[24745]: cluster 2024-09-20T19:07:25.772765+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:07:28.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:28 smithi082 bash[24745]: cluster 2024-09-20T19:07:25.772886+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:07:28.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:28 smithi082 bash[24745]: cluster 2024-09-20T19:07:25.772886+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:07:28.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:28 smithi082 bash[24745]: cluster 2024-09-20T19:07:26.458325+0000 mgr.a (mgr.14152) 164 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:28.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:28 smithi082 bash[24745]: cluster 2024-09-20T19:07:26.458325+0000 mgr.a (mgr.14152) 164 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:28.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:28 smithi082 bash[24745]: audit 2024-09-20T19:07:27.179900+0000 mon.a (mon.0) 385 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:28.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:28 smithi082 bash[24745]: audit 2024-09-20T19:07:27.179900+0000 mon.a (mon.0) 385 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:28.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:28 smithi082 bash[24745]: cluster 2024-09-20T19:07:27.525628+0000 mon.a (mon.0) 386 : cluster [INF] osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269] boot 2024-09-20T19:07:28.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:28 smithi082 bash[24745]: cluster 2024-09-20T19:07:27.525628+0000 mon.a (mon.0) 386 : cluster [INF] osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269] boot 2024-09-20T19:07:28.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:28 smithi082 bash[24745]: cluster 2024-09-20T19:07:27.525665+0000 mon.a (mon.0) 387 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-20T19:07:28.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:28 smithi082 bash[24745]: cluster 2024-09-20T19:07:27.525665+0000 mon.a (mon.0) 387 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-20T19:07:28.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:28 smithi082 bash[24745]: audit 2024-09-20T19:07:27.526193+0000 mon.a (mon.0) 388 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:28.450 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:28 smithi082 bash[24745]: audit 2024-09-20T19:07:27.526193+0000 mon.a (mon.0) 388 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:28.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:28 smithi137 bash[25001]: cluster 2024-09-20T19:07:25.772765+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:07:28.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:28 smithi137 bash[25001]: cluster 2024-09-20T19:07:25.772765+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:07:28.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:28 smithi137 bash[25001]: cluster 2024-09-20T19:07:25.772886+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:07:28.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:28 smithi137 bash[25001]: cluster 2024-09-20T19:07:25.772886+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:07:28.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:28 smithi137 bash[25001]: cluster 2024-09-20T19:07:26.458325+0000 mgr.a (mgr.14152) 164 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:28.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:28 smithi137 bash[25001]: cluster 2024-09-20T19:07:26.458325+0000 mgr.a (mgr.14152) 164 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:28.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:28 smithi137 bash[25001]: audit 2024-09-20T19:07:27.179900+0000 mon.a (mon.0) 385 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:28.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:28 smithi137 bash[25001]: audit 2024-09-20T19:07:27.179900+0000 mon.a (mon.0) 385 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:28.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:28 smithi137 bash[25001]: cluster 2024-09-20T19:07:27.525628+0000 mon.a (mon.0) 386 : cluster [INF] osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269] boot 2024-09-20T19:07:28.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:28 smithi137 bash[25001]: cluster 2024-09-20T19:07:27.525628+0000 mon.a (mon.0) 386 : cluster [INF] osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269] boot 2024-09-20T19:07:28.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:28 smithi137 bash[25001]: cluster 2024-09-20T19:07:27.525665+0000 mon.a (mon.0) 387 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-20T19:07:28.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:28 smithi137 bash[25001]: cluster 2024-09-20T19:07:27.525665+0000 mon.a (mon.0) 387 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-20T19:07:28.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:28 smithi137 bash[25001]: audit 2024-09-20T19:07:27.526193+0000 mon.a (mon.0) 388 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:28.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:28 smithi137 bash[25001]: audit 2024-09-20T19:07:27.526193+0000 mon.a (mon.0) 388 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:28.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:28 smithi018 bash[22763]: cluster 2024-09-20T19:07:25.772765+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:07:28.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:28 smithi018 bash[22763]: cluster 2024-09-20T19:07:25.772765+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:07:28.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:28 smithi018 bash[22763]: cluster 2024-09-20T19:07:25.772886+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:07:28.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:28 smithi018 bash[22763]: cluster 2024-09-20T19:07:25.772886+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:07:28.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:28 smithi018 bash[22763]: cluster 2024-09-20T19:07:26.458325+0000 mgr.a (mgr.14152) 164 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:28.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:28 smithi018 bash[22763]: cluster 2024-09-20T19:07:26.458325+0000 mgr.a (mgr.14152) 164 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-20T19:07:28.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:28 smithi018 bash[22763]: audit 2024-09-20T19:07:27.179900+0000 mon.a (mon.0) 385 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:28.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:28 smithi018 bash[22763]: audit 2024-09-20T19:07:27.179900+0000 mon.a (mon.0) 385 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:28.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:28 smithi018 bash[22763]: cluster 2024-09-20T19:07:27.525628+0000 mon.a (mon.0) 386 : cluster [INF] osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269] boot 2024-09-20T19:07:28.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:28 smithi018 bash[22763]: cluster 2024-09-20T19:07:27.525628+0000 mon.a (mon.0) 386 : cluster [INF] osd.1 [v2:172.21.15.18:6810/2856259269,v1:172.21.15.18:6811/2856259269] boot 2024-09-20T19:07:28.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:28 smithi018 bash[22763]: cluster 2024-09-20T19:07:27.525665+0000 mon.a (mon.0) 387 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-20T19:07:28.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:28 smithi018 bash[22763]: cluster 2024-09-20T19:07:27.525665+0000 mon.a (mon.0) 387 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-20T19:07:28.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:28 smithi018 bash[22763]: audit 2024-09-20T19:07:27.526193+0000 mon.a (mon.0) 388 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:28.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:28 smithi018 bash[22763]: audit 2024-09-20T19:07:27.526193+0000 mon.a (mon.0) 388 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-20T19:07:29.188 INFO:teuthology.orchestra.run.smithi082.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.b/config 2024-09-20T19:07:29.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:29 smithi082 bash[24745]: cluster 2024-09-20T19:07:28.458762+0000 mgr.a (mgr.14152) 165 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:29.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:29 smithi082 bash[24745]: cluster 2024-09-20T19:07:28.458762+0000 mgr.a (mgr.14152) 165 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:29.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:29 smithi082 bash[24745]: cluster 2024-09-20T19:07:28.529470+0000 mon.a (mon.0) 389 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-20T19:07:29.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:29 smithi082 bash[24745]: cluster 2024-09-20T19:07:28.529470+0000 mon.a (mon.0) 389 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-20T19:07:29.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:29 smithi137 bash[25001]: cluster 2024-09-20T19:07:28.458762+0000 mgr.a (mgr.14152) 165 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:29.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:29 smithi137 bash[25001]: cluster 2024-09-20T19:07:28.458762+0000 mgr.a (mgr.14152) 165 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:29.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:29 smithi137 bash[25001]: cluster 2024-09-20T19:07:28.529470+0000 mon.a (mon.0) 389 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-20T19:07:29.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:29 smithi137 bash[25001]: cluster 2024-09-20T19:07:28.529470+0000 mon.a (mon.0) 389 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-20T19:07:29.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:29 smithi018 bash[22763]: cluster 2024-09-20T19:07:28.458762+0000 mgr.a (mgr.14152) 165 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:29.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:29 smithi018 bash[22763]: cluster 2024-09-20T19:07:28.458762+0000 mgr.a (mgr.14152) 165 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:29.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:29 smithi018 bash[22763]: cluster 2024-09-20T19:07:28.529470+0000 mon.a (mon.0) 389 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-20T19:07:29.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:29 smithi018 bash[22763]: cluster 2024-09-20T19:07:28.529470+0000 mon.a (mon.0) 389 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-20T19:07:31.794 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:31 smithi082 bash[24745]: cluster 2024-09-20T19:07:30.459196+0000 mgr.a (mgr.14152) 166 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:31.794 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:31 smithi082 bash[24745]: cluster 2024-09-20T19:07:30.459196+0000 mgr.a (mgr.14152) 166 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:31.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:31 smithi137 bash[25001]: cluster 2024-09-20T19:07:30.459196+0000 mgr.a (mgr.14152) 166 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:31.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:31 smithi137 bash[25001]: cluster 2024-09-20T19:07:30.459196+0000 mgr.a (mgr.14152) 166 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:31.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:31 smithi018 bash[22763]: cluster 2024-09-20T19:07:30.459196+0000 mgr.a (mgr.14152) 166 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:31.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:31 smithi018 bash[22763]: cluster 2024-09-20T19:07:30.459196+0000 mgr.a (mgr.14152) 166 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:33.299 INFO:teuthology.orchestra.run.smithi082.stdout: 2024-09-20T19:07:33.334 DEBUG:teuthology.orchestra.run.smithi082:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph orch daemon add osd smithi082:vg_nvme/lv_4 2024-09-20T19:07:33.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:33 smithi082 bash[24745]: cluster 2024-09-20T19:07:32.459535+0000 mgr.a (mgr.14152) 167 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:33.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:33 smithi082 bash[24745]: cluster 2024-09-20T19:07:32.459535+0000 mgr.a (mgr.14152) 167 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:33.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:33 smithi137 bash[25001]: cluster 2024-09-20T19:07:32.459535+0000 mgr.a (mgr.14152) 167 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:33.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:33 smithi137 bash[25001]: cluster 2024-09-20T19:07:32.459535+0000 mgr.a (mgr.14152) 167 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:33.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:33 smithi018 bash[22763]: cluster 2024-09-20T19:07:32.459535+0000 mgr.a (mgr.14152) 167 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:33.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:33 smithi018 bash[22763]: cluster 2024-09-20T19:07:32.459535+0000 mgr.a (mgr.14152) 167 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:35.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: cephadm 2024-09-20T19:07:34.209226+0000 mgr.a (mgr.14152) 168 : cephadm [INF] Detected new or changed devices on smithi018 2024-09-20T19:07:35.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: cephadm 2024-09-20T19:07:34.209226+0000 mgr.a (mgr.14152) 168 : cephadm [INF] Detected new or changed devices on smithi018 2024-09-20T19:07:35.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: audit 2024-09-20T19:07:34.218003+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: audit 2024-09-20T19:07:34.218003+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: audit 2024-09-20T19:07:34.226408+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: audit 2024-09-20T19:07:34.226408+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: audit 2024-09-20T19:07:34.229042+0000 mon.a (mon.0) 392 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-20T19:07:35.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: audit 2024-09-20T19:07:34.229042+0000 mon.a (mon.0) 392 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-20T19:07:35.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: audit 2024-09-20T19:07:34.230903+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-20T19:07:35.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: audit 2024-09-20T19:07:34.230903+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-20T19:07:35.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: cephadm 2024-09-20T19:07:34.232315+0000 mgr.a (mgr.14152) 169 : cephadm [INF] Adjusting osd_memory_target on smithi018 to 8634M 2024-09-20T19:07:35.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: cephadm 2024-09-20T19:07:34.232315+0000 mgr.a (mgr.14152) 169 : cephadm [INF] Adjusting osd_memory_target on smithi018 to 8634M 2024-09-20T19:07:35.552 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: audit 2024-09-20T19:07:34.238510+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.552 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: audit 2024-09-20T19:07:34.238510+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.552 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: audit 2024-09-20T19:07:34.242890+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:35.552 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: audit 2024-09-20T19:07:34.242890+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:35.552 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: audit 2024-09-20T19:07:34.244670+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:07:35.552 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: audit 2024-09-20T19:07:34.244670+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:07:35.552 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: audit 2024-09-20T19:07:34.254751+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.552 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: audit 2024-09-20T19:07:34.254751+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.552 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: cluster 2024-09-20T19:07:34.459982+0000 mgr.a (mgr.14152) 170 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:35.552 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:35 smithi137 bash[25001]: cluster 2024-09-20T19:07:34.459982+0000 mgr.a (mgr.14152) 170 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:35.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: cephadm 2024-09-20T19:07:34.209226+0000 mgr.a (mgr.14152) 168 : cephadm [INF] Detected new or changed devices on smithi018 2024-09-20T19:07:35.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: cephadm 2024-09-20T19:07:34.209226+0000 mgr.a (mgr.14152) 168 : cephadm [INF] Detected new or changed devices on smithi018 2024-09-20T19:07:35.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: audit 2024-09-20T19:07:34.218003+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: audit 2024-09-20T19:07:34.218003+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: audit 2024-09-20T19:07:34.226408+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: audit 2024-09-20T19:07:34.226408+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: audit 2024-09-20T19:07:34.229042+0000 mon.a (mon.0) 392 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-20T19:07:35.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: audit 2024-09-20T19:07:34.229042+0000 mon.a (mon.0) 392 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-20T19:07:35.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: audit 2024-09-20T19:07:34.230903+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-20T19:07:35.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: audit 2024-09-20T19:07:34.230903+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-20T19:07:35.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: cephadm 2024-09-20T19:07:34.232315+0000 mgr.a (mgr.14152) 169 : cephadm [INF] Adjusting osd_memory_target on smithi018 to 8634M 2024-09-20T19:07:35.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: cephadm 2024-09-20T19:07:34.232315+0000 mgr.a (mgr.14152) 169 : cephadm [INF] Adjusting osd_memory_target on smithi018 to 8634M 2024-09-20T19:07:35.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: audit 2024-09-20T19:07:34.238510+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.673 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: audit 2024-09-20T19:07:34.238510+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: audit 2024-09-20T19:07:34.242890+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:35.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: audit 2024-09-20T19:07:34.242890+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:35.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: audit 2024-09-20T19:07:34.244670+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:07:35.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: audit 2024-09-20T19:07:34.244670+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:07:35.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: audit 2024-09-20T19:07:34.254751+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: audit 2024-09-20T19:07:34.254751+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: cluster 2024-09-20T19:07:34.459982+0000 mgr.a (mgr.14152) 170 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:35.674 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:35 smithi018 bash[22763]: cluster 2024-09-20T19:07:34.459982+0000 mgr.a (mgr.14152) 170 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:35.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: cephadm 2024-09-20T19:07:34.209226+0000 mgr.a (mgr.14152) 168 : cephadm [INF] Detected new or changed devices on smithi018 2024-09-20T19:07:35.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: cephadm 2024-09-20T19:07:34.209226+0000 mgr.a (mgr.14152) 168 : cephadm [INF] Detected new or changed devices on smithi018 2024-09-20T19:07:35.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: audit 2024-09-20T19:07:34.218003+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: audit 2024-09-20T19:07:34.218003+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: audit 2024-09-20T19:07:34.226408+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: audit 2024-09-20T19:07:34.226408+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: audit 2024-09-20T19:07:34.229042+0000 mon.a (mon.0) 392 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-20T19:07:35.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: audit 2024-09-20T19:07:34.229042+0000 mon.a (mon.0) 392 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-20T19:07:35.699 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: audit 2024-09-20T19:07:34.230903+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-20T19:07:35.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: audit 2024-09-20T19:07:34.230903+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-20T19:07:35.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: cephadm 2024-09-20T19:07:34.232315+0000 mgr.a (mgr.14152) 169 : cephadm [INF] Adjusting osd_memory_target on smithi018 to 8634M 2024-09-20T19:07:35.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: cephadm 2024-09-20T19:07:34.232315+0000 mgr.a (mgr.14152) 169 : cephadm [INF] Adjusting osd_memory_target on smithi018 to 8634M 2024-09-20T19:07:35.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: audit 2024-09-20T19:07:34.238510+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: audit 2024-09-20T19:07:34.238510+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: audit 2024-09-20T19:07:34.242890+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:35.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: audit 2024-09-20T19:07:34.242890+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:35.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: audit 2024-09-20T19:07:34.244670+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:07:35.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: audit 2024-09-20T19:07:34.244670+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:07:35.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: audit 2024-09-20T19:07:34.254751+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: audit 2024-09-20T19:07:34.254751+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:07:35.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: cluster 2024-09-20T19:07:34.459982+0000 mgr.a (mgr.14152) 170 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:35.700 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:35 smithi082 bash[24745]: cluster 2024-09-20T19:07:34.459982+0000 mgr.a (mgr.14152) 170 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:37.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:37 smithi137 bash[25001]: cluster 2024-09-20T19:07:36.460469+0000 mgr.a (mgr.14152) 171 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:37.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:37 smithi137 bash[25001]: cluster 2024-09-20T19:07:36.460469+0000 mgr.a (mgr.14152) 171 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:37.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:37 smithi018 bash[22763]: cluster 2024-09-20T19:07:36.460469+0000 mgr.a (mgr.14152) 171 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:37.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:37 smithi018 bash[22763]: cluster 2024-09-20T19:07:36.460469+0000 mgr.a (mgr.14152) 171 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:37.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:37 smithi082 bash[24745]: cluster 2024-09-20T19:07:36.460469+0000 mgr.a (mgr.14152) 171 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:37.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:37 smithi082 bash[24745]: cluster 2024-09-20T19:07:36.460469+0000 mgr.a (mgr.14152) 171 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:38.059 INFO:teuthology.orchestra.run.smithi082.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.b/config 2024-09-20T19:07:39.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:39 smithi137 bash[25001]: cluster 2024-09-20T19:07:38.460946+0000 mgr.a (mgr.14152) 172 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:39.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:39 smithi137 bash[25001]: cluster 2024-09-20T19:07:38.460946+0000 mgr.a (mgr.14152) 172 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:39.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:39 smithi137 bash[25001]: audit 2024-09-20T19:07:39.463990+0000 mon.a (mon.0) 398 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:07:39.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:39 smithi137 bash[25001]: audit 2024-09-20T19:07:39.463990+0000 mon.a (mon.0) 398 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:07:39.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:39 smithi137 bash[25001]: audit 2024-09-20T19:07:39.470159+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:07:39.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:39 smithi137 bash[25001]: audit 2024-09-20T19:07:39.470159+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:07:39.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:39 smithi137 bash[25001]: audit 2024-09-20T19:07:39.472013+0000 mon.a (mon.0) 400 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:39.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:39 smithi137 bash[25001]: audit 2024-09-20T19:07:39.472013+0000 mon.a (mon.0) 400 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:39.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:39 smithi018 bash[22763]: cluster 2024-09-20T19:07:38.460946+0000 mgr.a (mgr.14152) 172 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:39.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:39 smithi018 bash[22763]: cluster 2024-09-20T19:07:38.460946+0000 mgr.a (mgr.14152) 172 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:39.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:39 smithi018 bash[22763]: audit 2024-09-20T19:07:39.463990+0000 mon.a (mon.0) 398 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:07:39.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:39 smithi018 bash[22763]: audit 2024-09-20T19:07:39.463990+0000 mon.a (mon.0) 398 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:07:39.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:39 smithi018 bash[22763]: audit 2024-09-20T19:07:39.470159+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:07:39.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:39 smithi018 bash[22763]: audit 2024-09-20T19:07:39.470159+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:07:39.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:39 smithi018 bash[22763]: audit 2024-09-20T19:07:39.472013+0000 mon.a (mon.0) 400 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:39.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:39 smithi018 bash[22763]: audit 2024-09-20T19:07:39.472013+0000 mon.a (mon.0) 400 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:39.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:39 smithi082 bash[24745]: cluster 2024-09-20T19:07:38.460946+0000 mgr.a (mgr.14152) 172 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:39.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:39 smithi082 bash[24745]: cluster 2024-09-20T19:07:38.460946+0000 mgr.a (mgr.14152) 172 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:39.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:39 smithi082 bash[24745]: audit 2024-09-20T19:07:39.463990+0000 mon.a (mon.0) 398 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:07:39.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:39 smithi082 bash[24745]: audit 2024-09-20T19:07:39.463990+0000 mon.a (mon.0) 398 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:07:39.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:39 smithi082 bash[24745]: audit 2024-09-20T19:07:39.470159+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:07:39.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:39 smithi082 bash[24745]: audit 2024-09-20T19:07:39.470159+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:07:39.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:39 smithi082 bash[24745]: audit 2024-09-20T19:07:39.472013+0000 mon.a (mon.0) 400 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:39.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:39 smithi082 bash[24745]: audit 2024-09-20T19:07:39.472013+0000 mon.a (mon.0) 400 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:07:40.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:40 smithi137 bash[25001]: audit 2024-09-20T19:07:39.457098+0000 mgr.a (mgr.14152) 173 : audit [DBG] from='client.24155 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi082:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:07:40.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:40 smithi137 bash[25001]: audit 2024-09-20T19:07:39.457098+0000 mgr.a (mgr.14152) 173 : audit [DBG] from='client.24155 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi082:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:07:40.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:40 smithi018 bash[22763]: audit 2024-09-20T19:07:39.457098+0000 mgr.a (mgr.14152) 173 : audit [DBG] from='client.24155 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi082:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:07:40.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:40 smithi018 bash[22763]: audit 2024-09-20T19:07:39.457098+0000 mgr.a (mgr.14152) 173 : audit [DBG] from='client.24155 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi082:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:07:40.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:40 smithi082 bash[24745]: audit 2024-09-20T19:07:39.457098+0000 mgr.a (mgr.14152) 173 : audit [DBG] from='client.24155 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi082:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:07:40.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:40 smithi082 bash[24745]: audit 2024-09-20T19:07:39.457098+0000 mgr.a (mgr.14152) 173 : audit [DBG] from='client.24155 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi082:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:07:41.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:41 smithi137 bash[25001]: cluster 2024-09-20T19:07:40.461440+0000 mgr.a (mgr.14152) 174 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:41.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:41 smithi137 bash[25001]: cluster 2024-09-20T19:07:40.461440+0000 mgr.a (mgr.14152) 174 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:41.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:41 smithi018 bash[22763]: cluster 2024-09-20T19:07:40.461440+0000 mgr.a (mgr.14152) 174 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:41.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:41 smithi018 bash[22763]: cluster 2024-09-20T19:07:40.461440+0000 mgr.a (mgr.14152) 174 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:41.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:41 smithi082 bash[24745]: cluster 2024-09-20T19:07:40.461440+0000 mgr.a (mgr.14152) 174 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:41.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:41 smithi082 bash[24745]: cluster 2024-09-20T19:07:40.461440+0000 mgr.a (mgr.14152) 174 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:43.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:43 smithi137 bash[25001]: cluster 2024-09-20T19:07:42.461856+0000 mgr.a (mgr.14152) 175 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:43.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:43 smithi137 bash[25001]: cluster 2024-09-20T19:07:42.461856+0000 mgr.a (mgr.14152) 175 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:43.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:43 smithi018 bash[22763]: cluster 2024-09-20T19:07:42.461856+0000 mgr.a (mgr.14152) 175 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:43.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:43 smithi018 bash[22763]: cluster 2024-09-20T19:07:42.461856+0000 mgr.a (mgr.14152) 175 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:43.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:43 smithi082 bash[24745]: cluster 2024-09-20T19:07:42.461856+0000 mgr.a (mgr.14152) 175 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:43.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:43 smithi082 bash[24745]: cluster 2024-09-20T19:07:42.461856+0000 mgr.a (mgr.14152) 175 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:45.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:45 smithi137 bash[25001]: cluster 2024-09-20T19:07:44.462321+0000 mgr.a (mgr.14152) 176 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:45.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:45 smithi137 bash[25001]: cluster 2024-09-20T19:07:44.462321+0000 mgr.a (mgr.14152) 176 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:45.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:45 smithi018 bash[22763]: cluster 2024-09-20T19:07:44.462321+0000 mgr.a (mgr.14152) 176 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:45.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:45 smithi018 bash[22763]: cluster 2024-09-20T19:07:44.462321+0000 mgr.a (mgr.14152) 176 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:45.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:45 smithi082 bash[24745]: cluster 2024-09-20T19:07:44.462321+0000 mgr.a (mgr.14152) 176 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:45.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:45 smithi082 bash[24745]: cluster 2024-09-20T19:07:44.462321+0000 mgr.a (mgr.14152) 176 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:47.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:47 smithi137 bash[25001]: cluster 2024-09-20T19:07:46.462787+0000 mgr.a (mgr.14152) 177 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:47.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:47 smithi137 bash[25001]: cluster 2024-09-20T19:07:46.462787+0000 mgr.a (mgr.14152) 177 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:47.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:47 smithi018 bash[22763]: cluster 2024-09-20T19:07:46.462787+0000 mgr.a (mgr.14152) 177 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:47.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:47 smithi018 bash[22763]: cluster 2024-09-20T19:07:46.462787+0000 mgr.a (mgr.14152) 177 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:47.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:47 smithi082 bash[24745]: cluster 2024-09-20T19:07:46.462787+0000 mgr.a (mgr.14152) 177 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:47.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:47 smithi082 bash[24745]: cluster 2024-09-20T19:07:46.462787+0000 mgr.a (mgr.14152) 177 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:48.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:48 smithi137 bash[25001]: audit 2024-09-20T19:07:47.812568+0000 mon.a (mon.0) 401 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e807d8e4-0f55-4ac0-aa61-982e782fc3c9"} : dispatch 2024-09-20T19:07:48.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:48 smithi137 bash[25001]: audit 2024-09-20T19:07:47.812568+0000 mon.a (mon.0) 401 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e807d8e4-0f55-4ac0-aa61-982e782fc3c9"} : dispatch 2024-09-20T19:07:48.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:48 smithi137 bash[25001]: audit 2024-09-20T19:07:47.814196+0000 mon.b (mon.2) 7 : audit [INF] from='client.? 172.21.15.82:0/3171735507' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e807d8e4-0f55-4ac0-aa61-982e782fc3c9"} : dispatch 2024-09-20T19:07:48.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:48 smithi137 bash[25001]: audit 2024-09-20T19:07:47.814196+0000 mon.b (mon.2) 7 : audit [INF] from='client.? 172.21.15.82:0/3171735507' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e807d8e4-0f55-4ac0-aa61-982e782fc3c9"} : dispatch 2024-09-20T19:07:48.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:48 smithi137 bash[25001]: audit 2024-09-20T19:07:47.816125+0000 mon.a (mon.0) 402 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e807d8e4-0f55-4ac0-aa61-982e782fc3c9"}]': finished 2024-09-20T19:07:48.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:48 smithi137 bash[25001]: audit 2024-09-20T19:07:47.816125+0000 mon.a (mon.0) 402 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e807d8e4-0f55-4ac0-aa61-982e782fc3c9"}]': finished 2024-09-20T19:07:48.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:48 smithi137 bash[25001]: cluster 2024-09-20T19:07:47.821483+0000 mon.a (mon.0) 403 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-20T19:07:48.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:48 smithi137 bash[25001]: cluster 2024-09-20T19:07:47.821483+0000 mon.a (mon.0) 403 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-20T19:07:48.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:48 smithi137 bash[25001]: audit 2024-09-20T19:07:47.821965+0000 mon.a (mon.0) 404 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:07:48.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:48 smithi137 bash[25001]: audit 2024-09-20T19:07:47.821965+0000 mon.a (mon.0) 404 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:07:48.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:48 smithi137 bash[25001]: audit 2024-09-20T19:07:48.469385+0000 mon.b (mon.2) 8 : audit [DBG] from='client.? 172.21.15.82:0/4056259710' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:07:48.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:48 smithi137 bash[25001]: audit 2024-09-20T19:07:48.469385+0000 mon.b (mon.2) 8 : audit [DBG] from='client.? 172.21.15.82:0/4056259710' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:07:48.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:48 smithi018 bash[22763]: audit 2024-09-20T19:07:47.812568+0000 mon.a (mon.0) 401 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e807d8e4-0f55-4ac0-aa61-982e782fc3c9"} : dispatch 2024-09-20T19:07:48.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:48 smithi018 bash[22763]: audit 2024-09-20T19:07:47.812568+0000 mon.a (mon.0) 401 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e807d8e4-0f55-4ac0-aa61-982e782fc3c9"} : dispatch 2024-09-20T19:07:48.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:48 smithi018 bash[22763]: audit 2024-09-20T19:07:47.814196+0000 mon.b (mon.2) 7 : audit [INF] from='client.? 172.21.15.82:0/3171735507' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e807d8e4-0f55-4ac0-aa61-982e782fc3c9"} : dispatch 2024-09-20T19:07:48.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:48 smithi018 bash[22763]: audit 2024-09-20T19:07:47.814196+0000 mon.b (mon.2) 7 : audit [INF] from='client.? 172.21.15.82:0/3171735507' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e807d8e4-0f55-4ac0-aa61-982e782fc3c9"} : dispatch 2024-09-20T19:07:48.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:48 smithi018 bash[22763]: audit 2024-09-20T19:07:47.816125+0000 mon.a (mon.0) 402 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e807d8e4-0f55-4ac0-aa61-982e782fc3c9"}]': finished 2024-09-20T19:07:48.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:48 smithi018 bash[22763]: audit 2024-09-20T19:07:47.816125+0000 mon.a (mon.0) 402 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e807d8e4-0f55-4ac0-aa61-982e782fc3c9"}]': finished 2024-09-20T19:07:48.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:48 smithi018 bash[22763]: cluster 2024-09-20T19:07:47.821483+0000 mon.a (mon.0) 403 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-20T19:07:48.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:48 smithi018 bash[22763]: cluster 2024-09-20T19:07:47.821483+0000 mon.a (mon.0) 403 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-20T19:07:48.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:48 smithi018 bash[22763]: audit 2024-09-20T19:07:47.821965+0000 mon.a (mon.0) 404 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:07:48.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:48 smithi018 bash[22763]: audit 2024-09-20T19:07:47.821965+0000 mon.a (mon.0) 404 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:07:48.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:48 smithi018 bash[22763]: audit 2024-09-20T19:07:48.469385+0000 mon.b (mon.2) 8 : audit [DBG] from='client.? 172.21.15.82:0/4056259710' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:07:48.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:48 smithi018 bash[22763]: audit 2024-09-20T19:07:48.469385+0000 mon.b (mon.2) 8 : audit [DBG] from='client.? 172.21.15.82:0/4056259710' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:07:48.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:48 smithi082 bash[24745]: audit 2024-09-20T19:07:47.812568+0000 mon.a (mon.0) 401 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e807d8e4-0f55-4ac0-aa61-982e782fc3c9"} : dispatch 2024-09-20T19:07:48.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:48 smithi082 bash[24745]: audit 2024-09-20T19:07:47.812568+0000 mon.a (mon.0) 401 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e807d8e4-0f55-4ac0-aa61-982e782fc3c9"} : dispatch 2024-09-20T19:07:48.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:48 smithi082 bash[24745]: audit 2024-09-20T19:07:47.814196+0000 mon.b (mon.2) 7 : audit [INF] from='client.? 172.21.15.82:0/3171735507' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e807d8e4-0f55-4ac0-aa61-982e782fc3c9"} : dispatch 2024-09-20T19:07:48.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:48 smithi082 bash[24745]: audit 2024-09-20T19:07:47.814196+0000 mon.b (mon.2) 7 : audit [INF] from='client.? 172.21.15.82:0/3171735507' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e807d8e4-0f55-4ac0-aa61-982e782fc3c9"} : dispatch 2024-09-20T19:07:48.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:48 smithi082 bash[24745]: audit 2024-09-20T19:07:47.816125+0000 mon.a (mon.0) 402 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e807d8e4-0f55-4ac0-aa61-982e782fc3c9"}]': finished 2024-09-20T19:07:48.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:48 smithi082 bash[24745]: audit 2024-09-20T19:07:47.816125+0000 mon.a (mon.0) 402 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e807d8e4-0f55-4ac0-aa61-982e782fc3c9"}]': finished 2024-09-20T19:07:48.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:48 smithi082 bash[24745]: cluster 2024-09-20T19:07:47.821483+0000 mon.a (mon.0) 403 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-20T19:07:48.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:48 smithi082 bash[24745]: cluster 2024-09-20T19:07:47.821483+0000 mon.a (mon.0) 403 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-20T19:07:48.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:48 smithi082 bash[24745]: audit 2024-09-20T19:07:47.821965+0000 mon.a (mon.0) 404 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:07:48.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:48 smithi082 bash[24745]: audit 2024-09-20T19:07:47.821965+0000 mon.a (mon.0) 404 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:07:48.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:48 smithi082 bash[24745]: audit 2024-09-20T19:07:48.469385+0000 mon.b (mon.2) 8 : audit [DBG] from='client.? 172.21.15.82:0/4056259710' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:07:48.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:48 smithi082 bash[24745]: audit 2024-09-20T19:07:48.469385+0000 mon.b (mon.2) 8 : audit [DBG] from='client.? 172.21.15.82:0/4056259710' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:07:50.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:49 smithi018 bash[22763]: cluster 2024-09-20T19:07:48.463259+0000 mgr.a (mgr.14152) 178 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:50.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:49 smithi018 bash[22763]: cluster 2024-09-20T19:07:48.463259+0000 mgr.a (mgr.14152) 178 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:50.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:49 smithi082 bash[24745]: cluster 2024-09-20T19:07:48.463259+0000 mgr.a (mgr.14152) 178 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:50.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:49 smithi082 bash[24745]: cluster 2024-09-20T19:07:48.463259+0000 mgr.a (mgr.14152) 178 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:50.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:49 smithi137 bash[25001]: cluster 2024-09-20T19:07:48.463259+0000 mgr.a (mgr.14152) 178 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:50.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:49 smithi137 bash[25001]: cluster 2024-09-20T19:07:48.463259+0000 mgr.a (mgr.14152) 178 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:52.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:51 smithi018 bash[22763]: cluster 2024-09-20T19:07:50.463764+0000 mgr.a (mgr.14152) 179 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:52.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:51 smithi018 bash[22763]: cluster 2024-09-20T19:07:50.463764+0000 mgr.a (mgr.14152) 179 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:52.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:51 smithi082 bash[24745]: cluster 2024-09-20T19:07:50.463764+0000 mgr.a (mgr.14152) 179 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:52.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:51 smithi082 bash[24745]: cluster 2024-09-20T19:07:50.463764+0000 mgr.a (mgr.14152) 179 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:52.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:51 smithi137 bash[25001]: cluster 2024-09-20T19:07:50.463764+0000 mgr.a (mgr.14152) 179 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:52.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:51 smithi137 bash[25001]: cluster 2024-09-20T19:07:50.463764+0000 mgr.a (mgr.14152) 179 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:54.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:53 smithi018 bash[22763]: cluster 2024-09-20T19:07:52.464270+0000 mgr.a (mgr.14152) 180 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:54.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:53 smithi018 bash[22763]: cluster 2024-09-20T19:07:52.464270+0000 mgr.a (mgr.14152) 180 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:54.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:53 smithi082 bash[24745]: cluster 2024-09-20T19:07:52.464270+0000 mgr.a (mgr.14152) 180 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:54.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:53 smithi082 bash[24745]: cluster 2024-09-20T19:07:52.464270+0000 mgr.a (mgr.14152) 180 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:54.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:53 smithi137 bash[25001]: cluster 2024-09-20T19:07:52.464270+0000 mgr.a (mgr.14152) 180 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:54.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:53 smithi137 bash[25001]: cluster 2024-09-20T19:07:52.464270+0000 mgr.a (mgr.14152) 180 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:56.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:55 smithi018 bash[22763]: cluster 2024-09-20T19:07:54.464796+0000 mgr.a (mgr.14152) 181 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:56.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:55 smithi018 bash[22763]: cluster 2024-09-20T19:07:54.464796+0000 mgr.a (mgr.14152) 181 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:56.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:55 smithi082 bash[24745]: cluster 2024-09-20T19:07:54.464796+0000 mgr.a (mgr.14152) 181 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:56.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:55 smithi082 bash[24745]: cluster 2024-09-20T19:07:54.464796+0000 mgr.a (mgr.14152) 181 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:56.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:55 smithi137 bash[25001]: cluster 2024-09-20T19:07:54.464796+0000 mgr.a (mgr.14152) 181 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:56.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:55 smithi137 bash[25001]: cluster 2024-09-20T19:07:54.464796+0000 mgr.a (mgr.14152) 181 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:58.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:57 smithi018 bash[22763]: cluster 2024-09-20T19:07:56.465292+0000 mgr.a (mgr.14152) 182 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:58.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:57 smithi018 bash[22763]: cluster 2024-09-20T19:07:56.465292+0000 mgr.a (mgr.14152) 182 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:58.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:57 smithi082 bash[24745]: cluster 2024-09-20T19:07:56.465292+0000 mgr.a (mgr.14152) 182 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:58.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:57 smithi082 bash[24745]: cluster 2024-09-20T19:07:56.465292+0000 mgr.a (mgr.14152) 182 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:58.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:57 smithi137 bash[25001]: cluster 2024-09-20T19:07:56.465292+0000 mgr.a (mgr.14152) 182 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:07:58.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:57 smithi137 bash[25001]: cluster 2024-09-20T19:07:56.465292+0000 mgr.a (mgr.14152) 182 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:00.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:59 smithi018 bash[22763]: cluster 2024-09-20T19:07:58.465778+0000 mgr.a (mgr.14152) 183 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:00.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:07:59 smithi018 bash[22763]: cluster 2024-09-20T19:07:58.465778+0000 mgr.a (mgr.14152) 183 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:00.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:59 smithi082 bash[24745]: cluster 2024-09-20T19:07:58.465778+0000 mgr.a (mgr.14152) 183 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:00.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:07:59 smithi082 bash[24745]: cluster 2024-09-20T19:07:58.465778+0000 mgr.a (mgr.14152) 183 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:00.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:59 smithi137 bash[25001]: cluster 2024-09-20T19:07:58.465778+0000 mgr.a (mgr.14152) 183 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:00.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:07:59 smithi137 bash[25001]: cluster 2024-09-20T19:07:58.465778+0000 mgr.a (mgr.14152) 183 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:02.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:01 smithi018 bash[22763]: cluster 2024-09-20T19:08:00.466260+0000 mgr.a (mgr.14152) 184 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:02.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:01 smithi018 bash[22763]: cluster 2024-09-20T19:08:00.466260+0000 mgr.a (mgr.14152) 184 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:02.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:01 smithi018 bash[22763]: audit 2024-09-20T19:08:01.430773+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-20T19:08:02.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:01 smithi018 bash[22763]: audit 2024-09-20T19:08:01.430773+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-20T19:08:02.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:01 smithi018 bash[22763]: audit 2024-09-20T19:08:01.432672+0000 mon.a (mon.0) 406 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:02.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:01 smithi018 bash[22763]: audit 2024-09-20T19:08:01.432672+0000 mon.a (mon.0) 406 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:02.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:01 smithi082 bash[24745]: cluster 2024-09-20T19:08:00.466260+0000 mgr.a (mgr.14152) 184 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:02.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:01 smithi082 bash[24745]: cluster 2024-09-20T19:08:00.466260+0000 mgr.a (mgr.14152) 184 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:02.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:01 smithi082 bash[24745]: audit 2024-09-20T19:08:01.430773+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-20T19:08:02.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:01 smithi082 bash[24745]: audit 2024-09-20T19:08:01.430773+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-20T19:08:02.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:01 smithi082 bash[24745]: audit 2024-09-20T19:08:01.432672+0000 mon.a (mon.0) 406 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:02.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:01 smithi082 bash[24745]: audit 2024-09-20T19:08:01.432672+0000 mon.a (mon.0) 406 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:02.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:01 smithi137 bash[25001]: cluster 2024-09-20T19:08:00.466260+0000 mgr.a (mgr.14152) 184 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:02.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:01 smithi137 bash[25001]: cluster 2024-09-20T19:08:00.466260+0000 mgr.a (mgr.14152) 184 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:02.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:01 smithi137 bash[25001]: audit 2024-09-20T19:08:01.430773+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-20T19:08:02.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:01 smithi137 bash[25001]: audit 2024-09-20T19:08:01.430773+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-20T19:08:02.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:01 smithi137 bash[25001]: audit 2024-09-20T19:08:01.432672+0000 mon.a (mon.0) 406 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:02.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:01 smithi137 bash[25001]: audit 2024-09-20T19:08:01.432672+0000 mon.a (mon.0) 406 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:03.167 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:02 smithi082 bash[24745]: cephadm 2024-09-20T19:08:01.434375+0000 mgr.a (mgr.14152) 185 : cephadm [INF] Deploying daemon osd.2 on smithi082 2024-09-20T19:08:03.168 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:02 smithi082 bash[24745]: cephadm 2024-09-20T19:08:01.434375+0000 mgr.a (mgr.14152) 185 : cephadm [INF] Deploying daemon osd.2 on smithi082 2024-09-20T19:08:03.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:02 smithi018 bash[22763]: cephadm 2024-09-20T19:08:01.434375+0000 mgr.a (mgr.14152) 185 : cephadm [INF] Deploying daemon osd.2 on smithi082 2024-09-20T19:08:03.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:02 smithi018 bash[22763]: cephadm 2024-09-20T19:08:01.434375+0000 mgr.a (mgr.14152) 185 : cephadm [INF] Deploying daemon osd.2 on smithi082 2024-09-20T19:08:03.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:02 smithi137 bash[25001]: cephadm 2024-09-20T19:08:01.434375+0000 mgr.a (mgr.14152) 185 : cephadm [INF] Deploying daemon osd.2 on smithi082 2024-09-20T19:08:03.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:02 smithi137 bash[25001]: cephadm 2024-09-20T19:08:01.434375+0000 mgr.a (mgr.14152) 185 : cephadm [INF] Deploying daemon osd.2 on smithi082 2024-09-20T19:08:04.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:03 smithi018 bash[22763]: cluster 2024-09-20T19:08:02.466727+0000 mgr.a (mgr.14152) 186 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:04.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:03 smithi018 bash[22763]: cluster 2024-09-20T19:08:02.466727+0000 mgr.a (mgr.14152) 186 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:04.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:03 smithi082 bash[24745]: cluster 2024-09-20T19:08:02.466727+0000 mgr.a (mgr.14152) 186 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:04.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:03 smithi082 bash[24745]: cluster 2024-09-20T19:08:02.466727+0000 mgr.a (mgr.14152) 186 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:04.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:03 smithi137 bash[25001]: cluster 2024-09-20T19:08:02.466727+0000 mgr.a (mgr.14152) 186 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:04.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:03 smithi137 bash[25001]: cluster 2024-09-20T19:08:02.466727+0000 mgr.a (mgr.14152) 186 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:05.939 INFO:journalctl@ceph.mgr.b.smithi082.stdout:Sep 20 19:08:05 smithi082 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:08:05.940 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:05 smithi082 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:08:05.940 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:05 smithi082 bash[24745]: cluster 2024-09-20T19:08:04.467198+0000 mgr.a (mgr.14152) 187 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:05.940 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:05 smithi082 bash[24745]: cluster 2024-09-20T19:08:04.467198+0000 mgr.a (mgr.14152) 187 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:06.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:05 smithi018 bash[22763]: cluster 2024-09-20T19:08:04.467198+0000 mgr.a (mgr.14152) 187 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:06.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:05 smithi018 bash[22763]: cluster 2024-09-20T19:08:04.467198+0000 mgr.a (mgr.14152) 187 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:06.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:06 smithi082 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:08:06.198 INFO:journalctl@ceph.mgr.b.smithi082.stdout:Sep 20 19:08:06 smithi082 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:08:06.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:05 smithi137 bash[25001]: cluster 2024-09-20T19:08:04.467198+0000 mgr.a (mgr.14152) 187 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:06.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:05 smithi137 bash[25001]: cluster 2024-09-20T19:08:04.467198+0000 mgr.a (mgr.14152) 187 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:07.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:06 smithi018 bash[22763]: audit 2024-09-20T19:08:06.212367+0000 mon.a (mon.0) 407 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:08:07.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:06 smithi018 bash[22763]: audit 2024-09-20T19:08:06.212367+0000 mon.a (mon.0) 407 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:08:07.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:06 smithi018 bash[22763]: audit 2024-09-20T19:08:06.219361+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:07.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:06 smithi018 bash[22763]: audit 2024-09-20T19:08:06.219361+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:07.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:06 smithi018 bash[22763]: audit 2024-09-20T19:08:06.227241+0000 mon.a (mon.0) 409 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:07.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:06 smithi018 bash[22763]: audit 2024-09-20T19:08:06.227241+0000 mon.a (mon.0) 409 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:07.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:06 smithi082 bash[24745]: audit 2024-09-20T19:08:06.212367+0000 mon.a (mon.0) 407 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:08:07.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:06 smithi082 bash[24745]: audit 2024-09-20T19:08:06.212367+0000 mon.a (mon.0) 407 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:08:07.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:06 smithi082 bash[24745]: audit 2024-09-20T19:08:06.219361+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:07.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:06 smithi082 bash[24745]: audit 2024-09-20T19:08:06.219361+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:07.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:06 smithi082 bash[24745]: audit 2024-09-20T19:08:06.227241+0000 mon.a (mon.0) 409 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:07.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:06 smithi082 bash[24745]: audit 2024-09-20T19:08:06.227241+0000 mon.a (mon.0) 409 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:07.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:06 smithi137 bash[25001]: audit 2024-09-20T19:08:06.212367+0000 mon.a (mon.0) 407 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:08:07.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:06 smithi137 bash[25001]: audit 2024-09-20T19:08:06.212367+0000 mon.a (mon.0) 407 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:08:07.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:06 smithi137 bash[25001]: audit 2024-09-20T19:08:06.219361+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:07.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:06 smithi137 bash[25001]: audit 2024-09-20T19:08:06.219361+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:07.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:06 smithi137 bash[25001]: audit 2024-09-20T19:08:06.227241+0000 mon.a (mon.0) 409 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:07.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:06 smithi137 bash[25001]: audit 2024-09-20T19:08:06.227241+0000 mon.a (mon.0) 409 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:08.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:07 smithi018 bash[22763]: cluster 2024-09-20T19:08:06.467659+0000 mgr.a (mgr.14152) 188 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:08.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:07 smithi018 bash[22763]: cluster 2024-09-20T19:08:06.467659+0000 mgr.a (mgr.14152) 188 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:08.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:07 smithi082 bash[24745]: cluster 2024-09-20T19:08:06.467659+0000 mgr.a (mgr.14152) 188 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:08.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:07 smithi082 bash[24745]: cluster 2024-09-20T19:08:06.467659+0000 mgr.a (mgr.14152) 188 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:08.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:07 smithi137 bash[25001]: cluster 2024-09-20T19:08:06.467659+0000 mgr.a (mgr.14152) 188 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:08.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:07 smithi137 bash[25001]: cluster 2024-09-20T19:08:06.467659+0000 mgr.a (mgr.14152) 188 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:10.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:09 smithi018 bash[22763]: cluster 2024-09-20T19:08:08.468141+0000 mgr.a (mgr.14152) 189 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:10.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:09 smithi018 bash[22763]: cluster 2024-09-20T19:08:08.468141+0000 mgr.a (mgr.14152) 189 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:10.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:09 smithi082 bash[24745]: cluster 2024-09-20T19:08:08.468141+0000 mgr.a (mgr.14152) 189 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:10.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:09 smithi082 bash[24745]: cluster 2024-09-20T19:08:08.468141+0000 mgr.a (mgr.14152) 189 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:10.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:09 smithi137 bash[25001]: cluster 2024-09-20T19:08:08.468141+0000 mgr.a (mgr.14152) 189 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:10.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:09 smithi137 bash[25001]: cluster 2024-09-20T19:08:08.468141+0000 mgr.a (mgr.14152) 189 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:11.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:11 smithi082 bash[24745]: cluster 2024-09-20T19:08:10.468619+0000 mgr.a (mgr.14152) 190 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:11.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:11 smithi082 bash[24745]: cluster 2024-09-20T19:08:10.468619+0000 mgr.a (mgr.14152) 190 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:11.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:11 smithi082 bash[24745]: audit 2024-09-20T19:08:11.521273+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:11.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:11 smithi082 bash[24745]: audit 2024-09-20T19:08:11.521273+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:11.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:11 smithi082 bash[24745]: audit 2024-09-20T19:08:11.529560+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:11.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:11 smithi082 bash[24745]: audit 2024-09-20T19:08:11.529560+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:12.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:11 smithi018 bash[22763]: cluster 2024-09-20T19:08:10.468619+0000 mgr.a (mgr.14152) 190 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:12.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:11 smithi018 bash[22763]: cluster 2024-09-20T19:08:10.468619+0000 mgr.a (mgr.14152) 190 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:12.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:11 smithi018 bash[22763]: audit 2024-09-20T19:08:11.521273+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:12.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:11 smithi018 bash[22763]: audit 2024-09-20T19:08:11.521273+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:12.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:11 smithi018 bash[22763]: audit 2024-09-20T19:08:11.529560+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:12.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:11 smithi018 bash[22763]: audit 2024-09-20T19:08:11.529560+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:12.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:11 smithi137 bash[25001]: cluster 2024-09-20T19:08:10.468619+0000 mgr.a (mgr.14152) 190 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:12.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:11 smithi137 bash[25001]: cluster 2024-09-20T19:08:10.468619+0000 mgr.a (mgr.14152) 190 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:12.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:11 smithi137 bash[25001]: audit 2024-09-20T19:08:11.521273+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:12.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:11 smithi137 bash[25001]: audit 2024-09-20T19:08:11.521273+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:12.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:11 smithi137 bash[25001]: audit 2024-09-20T19:08:11.529560+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:12.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:11 smithi137 bash[25001]: audit 2024-09-20T19:08:11.529560+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:13.168 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:12 smithi082 bash[24745]: audit 2024-09-20T19:08:12.191464+0000 mon.a (mon.0) 412 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:13.168 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:12 smithi082 bash[24745]: audit 2024-09-20T19:08:12.191464+0000 mon.a (mon.0) 412 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:13.168 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:12 smithi082 bash[24745]: audit 2024-09-20T19:08:12.193455+0000 mon.a (mon.0) 413 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:08:13.168 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:12 smithi082 bash[24745]: audit 2024-09-20T19:08:12.193455+0000 mon.a (mon.0) 413 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:08:13.168 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:12 smithi082 bash[24745]: audit 2024-09-20T19:08:12.203896+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:13.168 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:12 smithi082 bash[24745]: audit 2024-09-20T19:08:12.203896+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:13.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:12 smithi018 bash[22763]: audit 2024-09-20T19:08:12.191464+0000 mon.a (mon.0) 412 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:13.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:12 smithi018 bash[22763]: audit 2024-09-20T19:08:12.191464+0000 mon.a (mon.0) 412 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:13.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:12 smithi018 bash[22763]: audit 2024-09-20T19:08:12.193455+0000 mon.a (mon.0) 413 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:08:13.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:12 smithi018 bash[22763]: audit 2024-09-20T19:08:12.193455+0000 mon.a (mon.0) 413 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:08:13.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:12 smithi018 bash[22763]: audit 2024-09-20T19:08:12.203896+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:13.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:12 smithi018 bash[22763]: audit 2024-09-20T19:08:12.203896+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:13.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:12 smithi137 bash[25001]: audit 2024-09-20T19:08:12.191464+0000 mon.a (mon.0) 412 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:13.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:12 smithi137 bash[25001]: audit 2024-09-20T19:08:12.191464+0000 mon.a (mon.0) 412 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:13.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:12 smithi137 bash[25001]: audit 2024-09-20T19:08:12.193455+0000 mon.a (mon.0) 413 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:08:13.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:12 smithi137 bash[25001]: audit 2024-09-20T19:08:12.193455+0000 mon.a (mon.0) 413 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:08:13.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:12 smithi137 bash[25001]: audit 2024-09-20T19:08:12.203896+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:13.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:12 smithi137 bash[25001]: audit 2024-09-20T19:08:12.203896+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:14.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:14 smithi137 bash[25001]: cluster 2024-09-20T19:08:12.469107+0000 mgr.a (mgr.14152) 191 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:14.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:14 smithi137 bash[25001]: cluster 2024-09-20T19:08:12.469107+0000 mgr.a (mgr.14152) 191 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:14.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:14 smithi018 bash[22763]: cluster 2024-09-20T19:08:12.469107+0000 mgr.a (mgr.14152) 191 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:14.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:14 smithi018 bash[22763]: cluster 2024-09-20T19:08:12.469107+0000 mgr.a (mgr.14152) 191 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:14.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:14 smithi082 bash[24745]: cluster 2024-09-20T19:08:12.469107+0000 mgr.a (mgr.14152) 191 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:14.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:14 smithi082 bash[24745]: cluster 2024-09-20T19:08:12.469107+0000 mgr.a (mgr.14152) 191 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:16.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:16 smithi137 bash[25001]: cluster 2024-09-20T19:08:14.469613+0000 mgr.a (mgr.14152) 192 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:16.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:16 smithi137 bash[25001]: cluster 2024-09-20T19:08:14.469613+0000 mgr.a (mgr.14152) 192 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:16.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:16 smithi018 bash[22763]: cluster 2024-09-20T19:08:14.469613+0000 mgr.a (mgr.14152) 192 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:16.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:16 smithi018 bash[22763]: cluster 2024-09-20T19:08:14.469613+0000 mgr.a (mgr.14152) 192 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:16.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:16 smithi082 bash[24745]: cluster 2024-09-20T19:08:14.469613+0000 mgr.a (mgr.14152) 192 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:16.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:16 smithi082 bash[24745]: cluster 2024-09-20T19:08:14.469613+0000 mgr.a (mgr.14152) 192 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:17.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:17 smithi137 bash[25001]: cluster 2024-09-20T19:08:16.470097+0000 mgr.a (mgr.14152) 193 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:17.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:17 smithi137 bash[25001]: cluster 2024-09-20T19:08:16.470097+0000 mgr.a (mgr.14152) 193 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:17.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:17 smithi018 bash[22763]: cluster 2024-09-20T19:08:16.470097+0000 mgr.a (mgr.14152) 193 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:17.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:17 smithi018 bash[22763]: cluster 2024-09-20T19:08:16.470097+0000 mgr.a (mgr.14152) 193 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:17.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:17 smithi082 bash[24745]: cluster 2024-09-20T19:08:16.470097+0000 mgr.a (mgr.14152) 193 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:17.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:17 smithi082 bash[24745]: cluster 2024-09-20T19:08:16.470097+0000 mgr.a (mgr.14152) 193 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:18.401 INFO:teuthology.orchestra.run.smithi082.stdout:Created osd(s) 2 on host 'smithi082' 2024-09-20T19:08:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:18 smithi082 bash[24745]: audit 2024-09-20T19:08:18.376558+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:08:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:18 smithi082 bash[24745]: audit 2024-09-20T19:08:18.376558+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:08:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:18 smithi082 bash[24745]: audit 2024-09-20T19:08:18.384077+0000 mon.a (mon.0) 416 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:18 smithi082 bash[24745]: audit 2024-09-20T19:08:18.384077+0000 mon.a (mon.0) 416 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:18 smithi082 bash[24745]: audit 2024-09-20T19:08:18.392441+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:18 smithi082 bash[24745]: audit 2024-09-20T19:08:18.392441+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:18.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:18 smithi137 bash[25001]: audit 2024-09-20T19:08:18.376558+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:08:18.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:18 smithi137 bash[25001]: audit 2024-09-20T19:08:18.376558+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:08:18.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:18 smithi137 bash[25001]: audit 2024-09-20T19:08:18.384077+0000 mon.a (mon.0) 416 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:18.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:18 smithi137 bash[25001]: audit 2024-09-20T19:08:18.384077+0000 mon.a (mon.0) 416 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:18.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:18 smithi137 bash[25001]: audit 2024-09-20T19:08:18.392441+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:18.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:18 smithi137 bash[25001]: audit 2024-09-20T19:08:18.392441+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:18.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:18 smithi018 bash[22763]: audit 2024-09-20T19:08:18.376558+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:08:18.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:18 smithi018 bash[22763]: audit 2024-09-20T19:08:18.376558+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:08:18.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:18 smithi018 bash[22763]: audit 2024-09-20T19:08:18.384077+0000 mon.a (mon.0) 416 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:18.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:18 smithi018 bash[22763]: audit 2024-09-20T19:08:18.384077+0000 mon.a (mon.0) 416 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:18.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:18 smithi018 bash[22763]: audit 2024-09-20T19:08:18.392441+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:18.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:18 smithi018 bash[22763]: audit 2024-09-20T19:08:18.392441+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:19.096 DEBUG:teuthology.orchestra.run.smithi082:osd.2> sudo journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@osd.2.service 2024-09-20T19:08:19.099 INFO:tasks.cephadm:Deploying osd.3 on smithi082 with /dev/vg_nvme/lv_3... 2024-09-20T19:08:19.099 DEBUG:teuthology.orchestra.run.smithi082:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- lvm zap /dev/vg_nvme/lv_3 2024-09-20T19:08:19.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:19 smithi082 bash[24745]: cluster 2024-09-20T19:08:18.470572+0000 mgr.a (mgr.14152) 194 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:19.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:19 smithi082 bash[24745]: cluster 2024-09-20T19:08:18.470572+0000 mgr.a (mgr.14152) 194 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:19.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:19 smithi082 bash[24745]: audit 2024-09-20T19:08:18.545766+0000 mon.a (mon.0) 418 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-20T19:08:19.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:19 smithi082 bash[24745]: audit 2024-09-20T19:08:18.545766+0000 mon.a (mon.0) 418 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-20T19:08:19.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:19 smithi082 bash[24745]: audit 2024-09-20T19:08:18.547639+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.82:6800/1493467252,v1:172.21.15.82:6801/1493467252]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-20T19:08:19.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:19 smithi082 bash[24745]: audit 2024-09-20T19:08:18.547639+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.82:6800/1493467252,v1:172.21.15.82:6801/1493467252]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-20T19:08:19.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:19 smithi137 bash[25001]: cluster 2024-09-20T19:08:18.470572+0000 mgr.a (mgr.14152) 194 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:19.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:19 smithi137 bash[25001]: cluster 2024-09-20T19:08:18.470572+0000 mgr.a (mgr.14152) 194 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:19.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:19 smithi137 bash[25001]: audit 2024-09-20T19:08:18.545766+0000 mon.a (mon.0) 418 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-20T19:08:19.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:19 smithi137 bash[25001]: audit 2024-09-20T19:08:18.545766+0000 mon.a (mon.0) 418 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-20T19:08:19.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:19 smithi137 bash[25001]: audit 2024-09-20T19:08:18.547639+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.82:6800/1493467252,v1:172.21.15.82:6801/1493467252]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-20T19:08:19.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:19 smithi137 bash[25001]: audit 2024-09-20T19:08:18.547639+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.82:6800/1493467252,v1:172.21.15.82:6801/1493467252]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-20T19:08:19.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:19 smithi018 bash[22763]: cluster 2024-09-20T19:08:18.470572+0000 mgr.a (mgr.14152) 194 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:19.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:19 smithi018 bash[22763]: cluster 2024-09-20T19:08:18.470572+0000 mgr.a (mgr.14152) 194 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:19.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:19 smithi018 bash[22763]: audit 2024-09-20T19:08:18.545766+0000 mon.a (mon.0) 418 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-20T19:08:19.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:19 smithi018 bash[22763]: audit 2024-09-20T19:08:18.545766+0000 mon.a (mon.0) 418 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-20T19:08:19.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:19 smithi018 bash[22763]: audit 2024-09-20T19:08:18.547639+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.82:6800/1493467252,v1:172.21.15.82:6801/1493467252]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-20T19:08:19.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:19 smithi018 bash[22763]: audit 2024-09-20T19:08:18.547639+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.82:6800/1493467252,v1:172.21.15.82:6801/1493467252]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-20T19:08:20.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:20 smithi137 bash[25001]: audit 2024-09-20T19:08:19.439375+0000 mon.a (mon.0) 419 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-20T19:08:20.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:20 smithi137 bash[25001]: audit 2024-09-20T19:08:19.439375+0000 mon.a (mon.0) 419 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-20T19:08:20.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:20 smithi137 bash[25001]: cluster 2024-09-20T19:08:19.444569+0000 mon.a (mon.0) 420 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-20T19:08:20.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:20 smithi137 bash[25001]: cluster 2024-09-20T19:08:19.444569+0000 mon.a (mon.0) 420 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-20T19:08:20.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:20 smithi137 bash[25001]: audit 2024-09-20T19:08:19.444996+0000 mon.a (mon.0) 421 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:20.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:20 smithi137 bash[25001]: audit 2024-09-20T19:08:19.444996+0000 mon.a (mon.0) 421 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:20.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:20 smithi137 bash[25001]: audit 2024-09-20T19:08:19.445843+0000 mon.a (mon.0) 422 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:08:20.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:20 smithi137 bash[25001]: audit 2024-09-20T19:08:19.445843+0000 mon.a (mon.0) 422 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:08:20.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:20 smithi137 bash[25001]: audit 2024-09-20T19:08:19.447113+0000 mon.b (mon.2) 10 : audit [INF] from='osd.2 [v2:172.21.15.82:6800/1493467252,v1:172.21.15.82:6801/1493467252]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:08:20.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:20 smithi137 bash[25001]: audit 2024-09-20T19:08:19.447113+0000 mon.b (mon.2) 10 : audit [INF] from='osd.2 [v2:172.21.15.82:6800/1493467252,v1:172.21.15.82:6801/1493467252]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:08:20.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:20 smithi018 bash[22763]: audit 2024-09-20T19:08:19.439375+0000 mon.a (mon.0) 419 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-20T19:08:20.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:20 smithi018 bash[22763]: audit 2024-09-20T19:08:19.439375+0000 mon.a (mon.0) 419 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-20T19:08:20.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:20 smithi018 bash[22763]: cluster 2024-09-20T19:08:19.444569+0000 mon.a (mon.0) 420 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-20T19:08:20.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:20 smithi018 bash[22763]: cluster 2024-09-20T19:08:19.444569+0000 mon.a (mon.0) 420 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-20T19:08:20.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:20 smithi018 bash[22763]: audit 2024-09-20T19:08:19.444996+0000 mon.a (mon.0) 421 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:20.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:20 smithi018 bash[22763]: audit 2024-09-20T19:08:19.444996+0000 mon.a (mon.0) 421 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:20.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:20 smithi018 bash[22763]: audit 2024-09-20T19:08:19.445843+0000 mon.a (mon.0) 422 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:08:20.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:20 smithi018 bash[22763]: audit 2024-09-20T19:08:19.445843+0000 mon.a (mon.0) 422 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:08:20.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:20 smithi018 bash[22763]: audit 2024-09-20T19:08:19.447113+0000 mon.b (mon.2) 10 : audit [INF] from='osd.2 [v2:172.21.15.82:6800/1493467252,v1:172.21.15.82:6801/1493467252]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:08:20.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:20 smithi018 bash[22763]: audit 2024-09-20T19:08:19.447113+0000 mon.b (mon.2) 10 : audit [INF] from='osd.2 [v2:172.21.15.82:6800/1493467252,v1:172.21.15.82:6801/1493467252]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:08:20.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:20 smithi082 bash[24745]: audit 2024-09-20T19:08:19.439375+0000 mon.a (mon.0) 419 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-20T19:08:20.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:20 smithi082 bash[24745]: audit 2024-09-20T19:08:19.439375+0000 mon.a (mon.0) 419 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-20T19:08:20.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:20 smithi082 bash[24745]: cluster 2024-09-20T19:08:19.444569+0000 mon.a (mon.0) 420 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-20T19:08:20.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:20 smithi082 bash[24745]: cluster 2024-09-20T19:08:19.444569+0000 mon.a (mon.0) 420 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-20T19:08:20.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:20 smithi082 bash[24745]: audit 2024-09-20T19:08:19.444996+0000 mon.a (mon.0) 421 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:20.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:20 smithi082 bash[24745]: audit 2024-09-20T19:08:19.444996+0000 mon.a (mon.0) 421 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:20.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:20 smithi082 bash[24745]: audit 2024-09-20T19:08:19.445843+0000 mon.a (mon.0) 422 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:08:20.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:20 smithi082 bash[24745]: audit 2024-09-20T19:08:19.445843+0000 mon.a (mon.0) 422 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:08:20.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:20 smithi082 bash[24745]: audit 2024-09-20T19:08:19.447113+0000 mon.b (mon.2) 10 : audit [INF] from='osd.2 [v2:172.21.15.82:6800/1493467252,v1:172.21.15.82:6801/1493467252]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:08:20.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:20 smithi082 bash[24745]: audit 2024-09-20T19:08:19.447113+0000 mon.b (mon.2) 10 : audit [INF] from='osd.2 [v2:172.21.15.82:6800/1493467252,v1:172.21.15.82:6801/1493467252]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:08:20.949 INFO:journalctl@ceph.osd.2.smithi082.stdout:Sep 20 19:08:20 smithi082 bash[27891]: debug 2024-09-20T19:08:20.453+0000 7f54988f6640 -1 osd.2 0 waiting for initial osdmap 2024-09-20T19:08:20.949 INFO:journalctl@ceph.osd.2.smithi082.stdout:Sep 20 19:08:20 smithi082 bash[27891]: debug 2024-09-20T19:08:20.477+0000 7f549471d640 -1 osd.2 17 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-20T19:08:21.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:21 smithi137 bash[25001]: audit 2024-09-20T19:08:20.441853+0000 mon.a (mon.0) 423 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi082", "root=default"]}]': finished 2024-09-20T19:08:21.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:21 smithi137 bash[25001]: audit 2024-09-20T19:08:20.441853+0000 mon.a (mon.0) 423 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi082", "root=default"]}]': finished 2024-09-20T19:08:21.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:21 smithi137 bash[25001]: cluster 2024-09-20T19:08:20.447335+0000 mon.a (mon.0) 424 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-20T19:08:21.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:21 smithi137 bash[25001]: cluster 2024-09-20T19:08:20.447335+0000 mon.a (mon.0) 424 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-20T19:08:21.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:21 smithi137 bash[25001]: audit 2024-09-20T19:08:20.448280+0000 mon.a (mon.0) 425 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:21.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:21 smithi137 bash[25001]: audit 2024-09-20T19:08:20.448280+0000 mon.a (mon.0) 425 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:21.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:21 smithi137 bash[25001]: audit 2024-09-20T19:08:20.455900+0000 mon.a (mon.0) 426 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:21.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:21 smithi137 bash[25001]: audit 2024-09-20T19:08:20.455900+0000 mon.a (mon.0) 426 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:21.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:21 smithi137 bash[25001]: cluster 2024-09-20T19:08:20.471035+0000 mgr.a (mgr.14152) 195 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:21.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:21 smithi137 bash[25001]: cluster 2024-09-20T19:08:20.471035+0000 mgr.a (mgr.14152) 195 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:21.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:21 smithi018 bash[22763]: audit 2024-09-20T19:08:20.441853+0000 mon.a (mon.0) 423 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi082", "root=default"]}]': finished 2024-09-20T19:08:21.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:21 smithi018 bash[22763]: audit 2024-09-20T19:08:20.441853+0000 mon.a (mon.0) 423 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi082", "root=default"]}]': finished 2024-09-20T19:08:21.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:21 smithi018 bash[22763]: cluster 2024-09-20T19:08:20.447335+0000 mon.a (mon.0) 424 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-20T19:08:21.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:21 smithi018 bash[22763]: cluster 2024-09-20T19:08:20.447335+0000 mon.a (mon.0) 424 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-20T19:08:21.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:21 smithi018 bash[22763]: audit 2024-09-20T19:08:20.448280+0000 mon.a (mon.0) 425 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:21.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:21 smithi018 bash[22763]: audit 2024-09-20T19:08:20.448280+0000 mon.a (mon.0) 425 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:21.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:21 smithi018 bash[22763]: audit 2024-09-20T19:08:20.455900+0000 mon.a (mon.0) 426 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:21.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:21 smithi018 bash[22763]: audit 2024-09-20T19:08:20.455900+0000 mon.a (mon.0) 426 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:21.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:21 smithi018 bash[22763]: cluster 2024-09-20T19:08:20.471035+0000 mgr.a (mgr.14152) 195 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:21.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:21 smithi018 bash[22763]: cluster 2024-09-20T19:08:20.471035+0000 mgr.a (mgr.14152) 195 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:21.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:21 smithi082 bash[24745]: audit 2024-09-20T19:08:20.441853+0000 mon.a (mon.0) 423 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi082", "root=default"]}]': finished 2024-09-20T19:08:21.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:21 smithi082 bash[24745]: audit 2024-09-20T19:08:20.441853+0000 mon.a (mon.0) 423 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi082", "root=default"]}]': finished 2024-09-20T19:08:21.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:21 smithi082 bash[24745]: cluster 2024-09-20T19:08:20.447335+0000 mon.a (mon.0) 424 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-20T19:08:21.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:21 smithi082 bash[24745]: cluster 2024-09-20T19:08:20.447335+0000 mon.a (mon.0) 424 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-20T19:08:21.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:21 smithi082 bash[24745]: audit 2024-09-20T19:08:20.448280+0000 mon.a (mon.0) 425 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:21.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:21 smithi082 bash[24745]: audit 2024-09-20T19:08:20.448280+0000 mon.a (mon.0) 425 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:21.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:21 smithi082 bash[24745]: audit 2024-09-20T19:08:20.455900+0000 mon.a (mon.0) 426 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:21.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:21 smithi082 bash[24745]: audit 2024-09-20T19:08:20.455900+0000 mon.a (mon.0) 426 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:21.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:21 smithi082 bash[24745]: cluster 2024-09-20T19:08:20.471035+0000 mgr.a (mgr.14152) 195 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:21.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:21 smithi082 bash[24745]: cluster 2024-09-20T19:08:20.471035+0000 mgr.a (mgr.14152) 195 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 65 MiB used, 179 GiB / 179 GiB avail 2024-09-20T19:08:22.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:22 smithi137 bash[25001]: cluster 2024-09-20T19:08:19.553338+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:08:22.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:22 smithi137 bash[25001]: cluster 2024-09-20T19:08:19.553338+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:08:22.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:22 smithi137 bash[25001]: cluster 2024-09-20T19:08:19.553451+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:08:22.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:22 smithi137 bash[25001]: cluster 2024-09-20T19:08:19.553451+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:08:22.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:22 smithi137 bash[25001]: cluster 2024-09-20T19:08:21.457690+0000 mon.a (mon.0) 427 : cluster [INF] osd.2 [v2:172.21.15.82:6800/1493467252,v1:172.21.15.82:6801/1493467252] boot 2024-09-20T19:08:22.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:22 smithi137 bash[25001]: cluster 2024-09-20T19:08:21.457690+0000 mon.a (mon.0) 427 : cluster [INF] osd.2 [v2:172.21.15.82:6800/1493467252,v1:172.21.15.82:6801/1493467252] boot 2024-09-20T19:08:22.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:22 smithi137 bash[25001]: cluster 2024-09-20T19:08:21.457750+0000 mon.a (mon.0) 428 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-20T19:08:22.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:22 smithi137 bash[25001]: cluster 2024-09-20T19:08:21.457750+0000 mon.a (mon.0) 428 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-20T19:08:22.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:22 smithi137 bash[25001]: audit 2024-09-20T19:08:21.458429+0000 mon.a (mon.0) 429 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:22.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:22 smithi137 bash[25001]: audit 2024-09-20T19:08:21.458429+0000 mon.a (mon.0) 429 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:22.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:22 smithi018 bash[22763]: cluster 2024-09-20T19:08:19.553338+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:08:22.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:22 smithi018 bash[22763]: cluster 2024-09-20T19:08:19.553338+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:08:22.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:22 smithi018 bash[22763]: cluster 2024-09-20T19:08:19.553451+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:08:22.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:22 smithi018 bash[22763]: cluster 2024-09-20T19:08:19.553451+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:08:22.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:22 smithi018 bash[22763]: cluster 2024-09-20T19:08:21.457690+0000 mon.a (mon.0) 427 : cluster [INF] osd.2 [v2:172.21.15.82:6800/1493467252,v1:172.21.15.82:6801/1493467252] boot 2024-09-20T19:08:22.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:22 smithi018 bash[22763]: cluster 2024-09-20T19:08:21.457690+0000 mon.a (mon.0) 427 : cluster [INF] osd.2 [v2:172.21.15.82:6800/1493467252,v1:172.21.15.82:6801/1493467252] boot 2024-09-20T19:08:22.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:22 smithi018 bash[22763]: cluster 2024-09-20T19:08:21.457750+0000 mon.a (mon.0) 428 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-20T19:08:22.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:22 smithi018 bash[22763]: cluster 2024-09-20T19:08:21.457750+0000 mon.a (mon.0) 428 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-20T19:08:22.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:22 smithi018 bash[22763]: audit 2024-09-20T19:08:21.458429+0000 mon.a (mon.0) 429 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:22.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:22 smithi018 bash[22763]: audit 2024-09-20T19:08:21.458429+0000 mon.a (mon.0) 429 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:22.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:22 smithi082 bash[24745]: cluster 2024-09-20T19:08:19.553338+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:08:22.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:22 smithi082 bash[24745]: cluster 2024-09-20T19:08:19.553338+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:08:22.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:22 smithi082 bash[24745]: cluster 2024-09-20T19:08:19.553451+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:08:22.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:22 smithi082 bash[24745]: cluster 2024-09-20T19:08:19.553451+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:08:22.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:22 smithi082 bash[24745]: cluster 2024-09-20T19:08:21.457690+0000 mon.a (mon.0) 427 : cluster [INF] osd.2 [v2:172.21.15.82:6800/1493467252,v1:172.21.15.82:6801/1493467252] boot 2024-09-20T19:08:22.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:22 smithi082 bash[24745]: cluster 2024-09-20T19:08:21.457690+0000 mon.a (mon.0) 427 : cluster [INF] osd.2 [v2:172.21.15.82:6800/1493467252,v1:172.21.15.82:6801/1493467252] boot 2024-09-20T19:08:22.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:22 smithi082 bash[24745]: cluster 2024-09-20T19:08:21.457750+0000 mon.a (mon.0) 428 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-20T19:08:22.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:22 smithi082 bash[24745]: cluster 2024-09-20T19:08:21.457750+0000 mon.a (mon.0) 428 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-20T19:08:22.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:22 smithi082 bash[24745]: audit 2024-09-20T19:08:21.458429+0000 mon.a (mon.0) 429 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:22.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:22 smithi082 bash[24745]: audit 2024-09-20T19:08:21.458429+0000 mon.a (mon.0) 429 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-20T19:08:23.419 INFO:teuthology.orchestra.run.smithi082.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.b/config 2024-09-20T19:08:23.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:23 smithi137 bash[25001]: cluster 2024-09-20T19:08:22.471435+0000 mgr.a (mgr.14152) 196 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 92 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:23.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:23 smithi137 bash[25001]: cluster 2024-09-20T19:08:22.471435+0000 mgr.a (mgr.14152) 196 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 92 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:23.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:23 smithi137 bash[25001]: cluster 2024-09-20T19:08:22.475079+0000 mon.a (mon.0) 430 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-20T19:08:23.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:23 smithi137 bash[25001]: cluster 2024-09-20T19:08:22.475079+0000 mon.a (mon.0) 430 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-20T19:08:23.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:23 smithi137 bash[25001]: audit 2024-09-20T19:08:23.050341+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2024-09-20T19:08:23.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:23 smithi137 bash[25001]: audit 2024-09-20T19:08:23.050341+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2024-09-20T19:08:23.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:23 smithi018 bash[22763]: cluster 2024-09-20T19:08:22.471435+0000 mgr.a (mgr.14152) 196 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 92 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:23.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:23 smithi018 bash[22763]: cluster 2024-09-20T19:08:22.471435+0000 mgr.a (mgr.14152) 196 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 92 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:23.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:23 smithi018 bash[22763]: cluster 2024-09-20T19:08:22.475079+0000 mon.a (mon.0) 430 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-20T19:08:23.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:23 smithi018 bash[22763]: cluster 2024-09-20T19:08:22.475079+0000 mon.a (mon.0) 430 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-20T19:08:23.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:23 smithi018 bash[22763]: audit 2024-09-20T19:08:23.050341+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2024-09-20T19:08:23.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:23 smithi018 bash[22763]: audit 2024-09-20T19:08:23.050341+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2024-09-20T19:08:23.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:23 smithi082 bash[24745]: cluster 2024-09-20T19:08:22.471435+0000 mgr.a (mgr.14152) 196 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 92 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:23.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:23 smithi082 bash[24745]: cluster 2024-09-20T19:08:22.471435+0000 mgr.a (mgr.14152) 196 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 92 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:23.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:23 smithi082 bash[24745]: cluster 2024-09-20T19:08:22.475079+0000 mon.a (mon.0) 430 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-20T19:08:23.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:23 smithi082 bash[24745]: cluster 2024-09-20T19:08:22.475079+0000 mon.a (mon.0) 430 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-20T19:08:23.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:23 smithi082 bash[24745]: audit 2024-09-20T19:08:23.050341+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2024-09-20T19:08:23.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:23 smithi082 bash[24745]: audit 2024-09-20T19:08:23.050341+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2024-09-20T19:08:24.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:24 smithi137 bash[25001]: audit 2024-09-20T19:08:23.479544+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-20T19:08:24.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:24 smithi137 bash[25001]: audit 2024-09-20T19:08:23.479544+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-20T19:08:24.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:24 smithi137 bash[25001]: cluster 2024-09-20T19:08:23.486350+0000 mon.a (mon.0) 433 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-20T19:08:24.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:24 smithi137 bash[25001]: cluster 2024-09-20T19:08:23.486350+0000 mon.a (mon.0) 433 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-20T19:08:24.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:24 smithi137 bash[25001]: audit 2024-09-20T19:08:23.488445+0000 mon.a (mon.0) 434 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-20T19:08:24.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:24 smithi137 bash[25001]: audit 2024-09-20T19:08:23.488445+0000 mon.a (mon.0) 434 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-20T19:08:24.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:24 smithi018 bash[22763]: audit 2024-09-20T19:08:23.479544+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-20T19:08:24.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:24 smithi018 bash[22763]: audit 2024-09-20T19:08:23.479544+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-20T19:08:24.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:24 smithi018 bash[22763]: cluster 2024-09-20T19:08:23.486350+0000 mon.a (mon.0) 433 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-20T19:08:24.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:24 smithi018 bash[22763]: cluster 2024-09-20T19:08:23.486350+0000 mon.a (mon.0) 433 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-20T19:08:24.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:24 smithi018 bash[22763]: audit 2024-09-20T19:08:23.488445+0000 mon.a (mon.0) 434 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-20T19:08:24.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:24 smithi018 bash[22763]: audit 2024-09-20T19:08:23.488445+0000 mon.a (mon.0) 434 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-20T19:08:24.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:24 smithi082 bash[24745]: audit 2024-09-20T19:08:23.479544+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-20T19:08:24.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:24 smithi082 bash[24745]: audit 2024-09-20T19:08:23.479544+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-20T19:08:24.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:24 smithi082 bash[24745]: cluster 2024-09-20T19:08:23.486350+0000 mon.a (mon.0) 433 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-20T19:08:24.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:24 smithi082 bash[24745]: cluster 2024-09-20T19:08:23.486350+0000 mon.a (mon.0) 433 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-20T19:08:24.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:24 smithi082 bash[24745]: audit 2024-09-20T19:08:23.488445+0000 mon.a (mon.0) 434 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-20T19:08:24.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:24 smithi082 bash[24745]: audit 2024-09-20T19:08:23.488445+0000 mon.a (mon.0) 434 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-20T19:08:25.716 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:25 smithi082 bash[24745]: cluster 2024-09-20T19:08:24.472038+0000 mgr.a (mgr.14152) 197 : cluster [DBG] pgmap v153: 1 pgs: 1 unknown; 0 B data, 92 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:25.717 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:25 smithi082 bash[24745]: cluster 2024-09-20T19:08:24.472038+0000 mgr.a (mgr.14152) 197 : cluster [DBG] pgmap v153: 1 pgs: 1 unknown; 0 B data, 92 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:25.717 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:25 smithi082 bash[24745]: cluster 2024-09-20T19:08:24.479403+0000 mon.a (mon.0) 435 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-20T19:08:25.717 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:25 smithi082 bash[24745]: cluster 2024-09-20T19:08:24.479403+0000 mon.a (mon.0) 435 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-20T19:08:25.717 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:25 smithi082 bash[24745]: audit 2024-09-20T19:08:24.488581+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-20T19:08:25.717 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:25 smithi082 bash[24745]: audit 2024-09-20T19:08:24.488581+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-20T19:08:25.717 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:25 smithi082 bash[24745]: cluster 2024-09-20T19:08:24.496087+0000 mon.a (mon.0) 437 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-20T19:08:25.717 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:25 smithi082 bash[24745]: cluster 2024-09-20T19:08:24.496087+0000 mon.a (mon.0) 437 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-20T19:08:25.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:25 smithi137 bash[25001]: cluster 2024-09-20T19:08:24.472038+0000 mgr.a (mgr.14152) 197 : cluster [DBG] pgmap v153: 1 pgs: 1 unknown; 0 B data, 92 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:25.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:25 smithi137 bash[25001]: cluster 2024-09-20T19:08:24.472038+0000 mgr.a (mgr.14152) 197 : cluster [DBG] pgmap v153: 1 pgs: 1 unknown; 0 B data, 92 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:25.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:25 smithi137 bash[25001]: cluster 2024-09-20T19:08:24.479403+0000 mon.a (mon.0) 435 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-20T19:08:25.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:25 smithi137 bash[25001]: cluster 2024-09-20T19:08:24.479403+0000 mon.a (mon.0) 435 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-20T19:08:25.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:25 smithi137 bash[25001]: audit 2024-09-20T19:08:24.488581+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-20T19:08:25.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:25 smithi137 bash[25001]: audit 2024-09-20T19:08:24.488581+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-20T19:08:25.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:25 smithi137 bash[25001]: cluster 2024-09-20T19:08:24.496087+0000 mon.a (mon.0) 437 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-20T19:08:25.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:25 smithi137 bash[25001]: cluster 2024-09-20T19:08:24.496087+0000 mon.a (mon.0) 437 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-20T19:08:25.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:25 smithi018 bash[22763]: cluster 2024-09-20T19:08:24.472038+0000 mgr.a (mgr.14152) 197 : cluster [DBG] pgmap v153: 1 pgs: 1 unknown; 0 B data, 92 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:25.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:25 smithi018 bash[22763]: cluster 2024-09-20T19:08:24.472038+0000 mgr.a (mgr.14152) 197 : cluster [DBG] pgmap v153: 1 pgs: 1 unknown; 0 B data, 92 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:25.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:25 smithi018 bash[22763]: cluster 2024-09-20T19:08:24.479403+0000 mon.a (mon.0) 435 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-20T19:08:25.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:25 smithi018 bash[22763]: cluster 2024-09-20T19:08:24.479403+0000 mon.a (mon.0) 435 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-20T19:08:25.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:25 smithi018 bash[22763]: audit 2024-09-20T19:08:24.488581+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-20T19:08:25.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:25 smithi018 bash[22763]: audit 2024-09-20T19:08:24.488581+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-20T19:08:25.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:25 smithi018 bash[22763]: cluster 2024-09-20T19:08:24.496087+0000 mon.a (mon.0) 437 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-20T19:08:25.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:25 smithi018 bash[22763]: cluster 2024-09-20T19:08:24.496087+0000 mon.a (mon.0) 437 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-20T19:08:26.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: cluster 2024-09-20T19:08:25.505300+0000 mon.a (mon.0) 438 : cluster [DBG] osdmap e22: 3 total, 3 up, 3 in 2024-09-20T19:08:26.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: cluster 2024-09-20T19:08:25.505300+0000 mon.a (mon.0) 438 : cluster [DBG] osdmap e22: 3 total, 3 up, 3 in 2024-09-20T19:08:26.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.540135+0000 mon.a (mon.0) 439 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:26.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.540135+0000 mon.a (mon.0) 439 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:26.701 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.685223+0000 mon.a (mon.0) 440 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:26.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.685223+0000 mon.a (mon.0) 440 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:26.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.687754+0000 mon.a (mon.0) 441 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-20T19:08:26.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.687754+0000 mon.a (mon.0) 441 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-20T19:08:26.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.745450+0000 mon.a (mon.0) 442 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-20T19:08:26.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.745450+0000 mon.a (mon.0) 442 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-20T19:08:26.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.745927+0000 mon.a (mon.0) 443 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:08:26.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.745927+0000 mon.a (mon.0) 443 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:08:26.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.746294+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:08:26.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.746294+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:08:26.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.746599+0000 mon.a (mon.0) 445 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:08:26.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.746599+0000 mon.a (mon.0) 445 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:08:26.702 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.749544+0000 mon.a (mon.0) 446 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:08:26.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.749544+0000 mon.a (mon.0) 446 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:08:26.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.749847+0000 mon.a (mon.0) 447 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:08:26.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.749847+0000 mon.a (mon.0) 447 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:08:26.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.750142+0000 mon.a (mon.0) 448 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:08:26.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.750142+0000 mon.a (mon.0) 448 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:08:26.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.751315+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-20T19:08:26.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.751315+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-20T19:08:26.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.806770+0000 mon.c (mon.1) 5 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-20T19:08:26.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.806770+0000 mon.c (mon.1) 5 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-20T19:08:26.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.855289+0000 mon.a (mon.0) 449 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:26.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.855289+0000 mon.a (mon.0) 449 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:26.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.858885+0000 mon.a (mon.0) 450 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:08:26.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.858885+0000 mon.a (mon.0) 450 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:08:26.703 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.859387+0000 mon.a (mon.0) 451 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:08:26.704 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.859387+0000 mon.a (mon.0) 451 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:08:26.704 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.859707+0000 mon.a (mon.0) 452 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:08:26.704 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.859707+0000 mon.a (mon.0) 452 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:08:26.704 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.860858+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-20T19:08:26.704 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.860858+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-20T19:08:26.704 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.913007+0000 mon.b (mon.2) 12 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-20T19:08:26.704 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:26 smithi082 bash[24745]: audit 2024-09-20T19:08:25.913007+0000 mon.b (mon.2) 12 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-20T19:08:26.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: cluster 2024-09-20T19:08:25.505300+0000 mon.a (mon.0) 438 : cluster [DBG] osdmap e22: 3 total, 3 up, 3 in 2024-09-20T19:08:26.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: cluster 2024-09-20T19:08:25.505300+0000 mon.a (mon.0) 438 : cluster [DBG] osdmap e22: 3 total, 3 up, 3 in 2024-09-20T19:08:26.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.540135+0000 mon.a (mon.0) 439 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:26.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.540135+0000 mon.a (mon.0) 439 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:26.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.685223+0000 mon.a (mon.0) 440 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:26.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.685223+0000 mon.a (mon.0) 440 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:26.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.687754+0000 mon.a (mon.0) 441 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-20T19:08:26.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.687754+0000 mon.a (mon.0) 441 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-20T19:08:26.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.745450+0000 mon.a (mon.0) 442 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-20T19:08:26.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.745450+0000 mon.a (mon.0) 442 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-20T19:08:26.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.745927+0000 mon.a (mon.0) 443 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:08:26.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.745927+0000 mon.a (mon.0) 443 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:08:26.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.746294+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:08:26.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.746294+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:08:26.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.746599+0000 mon.a (mon.0) 445 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:08:26.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.746599+0000 mon.a (mon.0) 445 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:08:26.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.749544+0000 mon.a (mon.0) 446 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:08:26.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.749544+0000 mon.a (mon.0) 446 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:08:26.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.749847+0000 mon.a (mon.0) 447 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:08:26.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.749847+0000 mon.a (mon.0) 447 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:08:26.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.750142+0000 mon.a (mon.0) 448 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:08:26.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.750142+0000 mon.a (mon.0) 448 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:08:26.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.751315+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-20T19:08:26.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.751315+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-20T19:08:26.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.806770+0000 mon.c (mon.1) 5 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-20T19:08:26.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.806770+0000 mon.c (mon.1) 5 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-20T19:08:26.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.855289+0000 mon.a (mon.0) 449 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:26.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.855289+0000 mon.a (mon.0) 449 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:26.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.858885+0000 mon.a (mon.0) 450 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:08:26.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.858885+0000 mon.a (mon.0) 450 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:08:26.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.859387+0000 mon.a (mon.0) 451 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:08:26.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.859387+0000 mon.a (mon.0) 451 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:08:26.802 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.859707+0000 mon.a (mon.0) 452 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:08:26.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.859707+0000 mon.a (mon.0) 452 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:08:26.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.860858+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-20T19:08:26.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.860858+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-20T19:08:26.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.913007+0000 mon.b (mon.2) 12 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-20T19:08:26.803 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:26 smithi137 bash[25001]: audit 2024-09-20T19:08:25.913007+0000 mon.b (mon.2) 12 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-20T19:08:26.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: cluster 2024-09-20T19:08:25.505300+0000 mon.a (mon.0) 438 : cluster [DBG] osdmap e22: 3 total, 3 up, 3 in 2024-09-20T19:08:26.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: cluster 2024-09-20T19:08:25.505300+0000 mon.a (mon.0) 438 : cluster [DBG] osdmap e22: 3 total, 3 up, 3 in 2024-09-20T19:08:26.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.540135+0000 mon.a (mon.0) 439 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:26.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.540135+0000 mon.a (mon.0) 439 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:26.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.685223+0000 mon.a (mon.0) 440 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:26.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.685223+0000 mon.a (mon.0) 440 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:26.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.687754+0000 mon.a (mon.0) 441 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-20T19:08:26.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.687754+0000 mon.a (mon.0) 441 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-20T19:08:26.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.745450+0000 mon.a (mon.0) 442 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-20T19:08:26.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.745450+0000 mon.a (mon.0) 442 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-20T19:08:26.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.745927+0000 mon.a (mon.0) 443 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:08:26.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.745927+0000 mon.a (mon.0) 443 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:08:26.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.746294+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:08:26.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.746294+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:08:26.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.746599+0000 mon.a (mon.0) 445 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:08:26.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.746599+0000 mon.a (mon.0) 445 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:08:26.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.749544+0000 mon.a (mon.0) 446 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:08:26.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.749544+0000 mon.a (mon.0) 446 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:08:26.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.749847+0000 mon.a (mon.0) 447 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:08:26.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.749847+0000 mon.a (mon.0) 447 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:08:26.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.750142+0000 mon.a (mon.0) 448 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:08:26.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.750142+0000 mon.a (mon.0) 448 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:08:26.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.751315+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-20T19:08:26.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.751315+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-20T19:08:26.924 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.806770+0000 mon.c (mon.1) 5 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-20T19:08:26.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.806770+0000 mon.c (mon.1) 5 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-20T19:08:26.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.855289+0000 mon.a (mon.0) 449 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:26.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.855289+0000 mon.a (mon.0) 449 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:26.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.858885+0000 mon.a (mon.0) 450 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:08:26.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.858885+0000 mon.a (mon.0) 450 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:08:26.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.859387+0000 mon.a (mon.0) 451 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:08:26.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.859387+0000 mon.a (mon.0) 451 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:08:26.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.859707+0000 mon.a (mon.0) 452 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:08:26.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.859707+0000 mon.a (mon.0) 452 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-20T19:08:26.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.860858+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-20T19:08:26.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.860858+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-20T19:08:26.925 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.913007+0000 mon.b (mon.2) 12 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-20T19:08:26.926 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:26 smithi018 bash[22763]: audit 2024-09-20T19:08:25.913007+0000 mon.b (mon.2) 12 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-20T19:08:27.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:27 smithi137 bash[25001]: cluster 2024-09-20T19:08:26.472582+0000 mgr.a (mgr.14152) 198 : cluster [DBG] pgmap v156: 1 pgs: 1 unknown; 0 B data, 92 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:27.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:27 smithi137 bash[25001]: cluster 2024-09-20T19:08:26.472582+0000 mgr.a (mgr.14152) 198 : cluster [DBG] pgmap v156: 1 pgs: 1 unknown; 0 B data, 92 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:27.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:27 smithi137 bash[25001]: cluster 2024-09-20T19:08:26.849073+0000 mon.a (mon.0) 453 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-20T19:08:27.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:27 smithi137 bash[25001]: cluster 2024-09-20T19:08:26.849073+0000 mon.a (mon.0) 453 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-20T19:08:27.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:27 smithi137 bash[25001]: cluster 2024-09-20T19:08:26.849125+0000 mon.a (mon.0) 454 : cluster [INF] Cluster is now healthy 2024-09-20T19:08:27.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:27 smithi137 bash[25001]: cluster 2024-09-20T19:08:26.849125+0000 mon.a (mon.0) 454 : cluster [INF] Cluster is now healthy 2024-09-20T19:08:27.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:27 smithi018 bash[22763]: cluster 2024-09-20T19:08:26.472582+0000 mgr.a (mgr.14152) 198 : cluster [DBG] pgmap v156: 1 pgs: 1 unknown; 0 B data, 92 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:27.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:27 smithi018 bash[22763]: cluster 2024-09-20T19:08:26.472582+0000 mgr.a (mgr.14152) 198 : cluster [DBG] pgmap v156: 1 pgs: 1 unknown; 0 B data, 92 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:27.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:27 smithi018 bash[22763]: cluster 2024-09-20T19:08:26.849073+0000 mon.a (mon.0) 453 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-20T19:08:27.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:27 smithi018 bash[22763]: cluster 2024-09-20T19:08:26.849073+0000 mon.a (mon.0) 453 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-20T19:08:27.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:27 smithi018 bash[22763]: cluster 2024-09-20T19:08:26.849125+0000 mon.a (mon.0) 454 : cluster [INF] Cluster is now healthy 2024-09-20T19:08:27.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:27 smithi018 bash[22763]: cluster 2024-09-20T19:08:26.849125+0000 mon.a (mon.0) 454 : cluster [INF] Cluster is now healthy 2024-09-20T19:08:27.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:27 smithi082 bash[24745]: cluster 2024-09-20T19:08:26.472582+0000 mgr.a (mgr.14152) 198 : cluster [DBG] pgmap v156: 1 pgs: 1 unknown; 0 B data, 92 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:27.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:27 smithi082 bash[24745]: cluster 2024-09-20T19:08:26.472582+0000 mgr.a (mgr.14152) 198 : cluster [DBG] pgmap v156: 1 pgs: 1 unknown; 0 B data, 92 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:27.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:27 smithi082 bash[24745]: cluster 2024-09-20T19:08:26.849073+0000 mon.a (mon.0) 453 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-20T19:08:27.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:27 smithi082 bash[24745]: cluster 2024-09-20T19:08:26.849073+0000 mon.a (mon.0) 453 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-20T19:08:27.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:27 smithi082 bash[24745]: cluster 2024-09-20T19:08:26.849125+0000 mon.a (mon.0) 454 : cluster [INF] Cluster is now healthy 2024-09-20T19:08:27.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:27 smithi082 bash[24745]: cluster 2024-09-20T19:08:26.849125+0000 mon.a (mon.0) 454 : cluster [INF] Cluster is now healthy 2024-09-20T19:08:29.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:28 smithi018 bash[22763]: cluster 2024-09-20T19:08:27.869966+0000 mon.a (mon.0) 455 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-20T19:08:29.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:28 smithi018 bash[22763]: cluster 2024-09-20T19:08:27.869966+0000 mon.a (mon.0) 455 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-20T19:08:29.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:28 smithi082 bash[24745]: cluster 2024-09-20T19:08:27.869966+0000 mon.a (mon.0) 455 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-20T19:08:29.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:28 smithi082 bash[24745]: cluster 2024-09-20T19:08:27.869966+0000 mon.a (mon.0) 455 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-20T19:08:29.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:28 smithi137 bash[25001]: cluster 2024-09-20T19:08:27.869966+0000 mon.a (mon.0) 455 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-20T19:08:29.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:28 smithi137 bash[25001]: cluster 2024-09-20T19:08:27.869966+0000 mon.a (mon.0) 455 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-20T19:08:30.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:30 smithi018 bash[22763]: cluster 2024-09-20T19:08:28.473178+0000 mgr.a (mgr.14152) 199 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:30.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:30 smithi018 bash[22763]: cluster 2024-09-20T19:08:28.473178+0000 mgr.a (mgr.14152) 199 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:30.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:30 smithi018 bash[22763]: cephadm 2024-09-20T19:08:29.143909+0000 mgr.a (mgr.14152) 200 : cephadm [INF] Detected new or changed devices on smithi082 2024-09-20T19:08:30.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:30 smithi018 bash[22763]: cephadm 2024-09-20T19:08:29.143909+0000 mgr.a (mgr.14152) 200 : cephadm [INF] Detected new or changed devices on smithi082 2024-09-20T19:08:30.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:30 smithi018 bash[22763]: audit 2024-09-20T19:08:29.151855+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:30 smithi018 bash[22763]: audit 2024-09-20T19:08:29.151855+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:30 smithi018 bash[22763]: audit 2024-09-20T19:08:29.159787+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:30 smithi018 bash[22763]: audit 2024-09-20T19:08:29.159787+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:30 smithi018 bash[22763]: audit 2024-09-20T19:08:29.162388+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-20T19:08:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:30 smithi018 bash[22763]: audit 2024-09-20T19:08:29.162388+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-20T19:08:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:30 smithi018 bash[22763]: cephadm 2024-09-20T19:08:29.163884+0000 mgr.a (mgr.14152) 201 : cephadm [INF] Adjusting osd_memory_target on smithi082 to 17265M 2024-09-20T19:08:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:30 smithi018 bash[22763]: cephadm 2024-09-20T19:08:29.163884+0000 mgr.a (mgr.14152) 201 : cephadm [INF] Adjusting osd_memory_target on smithi082 to 17265M 2024-09-20T19:08:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:30 smithi018 bash[22763]: audit 2024-09-20T19:08:29.170337+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:30 smithi018 bash[22763]: audit 2024-09-20T19:08:29.170337+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:30 smithi018 bash[22763]: audit 2024-09-20T19:08:29.183762+0000 mon.a (mon.0) 460 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:30 smithi018 bash[22763]: audit 2024-09-20T19:08:29.183762+0000 mon.a (mon.0) 460 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:30 smithi018 bash[22763]: audit 2024-09-20T19:08:29.185728+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:08:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:30 smithi018 bash[22763]: audit 2024-09-20T19:08:29.185728+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:08:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:30 smithi018 bash[22763]: audit 2024-09-20T19:08:29.195981+0000 mon.a (mon.0) 462 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:30 smithi018 bash[22763]: audit 2024-09-20T19:08:29.195981+0000 mon.a (mon.0) 462 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:30 smithi082 bash[24745]: cluster 2024-09-20T19:08:28.473178+0000 mgr.a (mgr.14152) 199 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:30.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:30 smithi082 bash[24745]: cluster 2024-09-20T19:08:28.473178+0000 mgr.a (mgr.14152) 199 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:30.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:30 smithi082 bash[24745]: cephadm 2024-09-20T19:08:29.143909+0000 mgr.a (mgr.14152) 200 : cephadm [INF] Detected new or changed devices on smithi082 2024-09-20T19:08:30.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:30 smithi082 bash[24745]: cephadm 2024-09-20T19:08:29.143909+0000 mgr.a (mgr.14152) 200 : cephadm [INF] Detected new or changed devices on smithi082 2024-09-20T19:08:30.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:30 smithi082 bash[24745]: audit 2024-09-20T19:08:29.151855+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:30 smithi082 bash[24745]: audit 2024-09-20T19:08:29.151855+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:30 smithi082 bash[24745]: audit 2024-09-20T19:08:29.159787+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:30 smithi082 bash[24745]: audit 2024-09-20T19:08:29.159787+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:30 smithi082 bash[24745]: audit 2024-09-20T19:08:29.162388+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-20T19:08:30.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:30 smithi082 bash[24745]: audit 2024-09-20T19:08:29.162388+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-20T19:08:30.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:30 smithi082 bash[24745]: cephadm 2024-09-20T19:08:29.163884+0000 mgr.a (mgr.14152) 201 : cephadm [INF] Adjusting osd_memory_target on smithi082 to 17265M 2024-09-20T19:08:30.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:30 smithi082 bash[24745]: cephadm 2024-09-20T19:08:29.163884+0000 mgr.a (mgr.14152) 201 : cephadm [INF] Adjusting osd_memory_target on smithi082 to 17265M 2024-09-20T19:08:30.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:30 smithi082 bash[24745]: audit 2024-09-20T19:08:29.170337+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:30 smithi082 bash[24745]: audit 2024-09-20T19:08:29.170337+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:30 smithi082 bash[24745]: audit 2024-09-20T19:08:29.183762+0000 mon.a (mon.0) 460 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:30.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:30 smithi082 bash[24745]: audit 2024-09-20T19:08:29.183762+0000 mon.a (mon.0) 460 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:30.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:30 smithi082 bash[24745]: audit 2024-09-20T19:08:29.185728+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:08:30.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:30 smithi082 bash[24745]: audit 2024-09-20T19:08:29.185728+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:08:30.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:30 smithi082 bash[24745]: audit 2024-09-20T19:08:29.195981+0000 mon.a (mon.0) 462 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:30 smithi082 bash[24745]: audit 2024-09-20T19:08:29.195981+0000 mon.a (mon.0) 462 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:30 smithi137 bash[25001]: cluster 2024-09-20T19:08:28.473178+0000 mgr.a (mgr.14152) 199 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:30.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:30 smithi137 bash[25001]: cluster 2024-09-20T19:08:28.473178+0000 mgr.a (mgr.14152) 199 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:30.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:30 smithi137 bash[25001]: cephadm 2024-09-20T19:08:29.143909+0000 mgr.a (mgr.14152) 200 : cephadm [INF] Detected new or changed devices on smithi082 2024-09-20T19:08:30.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:30 smithi137 bash[25001]: cephadm 2024-09-20T19:08:29.143909+0000 mgr.a (mgr.14152) 200 : cephadm [INF] Detected new or changed devices on smithi082 2024-09-20T19:08:30.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:30 smithi137 bash[25001]: audit 2024-09-20T19:08:29.151855+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:30 smithi137 bash[25001]: audit 2024-09-20T19:08:29.151855+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:30 smithi137 bash[25001]: audit 2024-09-20T19:08:29.159787+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:30 smithi137 bash[25001]: audit 2024-09-20T19:08:29.159787+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:30 smithi137 bash[25001]: audit 2024-09-20T19:08:29.162388+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-20T19:08:30.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:30 smithi137 bash[25001]: audit 2024-09-20T19:08:29.162388+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-20T19:08:30.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:30 smithi137 bash[25001]: cephadm 2024-09-20T19:08:29.163884+0000 mgr.a (mgr.14152) 201 : cephadm [INF] Adjusting osd_memory_target on smithi082 to 17265M 2024-09-20T19:08:30.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:30 smithi137 bash[25001]: cephadm 2024-09-20T19:08:29.163884+0000 mgr.a (mgr.14152) 201 : cephadm [INF] Adjusting osd_memory_target on smithi082 to 17265M 2024-09-20T19:08:30.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:30 smithi137 bash[25001]: audit 2024-09-20T19:08:29.170337+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:30 smithi137 bash[25001]: audit 2024-09-20T19:08:29.170337+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:30 smithi137 bash[25001]: audit 2024-09-20T19:08:29.183762+0000 mon.a (mon.0) 460 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:30.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:30 smithi137 bash[25001]: audit 2024-09-20T19:08:29.183762+0000 mon.a (mon.0) 460 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:30.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:30 smithi137 bash[25001]: audit 2024-09-20T19:08:29.185728+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:08:30.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:30 smithi137 bash[25001]: audit 2024-09-20T19:08:29.185728+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:08:30.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:30 smithi137 bash[25001]: audit 2024-09-20T19:08:29.195981+0000 mon.a (mon.0) 462 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:30.551 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:30 smithi137 bash[25001]: audit 2024-09-20T19:08:29.195981+0000 mon.a (mon.0) 462 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:08:31.935 INFO:teuthology.orchestra.run.smithi082.stdout: 2024-09-20T19:08:31.986 DEBUG:teuthology.orchestra.run.smithi082:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph orch daemon add osd smithi082:vg_nvme/lv_3 2024-09-20T19:08:32.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:32 smithi018 bash[22763]: cluster 2024-09-20T19:08:30.473716+0000 mgr.a (mgr.14152) 202 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:32.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:32 smithi018 bash[22763]: cluster 2024-09-20T19:08:30.473716+0000 mgr.a (mgr.14152) 202 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:32.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:32 smithi082 bash[24745]: cluster 2024-09-20T19:08:30.473716+0000 mgr.a (mgr.14152) 202 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:32.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:32 smithi082 bash[24745]: cluster 2024-09-20T19:08:30.473716+0000 mgr.a (mgr.14152) 202 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:32.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:32 smithi137 bash[25001]: cluster 2024-09-20T19:08:30.473716+0000 mgr.a (mgr.14152) 202 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:32.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:32 smithi137 bash[25001]: cluster 2024-09-20T19:08:30.473716+0000 mgr.a (mgr.14152) 202 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:34.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:34 smithi018 bash[22763]: cluster 2024-09-20T19:08:32.474360+0000 mgr.a (mgr.14152) 203 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:34.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:34 smithi018 bash[22763]: cluster 2024-09-20T19:08:32.474360+0000 mgr.a (mgr.14152) 203 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:34.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:34 smithi082 bash[24745]: cluster 2024-09-20T19:08:32.474360+0000 mgr.a (mgr.14152) 203 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:34.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:34 smithi082 bash[24745]: cluster 2024-09-20T19:08:32.474360+0000 mgr.a (mgr.14152) 203 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:34.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:34 smithi137 bash[25001]: cluster 2024-09-20T19:08:32.474360+0000 mgr.a (mgr.14152) 203 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:34.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:34 smithi137 bash[25001]: cluster 2024-09-20T19:08:32.474360+0000 mgr.a (mgr.14152) 203 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:36.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:36 smithi018 bash[22763]: cluster 2024-09-20T19:08:34.474986+0000 mgr.a (mgr.14152) 204 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:36.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:36 smithi018 bash[22763]: cluster 2024-09-20T19:08:34.474986+0000 mgr.a (mgr.14152) 204 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:36.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:36 smithi082 bash[24745]: cluster 2024-09-20T19:08:34.474986+0000 mgr.a (mgr.14152) 204 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:36.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:36 smithi082 bash[24745]: cluster 2024-09-20T19:08:34.474986+0000 mgr.a (mgr.14152) 204 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:36.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:36 smithi137 bash[25001]: cluster 2024-09-20T19:08:34.474986+0000 mgr.a (mgr.14152) 204 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:36.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:36 smithi137 bash[25001]: cluster 2024-09-20T19:08:34.474986+0000 mgr.a (mgr.14152) 204 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:36.727 INFO:teuthology.orchestra.run.smithi082.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.b/config 2024-09-20T19:08:38.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:38 smithi018 bash[22763]: cluster 2024-09-20T19:08:36.475628+0000 mgr.a (mgr.14152) 205 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:38.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:38 smithi018 bash[22763]: cluster 2024-09-20T19:08:36.475628+0000 mgr.a (mgr.14152) 205 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:38.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:38 smithi082 bash[24745]: cluster 2024-09-20T19:08:36.475628+0000 mgr.a (mgr.14152) 205 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:38.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:38 smithi082 bash[24745]: cluster 2024-09-20T19:08:36.475628+0000 mgr.a (mgr.14152) 205 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:38.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:38 smithi137 bash[25001]: cluster 2024-09-20T19:08:36.475628+0000 mgr.a (mgr.14152) 205 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:38.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:38 smithi137 bash[25001]: cluster 2024-09-20T19:08:36.475628+0000 mgr.a (mgr.14152) 205 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:39.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:39 smithi082 bash[24745]: audit 2024-09-20T19:08:38.183401+0000 mgr.a (mgr.14152) 206 : audit [DBG] from='client.24191 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi082:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:08:39.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:39 smithi082 bash[24745]: audit 2024-09-20T19:08:38.183401+0000 mgr.a (mgr.14152) 206 : audit [DBG] from='client.24191 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi082:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:08:39.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:39 smithi082 bash[24745]: audit 2024-09-20T19:08:38.189993+0000 mon.a (mon.0) 463 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:08:39.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:39 smithi082 bash[24745]: audit 2024-09-20T19:08:38.189993+0000 mon.a (mon.0) 463 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:08:39.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:39 smithi082 bash[24745]: audit 2024-09-20T19:08:38.196061+0000 mon.a (mon.0) 464 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:08:39.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:39 smithi082 bash[24745]: audit 2024-09-20T19:08:38.196061+0000 mon.a (mon.0) 464 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:08:39.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:39 smithi082 bash[24745]: audit 2024-09-20T19:08:38.197730+0000 mon.a (mon.0) 465 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:39.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:39 smithi082 bash[24745]: audit 2024-09-20T19:08:38.197730+0000 mon.a (mon.0) 465 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:39.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:39 smithi137 bash[25001]: audit 2024-09-20T19:08:38.183401+0000 mgr.a (mgr.14152) 206 : audit [DBG] from='client.24191 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi082:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:08:39.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:39 smithi137 bash[25001]: audit 2024-09-20T19:08:38.183401+0000 mgr.a (mgr.14152) 206 : audit [DBG] from='client.24191 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi082:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:08:39.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:39 smithi137 bash[25001]: audit 2024-09-20T19:08:38.189993+0000 mon.a (mon.0) 463 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:08:39.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:39 smithi137 bash[25001]: audit 2024-09-20T19:08:38.189993+0000 mon.a (mon.0) 463 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:08:39.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:39 smithi137 bash[25001]: audit 2024-09-20T19:08:38.196061+0000 mon.a (mon.0) 464 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:08:39.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:39 smithi137 bash[25001]: audit 2024-09-20T19:08:38.196061+0000 mon.a (mon.0) 464 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:08:39.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:39 smithi137 bash[25001]: audit 2024-09-20T19:08:38.197730+0000 mon.a (mon.0) 465 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:39.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:39 smithi137 bash[25001]: audit 2024-09-20T19:08:38.197730+0000 mon.a (mon.0) 465 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:39.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:39 smithi018 bash[22763]: audit 2024-09-20T19:08:38.183401+0000 mgr.a (mgr.14152) 206 : audit [DBG] from='client.24191 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi082:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:08:39.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:39 smithi018 bash[22763]: audit 2024-09-20T19:08:38.183401+0000 mgr.a (mgr.14152) 206 : audit [DBG] from='client.24191 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi082:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:08:39.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:39 smithi018 bash[22763]: audit 2024-09-20T19:08:38.189993+0000 mon.a (mon.0) 463 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:08:39.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:39 smithi018 bash[22763]: audit 2024-09-20T19:08:38.189993+0000 mon.a (mon.0) 463 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:08:39.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:39 smithi018 bash[22763]: audit 2024-09-20T19:08:38.196061+0000 mon.a (mon.0) 464 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:08:39.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:39 smithi018 bash[22763]: audit 2024-09-20T19:08:38.196061+0000 mon.a (mon.0) 464 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:08:39.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:39 smithi018 bash[22763]: audit 2024-09-20T19:08:38.197730+0000 mon.a (mon.0) 465 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:39.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:39 smithi018 bash[22763]: audit 2024-09-20T19:08:38.197730+0000 mon.a (mon.0) 465 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:08:40.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:40 smithi082 bash[24745]: cluster 2024-09-20T19:08:38.476214+0000 mgr.a (mgr.14152) 207 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:40.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:40 smithi082 bash[24745]: cluster 2024-09-20T19:08:38.476214+0000 mgr.a (mgr.14152) 207 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:40.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:40 smithi137 bash[25001]: cluster 2024-09-20T19:08:38.476214+0000 mgr.a (mgr.14152) 207 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:40.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:40 smithi137 bash[25001]: cluster 2024-09-20T19:08:38.476214+0000 mgr.a (mgr.14152) 207 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:40.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:40 smithi018 bash[22763]: cluster 2024-09-20T19:08:38.476214+0000 mgr.a (mgr.14152) 207 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:40.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:40 smithi018 bash[22763]: cluster 2024-09-20T19:08:38.476214+0000 mgr.a (mgr.14152) 207 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:42.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:42 smithi082 bash[24745]: cluster 2024-09-20T19:08:40.476718+0000 mgr.a (mgr.14152) 208 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:42.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:42 smithi082 bash[24745]: cluster 2024-09-20T19:08:40.476718+0000 mgr.a (mgr.14152) 208 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:42.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:42 smithi137 bash[25001]: cluster 2024-09-20T19:08:40.476718+0000 mgr.a (mgr.14152) 208 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:42.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:42 smithi137 bash[25001]: cluster 2024-09-20T19:08:40.476718+0000 mgr.a (mgr.14152) 208 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:42.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:42 smithi018 bash[22763]: cluster 2024-09-20T19:08:40.476718+0000 mgr.a (mgr.14152) 208 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:42.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:42 smithi018 bash[22763]: cluster 2024-09-20T19:08:40.476718+0000 mgr.a (mgr.14152) 208 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:44.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:44 smithi082 bash[24745]: cluster 2024-09-20T19:08:42.477284+0000 mgr.a (mgr.14152) 209 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:44.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:44 smithi082 bash[24745]: cluster 2024-09-20T19:08:42.477284+0000 mgr.a (mgr.14152) 209 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:44.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:44 smithi137 bash[25001]: cluster 2024-09-20T19:08:42.477284+0000 mgr.a (mgr.14152) 209 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:44.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:44 smithi137 bash[25001]: cluster 2024-09-20T19:08:42.477284+0000 mgr.a (mgr.14152) 209 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:44.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:44 smithi018 bash[22763]: cluster 2024-09-20T19:08:42.477284+0000 mgr.a (mgr.14152) 209 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:44.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:44 smithi018 bash[22763]: cluster 2024-09-20T19:08:42.477284+0000 mgr.a (mgr.14152) 209 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:46.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:46 smithi082 bash[24745]: cluster 2024-09-20T19:08:44.477775+0000 mgr.a (mgr.14152) 210 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:46.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:46 smithi082 bash[24745]: cluster 2024-09-20T19:08:44.477775+0000 mgr.a (mgr.14152) 210 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:46.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:46 smithi137 bash[25001]: cluster 2024-09-20T19:08:44.477775+0000 mgr.a (mgr.14152) 210 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:46.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:46 smithi137 bash[25001]: cluster 2024-09-20T19:08:44.477775+0000 mgr.a (mgr.14152) 210 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:46.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:46 smithi018 bash[22763]: cluster 2024-09-20T19:08:44.477775+0000 mgr.a (mgr.14152) 210 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:46.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:46 smithi018 bash[22763]: cluster 2024-09-20T19:08:44.477775+0000 mgr.a (mgr.14152) 210 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:47.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:47 smithi137 bash[25001]: audit 2024-09-20T19:08:46.724377+0000 mon.a (mon.0) 466 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "295cbee2-aa2e-4316-a875-a966aaece7e9"} : dispatch 2024-09-20T19:08:47.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:47 smithi137 bash[25001]: audit 2024-09-20T19:08:46.724377+0000 mon.a (mon.0) 466 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "295cbee2-aa2e-4316-a875-a966aaece7e9"} : dispatch 2024-09-20T19:08:47.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:47 smithi137 bash[25001]: audit 2024-09-20T19:08:46.726239+0000 mon.b (mon.2) 13 : audit [INF] from='client.? 172.21.15.82:0/374267152' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "295cbee2-aa2e-4316-a875-a966aaece7e9"} : dispatch 2024-09-20T19:08:47.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:47 smithi137 bash[25001]: audit 2024-09-20T19:08:46.726239+0000 mon.b (mon.2) 13 : audit [INF] from='client.? 172.21.15.82:0/374267152' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "295cbee2-aa2e-4316-a875-a966aaece7e9"} : dispatch 2024-09-20T19:08:47.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:47 smithi137 bash[25001]: audit 2024-09-20T19:08:46.728033+0000 mon.a (mon.0) 467 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "295cbee2-aa2e-4316-a875-a966aaece7e9"}]': finished 2024-09-20T19:08:47.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:47 smithi137 bash[25001]: audit 2024-09-20T19:08:46.728033+0000 mon.a (mon.0) 467 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "295cbee2-aa2e-4316-a875-a966aaece7e9"}]': finished 2024-09-20T19:08:47.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:47 smithi137 bash[25001]: cluster 2024-09-20T19:08:46.733547+0000 mon.a (mon.0) 468 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-20T19:08:47.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:47 smithi137 bash[25001]: cluster 2024-09-20T19:08:46.733547+0000 mon.a (mon.0) 468 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-20T19:08:47.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:47 smithi137 bash[25001]: audit 2024-09-20T19:08:46.734211+0000 mon.a (mon.0) 469 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:08:47.550 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:47 smithi137 bash[25001]: audit 2024-09-20T19:08:46.734211+0000 mon.a (mon.0) 469 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:08:47.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:47 smithi018 bash[22763]: audit 2024-09-20T19:08:46.724377+0000 mon.a (mon.0) 466 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "295cbee2-aa2e-4316-a875-a966aaece7e9"} : dispatch 2024-09-20T19:08:47.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:47 smithi018 bash[22763]: audit 2024-09-20T19:08:46.724377+0000 mon.a (mon.0) 466 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "295cbee2-aa2e-4316-a875-a966aaece7e9"} : dispatch 2024-09-20T19:08:47.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:47 smithi018 bash[22763]: audit 2024-09-20T19:08:46.726239+0000 mon.b (mon.2) 13 : audit [INF] from='client.? 172.21.15.82:0/374267152' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "295cbee2-aa2e-4316-a875-a966aaece7e9"} : dispatch 2024-09-20T19:08:47.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:47 smithi018 bash[22763]: audit 2024-09-20T19:08:46.726239+0000 mon.b (mon.2) 13 : audit [INF] from='client.? 172.21.15.82:0/374267152' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "295cbee2-aa2e-4316-a875-a966aaece7e9"} : dispatch 2024-09-20T19:08:47.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:47 smithi018 bash[22763]: audit 2024-09-20T19:08:46.728033+0000 mon.a (mon.0) 467 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "295cbee2-aa2e-4316-a875-a966aaece7e9"}]': finished 2024-09-20T19:08:47.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:47 smithi018 bash[22763]: audit 2024-09-20T19:08:46.728033+0000 mon.a (mon.0) 467 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "295cbee2-aa2e-4316-a875-a966aaece7e9"}]': finished 2024-09-20T19:08:47.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:47 smithi018 bash[22763]: cluster 2024-09-20T19:08:46.733547+0000 mon.a (mon.0) 468 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-20T19:08:47.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:47 smithi018 bash[22763]: cluster 2024-09-20T19:08:46.733547+0000 mon.a (mon.0) 468 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-20T19:08:47.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:47 smithi018 bash[22763]: audit 2024-09-20T19:08:46.734211+0000 mon.a (mon.0) 469 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:08:47.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:47 smithi018 bash[22763]: audit 2024-09-20T19:08:46.734211+0000 mon.a (mon.0) 469 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:08:47.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:47 smithi082 bash[24745]: audit 2024-09-20T19:08:46.724377+0000 mon.a (mon.0) 466 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "295cbee2-aa2e-4316-a875-a966aaece7e9"} : dispatch 2024-09-20T19:08:47.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:47 smithi082 bash[24745]: audit 2024-09-20T19:08:46.724377+0000 mon.a (mon.0) 466 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "295cbee2-aa2e-4316-a875-a966aaece7e9"} : dispatch 2024-09-20T19:08:47.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:47 smithi082 bash[24745]: audit 2024-09-20T19:08:46.726239+0000 mon.b (mon.2) 13 : audit [INF] from='client.? 172.21.15.82:0/374267152' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "295cbee2-aa2e-4316-a875-a966aaece7e9"} : dispatch 2024-09-20T19:08:47.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:47 smithi082 bash[24745]: audit 2024-09-20T19:08:46.726239+0000 mon.b (mon.2) 13 : audit [INF] from='client.? 172.21.15.82:0/374267152' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "295cbee2-aa2e-4316-a875-a966aaece7e9"} : dispatch 2024-09-20T19:08:47.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:47 smithi082 bash[24745]: audit 2024-09-20T19:08:46.728033+0000 mon.a (mon.0) 467 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "295cbee2-aa2e-4316-a875-a966aaece7e9"}]': finished 2024-09-20T19:08:47.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:47 smithi082 bash[24745]: audit 2024-09-20T19:08:46.728033+0000 mon.a (mon.0) 467 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "295cbee2-aa2e-4316-a875-a966aaece7e9"}]': finished 2024-09-20T19:08:47.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:47 smithi082 bash[24745]: cluster 2024-09-20T19:08:46.733547+0000 mon.a (mon.0) 468 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-20T19:08:47.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:47 smithi082 bash[24745]: cluster 2024-09-20T19:08:46.733547+0000 mon.a (mon.0) 468 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-20T19:08:47.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:47 smithi082 bash[24745]: audit 2024-09-20T19:08:46.734211+0000 mon.a (mon.0) 469 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:08:47.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:47 smithi082 bash[24745]: audit 2024-09-20T19:08:46.734211+0000 mon.a (mon.0) 469 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:08:48.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:48 smithi137 bash[25001]: cluster 2024-09-20T19:08:46.478304+0000 mgr.a (mgr.14152) 211 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:48.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:48 smithi137 bash[25001]: cluster 2024-09-20T19:08:46.478304+0000 mgr.a (mgr.14152) 211 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:48.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:48 smithi137 bash[25001]: audit 2024-09-20T19:08:47.382627+0000 mon.b (mon.2) 14 : audit [DBG] from='client.? 172.21.15.82:0/1012844651' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:08:48.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:48 smithi137 bash[25001]: audit 2024-09-20T19:08:47.382627+0000 mon.b (mon.2) 14 : audit [DBG] from='client.? 172.21.15.82:0/1012844651' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:08:48.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:48 smithi018 bash[22763]: cluster 2024-09-20T19:08:46.478304+0000 mgr.a (mgr.14152) 211 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:48.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:48 smithi018 bash[22763]: cluster 2024-09-20T19:08:46.478304+0000 mgr.a (mgr.14152) 211 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:48.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:48 smithi018 bash[22763]: audit 2024-09-20T19:08:47.382627+0000 mon.b (mon.2) 14 : audit [DBG] from='client.? 172.21.15.82:0/1012844651' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:08:48.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:48 smithi018 bash[22763]: audit 2024-09-20T19:08:47.382627+0000 mon.b (mon.2) 14 : audit [DBG] from='client.? 172.21.15.82:0/1012844651' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:08:48.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:48 smithi082 bash[24745]: cluster 2024-09-20T19:08:46.478304+0000 mgr.a (mgr.14152) 211 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:48.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:48 smithi082 bash[24745]: cluster 2024-09-20T19:08:46.478304+0000 mgr.a (mgr.14152) 211 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:48.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:48 smithi082 bash[24745]: audit 2024-09-20T19:08:47.382627+0000 mon.b (mon.2) 14 : audit [DBG] from='client.? 172.21.15.82:0/1012844651' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:08:48.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:48 smithi082 bash[24745]: audit 2024-09-20T19:08:47.382627+0000 mon.b (mon.2) 14 : audit [DBG] from='client.? 172.21.15.82:0/1012844651' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:08:50.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:50 smithi137 bash[25001]: cluster 2024-09-20T19:08:48.478837+0000 mgr.a (mgr.14152) 212 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:50.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:50 smithi137 bash[25001]: cluster 2024-09-20T19:08:48.478837+0000 mgr.a (mgr.14152) 212 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:50.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:50 smithi018 bash[22763]: cluster 2024-09-20T19:08:48.478837+0000 mgr.a (mgr.14152) 212 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:50.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:50 smithi018 bash[22763]: cluster 2024-09-20T19:08:48.478837+0000 mgr.a (mgr.14152) 212 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:50.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:50 smithi082 bash[24745]: cluster 2024-09-20T19:08:48.478837+0000 mgr.a (mgr.14152) 212 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:50.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:50 smithi082 bash[24745]: cluster 2024-09-20T19:08:48.478837+0000 mgr.a (mgr.14152) 212 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:52.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:52 smithi137 bash[25001]: cluster 2024-09-20T19:08:50.479356+0000 mgr.a (mgr.14152) 213 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:52.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:52 smithi137 bash[25001]: cluster 2024-09-20T19:08:50.479356+0000 mgr.a (mgr.14152) 213 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:52.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:52 smithi018 bash[22763]: cluster 2024-09-20T19:08:50.479356+0000 mgr.a (mgr.14152) 213 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:52.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:52 smithi018 bash[22763]: cluster 2024-09-20T19:08:50.479356+0000 mgr.a (mgr.14152) 213 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:52.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:52 smithi082 bash[24745]: cluster 2024-09-20T19:08:50.479356+0000 mgr.a (mgr.14152) 213 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:52.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:52 smithi082 bash[24745]: cluster 2024-09-20T19:08:50.479356+0000 mgr.a (mgr.14152) 213 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:54.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:54 smithi137 bash[25001]: cluster 2024-09-20T19:08:52.479892+0000 mgr.a (mgr.14152) 214 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:54.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:54 smithi137 bash[25001]: cluster 2024-09-20T19:08:52.479892+0000 mgr.a (mgr.14152) 214 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:54.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:54 smithi018 bash[22763]: cluster 2024-09-20T19:08:52.479892+0000 mgr.a (mgr.14152) 214 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:54.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:54 smithi018 bash[22763]: cluster 2024-09-20T19:08:52.479892+0000 mgr.a (mgr.14152) 214 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:54.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:54 smithi082 bash[24745]: cluster 2024-09-20T19:08:52.479892+0000 mgr.a (mgr.14152) 214 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:54.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:54 smithi082 bash[24745]: cluster 2024-09-20T19:08:52.479892+0000 mgr.a (mgr.14152) 214 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:56.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:56 smithi137 bash[25001]: cluster 2024-09-20T19:08:54.480423+0000 mgr.a (mgr.14152) 215 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:56.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:56 smithi137 bash[25001]: cluster 2024-09-20T19:08:54.480423+0000 mgr.a (mgr.14152) 215 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:56.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:56 smithi018 bash[22763]: cluster 2024-09-20T19:08:54.480423+0000 mgr.a (mgr.14152) 215 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:56.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:56 smithi018 bash[22763]: cluster 2024-09-20T19:08:54.480423+0000 mgr.a (mgr.14152) 215 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:56.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:56 smithi082 bash[24745]: cluster 2024-09-20T19:08:54.480423+0000 mgr.a (mgr.14152) 215 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:56.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:56 smithi082 bash[24745]: cluster 2024-09-20T19:08:54.480423+0000 mgr.a (mgr.14152) 215 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:57.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:57 smithi137 bash[25001]: cluster 2024-09-20T19:08:56.480957+0000 mgr.a (mgr.14152) 216 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:57.549 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:57 smithi137 bash[25001]: cluster 2024-09-20T19:08:56.480957+0000 mgr.a (mgr.14152) 216 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:57.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:57 smithi018 bash[22763]: cluster 2024-09-20T19:08:56.480957+0000 mgr.a (mgr.14152) 216 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:57.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:57 smithi018 bash[22763]: cluster 2024-09-20T19:08:56.480957+0000 mgr.a (mgr.14152) 216 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:57.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:57 smithi082 bash[24745]: cluster 2024-09-20T19:08:56.480957+0000 mgr.a (mgr.14152) 216 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:57.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:57 smithi082 bash[24745]: cluster 2024-09-20T19:08:56.480957+0000 mgr.a (mgr.14152) 216 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:59.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:59 smithi137 bash[25001]: cluster 2024-09-20T19:08:58.481519+0000 mgr.a (mgr.14152) 217 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:59.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:08:59 smithi137 bash[25001]: cluster 2024-09-20T19:08:58.481519+0000 mgr.a (mgr.14152) 217 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:59.856 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:59 smithi082 bash[24745]: cluster 2024-09-20T19:08:58.481519+0000 mgr.a (mgr.14152) 217 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:59.856 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:08:59 smithi082 bash[24745]: cluster 2024-09-20T19:08:58.481519+0000 mgr.a (mgr.14152) 217 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:59.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:59 smithi018 bash[22763]: cluster 2024-09-20T19:08:58.481519+0000 mgr.a (mgr.14152) 217 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:08:59.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:08:59 smithi018 bash[22763]: cluster 2024-09-20T19:08:58.481519+0000 mgr.a (mgr.14152) 217 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:01.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:01 smithi137 bash[25001]: cluster 2024-09-20T19:09:00.482015+0000 mgr.a (mgr.14152) 218 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:01.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:01 smithi137 bash[25001]: cluster 2024-09-20T19:09:00.482015+0000 mgr.a (mgr.14152) 218 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:01.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:01 smithi137 bash[25001]: audit 2024-09-20T19:09:00.575558+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-20T19:09:01.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:01 smithi137 bash[25001]: audit 2024-09-20T19:09:00.575558+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-20T19:09:01.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:01 smithi137 bash[25001]: audit 2024-09-20T19:09:00.577391+0000 mon.a (mon.0) 471 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:01.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:01 smithi137 bash[25001]: audit 2024-09-20T19:09:00.577391+0000 mon.a (mon.0) 471 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:01.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:01 smithi137 bash[25001]: cephadm 2024-09-20T19:09:00.578997+0000 mgr.a (mgr.14152) 219 : cephadm [INF] Deploying daemon osd.3 on smithi082 2024-09-20T19:09:01.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:01 smithi137 bash[25001]: cephadm 2024-09-20T19:09:00.578997+0000 mgr.a (mgr.14152) 219 : cephadm [INF] Deploying daemon osd.3 on smithi082 2024-09-20T19:09:01.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:01 smithi018 bash[22763]: cluster 2024-09-20T19:09:00.482015+0000 mgr.a (mgr.14152) 218 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:01.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:01 smithi018 bash[22763]: cluster 2024-09-20T19:09:00.482015+0000 mgr.a (mgr.14152) 218 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:01.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:01 smithi018 bash[22763]: audit 2024-09-20T19:09:00.575558+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-20T19:09:01.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:01 smithi018 bash[22763]: audit 2024-09-20T19:09:00.575558+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-20T19:09:01.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:01 smithi018 bash[22763]: audit 2024-09-20T19:09:00.577391+0000 mon.a (mon.0) 471 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:01.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:01 smithi018 bash[22763]: audit 2024-09-20T19:09:00.577391+0000 mon.a (mon.0) 471 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:01.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:01 smithi018 bash[22763]: cephadm 2024-09-20T19:09:00.578997+0000 mgr.a (mgr.14152) 219 : cephadm [INF] Deploying daemon osd.3 on smithi082 2024-09-20T19:09:01.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:01 smithi018 bash[22763]: cephadm 2024-09-20T19:09:00.578997+0000 mgr.a (mgr.14152) 219 : cephadm [INF] Deploying daemon osd.3 on smithi082 2024-09-20T19:09:01.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:01 smithi082 bash[24745]: cluster 2024-09-20T19:09:00.482015+0000 mgr.a (mgr.14152) 218 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:01.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:01 smithi082 bash[24745]: cluster 2024-09-20T19:09:00.482015+0000 mgr.a (mgr.14152) 218 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:01.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:01 smithi082 bash[24745]: audit 2024-09-20T19:09:00.575558+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-20T19:09:01.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:01 smithi082 bash[24745]: audit 2024-09-20T19:09:00.575558+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-20T19:09:01.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:01 smithi082 bash[24745]: audit 2024-09-20T19:09:00.577391+0000 mon.a (mon.0) 471 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:01.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:01 smithi082 bash[24745]: audit 2024-09-20T19:09:00.577391+0000 mon.a (mon.0) 471 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:01.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:01 smithi082 bash[24745]: cephadm 2024-09-20T19:09:00.578997+0000 mgr.a (mgr.14152) 219 : cephadm [INF] Deploying daemon osd.3 on smithi082 2024-09-20T19:09:01.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:01 smithi082 bash[24745]: cephadm 2024-09-20T19:09:00.578997+0000 mgr.a (mgr.14152) 219 : cephadm [INF] Deploying daemon osd.3 on smithi082 2024-09-20T19:09:03.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:03 smithi137 bash[25001]: cluster 2024-09-20T19:09:02.482536+0000 mgr.a (mgr.14152) 220 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:03.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:03 smithi137 bash[25001]: cluster 2024-09-20T19:09:02.482536+0000 mgr.a (mgr.14152) 220 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:03.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:03 smithi018 bash[22763]: cluster 2024-09-20T19:09:02.482536+0000 mgr.a (mgr.14152) 220 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:03.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:03 smithi018 bash[22763]: cluster 2024-09-20T19:09:02.482536+0000 mgr.a (mgr.14152) 220 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:03.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:03 smithi082 bash[24745]: cluster 2024-09-20T19:09:02.482536+0000 mgr.a (mgr.14152) 220 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:03.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:03 smithi082 bash[24745]: cluster 2024-09-20T19:09:02.482536+0000 mgr.a (mgr.14152) 220 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:05.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:05 smithi082 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:09:05.447 INFO:journalctl@ceph.mgr.b.smithi082.stdout:Sep 20 19:09:05 smithi082 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:09:05.448 INFO:journalctl@ceph.osd.2.smithi082.stdout:Sep 20 19:09:05 smithi082 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:09:05.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:05 smithi018 bash[22763]: cluster 2024-09-20T19:09:04.483059+0000 mgr.a (mgr.14152) 221 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:05.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:05 smithi018 bash[22763]: cluster 2024-09-20T19:09:04.483059+0000 mgr.a (mgr.14152) 221 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:05.947 INFO:journalctl@ceph.mgr.b.smithi082.stdout:Sep 20 19:09:05 smithi082 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:09:05.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:05 smithi082 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:09:05.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:05 smithi082 bash[24745]: cluster 2024-09-20T19:09:04.483059+0000 mgr.a (mgr.14152) 221 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:05.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:05 smithi082 bash[24745]: cluster 2024-09-20T19:09:04.483059+0000 mgr.a (mgr.14152) 221 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:05.948 INFO:journalctl@ceph.osd.2.smithi082.stdout:Sep 20 19:09:05 smithi082 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:09:06.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:05 smithi137 bash[25001]: cluster 2024-09-20T19:09:04.483059+0000 mgr.a (mgr.14152) 221 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:06.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:05 smithi137 bash[25001]: cluster 2024-09-20T19:09:04.483059+0000 mgr.a (mgr.14152) 221 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:06.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:06 smithi018 bash[22763]: audit 2024-09-20T19:09:05.615381+0000 mon.a (mon.0) 472 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:09:06.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:06 smithi018 bash[22763]: audit 2024-09-20T19:09:05.615381+0000 mon.a (mon.0) 472 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:09:06.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:06 smithi018 bash[22763]: audit 2024-09-20T19:09:05.622636+0000 mon.a (mon.0) 473 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:06.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:06 smithi018 bash[22763]: audit 2024-09-20T19:09:05.622636+0000 mon.a (mon.0) 473 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:06.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:06 smithi018 bash[22763]: audit 2024-09-20T19:09:05.630452+0000 mon.a (mon.0) 474 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:06.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:06 smithi018 bash[22763]: audit 2024-09-20T19:09:05.630452+0000 mon.a (mon.0) 474 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:06.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:06 smithi082 bash[24745]: audit 2024-09-20T19:09:05.615381+0000 mon.a (mon.0) 472 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:09:06.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:06 smithi082 bash[24745]: audit 2024-09-20T19:09:05.615381+0000 mon.a (mon.0) 472 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:09:06.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:06 smithi082 bash[24745]: audit 2024-09-20T19:09:05.622636+0000 mon.a (mon.0) 473 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:06.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:06 smithi082 bash[24745]: audit 2024-09-20T19:09:05.622636+0000 mon.a (mon.0) 473 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:06.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:06 smithi082 bash[24745]: audit 2024-09-20T19:09:05.630452+0000 mon.a (mon.0) 474 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:06.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:06 smithi082 bash[24745]: audit 2024-09-20T19:09:05.630452+0000 mon.a (mon.0) 474 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:07.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:06 smithi137 bash[25001]: audit 2024-09-20T19:09:05.615381+0000 mon.a (mon.0) 472 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:09:07.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:06 smithi137 bash[25001]: audit 2024-09-20T19:09:05.615381+0000 mon.a (mon.0) 472 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:09:07.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:06 smithi137 bash[25001]: audit 2024-09-20T19:09:05.622636+0000 mon.a (mon.0) 473 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:07.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:06 smithi137 bash[25001]: audit 2024-09-20T19:09:05.622636+0000 mon.a (mon.0) 473 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:07.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:06 smithi137 bash[25001]: audit 2024-09-20T19:09:05.630452+0000 mon.a (mon.0) 474 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:07.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:06 smithi137 bash[25001]: audit 2024-09-20T19:09:05.630452+0000 mon.a (mon.0) 474 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:07.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:07 smithi018 bash[22763]: cluster 2024-09-20T19:09:06.483574+0000 mgr.a (mgr.14152) 222 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:07.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:07 smithi018 bash[22763]: cluster 2024-09-20T19:09:06.483574+0000 mgr.a (mgr.14152) 222 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:07.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:07 smithi082 bash[24745]: cluster 2024-09-20T19:09:06.483574+0000 mgr.a (mgr.14152) 222 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:07.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:07 smithi082 bash[24745]: cluster 2024-09-20T19:09:06.483574+0000 mgr.a (mgr.14152) 222 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:08.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:07 smithi137 bash[25001]: cluster 2024-09-20T19:09:06.483574+0000 mgr.a (mgr.14152) 222 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:08.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:07 smithi137 bash[25001]: cluster 2024-09-20T19:09:06.483574+0000 mgr.a (mgr.14152) 222 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:09.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:09 smithi018 bash[22763]: cluster 2024-09-20T19:09:08.484067+0000 mgr.a (mgr.14152) 223 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:09.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:09 smithi018 bash[22763]: cluster 2024-09-20T19:09:08.484067+0000 mgr.a (mgr.14152) 223 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:09.929 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:09 smithi082 bash[24745]: cluster 2024-09-20T19:09:08.484067+0000 mgr.a (mgr.14152) 223 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:09.929 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:09 smithi082 bash[24745]: cluster 2024-09-20T19:09:08.484067+0000 mgr.a (mgr.14152) 223 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:10.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:09 smithi137 bash[25001]: cluster 2024-09-20T19:09:08.484067+0000 mgr.a (mgr.14152) 223 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:10.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:09 smithi137 bash[25001]: cluster 2024-09-20T19:09:08.484067+0000 mgr.a (mgr.14152) 223 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:12.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:11 smithi137 bash[25001]: cluster 2024-09-20T19:09:10.484575+0000 mgr.a (mgr.14152) 224 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:12.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:11 smithi137 bash[25001]: cluster 2024-09-20T19:09:10.484575+0000 mgr.a (mgr.14152) 224 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:12.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:11 smithi137 bash[25001]: audit 2024-09-20T19:09:10.971283+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:12.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:11 smithi137 bash[25001]: audit 2024-09-20T19:09:10.971283+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:12.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:11 smithi137 bash[25001]: audit 2024-09-20T19:09:10.979800+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:12.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:11 smithi137 bash[25001]: audit 2024-09-20T19:09:10.979800+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:12.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:11 smithi137 bash[25001]: audit 2024-09-20T19:09:10.981767+0000 mon.a (mon.0) 477 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:12.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:11 smithi137 bash[25001]: audit 2024-09-20T19:09:10.981767+0000 mon.a (mon.0) 477 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:12.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:11 smithi137 bash[25001]: audit 2024-09-20T19:09:10.983637+0000 mon.a (mon.0) 478 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:09:12.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:11 smithi137 bash[25001]: audit 2024-09-20T19:09:10.983637+0000 mon.a (mon.0) 478 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:09:12.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:11 smithi137 bash[25001]: audit 2024-09-20T19:09:10.993430+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:12.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:11 smithi137 bash[25001]: audit 2024-09-20T19:09:10.993430+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:12.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:11 smithi018 bash[22763]: cluster 2024-09-20T19:09:10.484575+0000 mgr.a (mgr.14152) 224 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:12.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:11 smithi018 bash[22763]: cluster 2024-09-20T19:09:10.484575+0000 mgr.a (mgr.14152) 224 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:12.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:11 smithi018 bash[22763]: audit 2024-09-20T19:09:10.971283+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:12.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:11 smithi018 bash[22763]: audit 2024-09-20T19:09:10.971283+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:12.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:11 smithi018 bash[22763]: audit 2024-09-20T19:09:10.979800+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:12.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:11 smithi018 bash[22763]: audit 2024-09-20T19:09:10.979800+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:12.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:11 smithi018 bash[22763]: audit 2024-09-20T19:09:10.981767+0000 mon.a (mon.0) 477 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:12.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:11 smithi018 bash[22763]: audit 2024-09-20T19:09:10.981767+0000 mon.a (mon.0) 477 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:12.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:11 smithi018 bash[22763]: audit 2024-09-20T19:09:10.983637+0000 mon.a (mon.0) 478 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:09:12.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:11 smithi018 bash[22763]: audit 2024-09-20T19:09:10.983637+0000 mon.a (mon.0) 478 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:09:12.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:11 smithi018 bash[22763]: audit 2024-09-20T19:09:10.993430+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:12.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:11 smithi018 bash[22763]: audit 2024-09-20T19:09:10.993430+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:12.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:11 smithi082 bash[24745]: cluster 2024-09-20T19:09:10.484575+0000 mgr.a (mgr.14152) 224 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:12.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:11 smithi082 bash[24745]: cluster 2024-09-20T19:09:10.484575+0000 mgr.a (mgr.14152) 224 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:12.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:11 smithi082 bash[24745]: audit 2024-09-20T19:09:10.971283+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:12.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:11 smithi082 bash[24745]: audit 2024-09-20T19:09:10.971283+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:12.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:11 smithi082 bash[24745]: audit 2024-09-20T19:09:10.979800+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:12.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:11 smithi082 bash[24745]: audit 2024-09-20T19:09:10.979800+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:12.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:11 smithi082 bash[24745]: audit 2024-09-20T19:09:10.981767+0000 mon.a (mon.0) 477 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:12.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:11 smithi082 bash[24745]: audit 2024-09-20T19:09:10.981767+0000 mon.a (mon.0) 477 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:12.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:11 smithi082 bash[24745]: audit 2024-09-20T19:09:10.983637+0000 mon.a (mon.0) 478 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:09:12.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:11 smithi082 bash[24745]: audit 2024-09-20T19:09:10.983637+0000 mon.a (mon.0) 478 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:09:12.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:11 smithi082 bash[24745]: audit 2024-09-20T19:09:10.993430+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:12.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:11 smithi082 bash[24745]: audit 2024-09-20T19:09:10.993430+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:14.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:13 smithi137 bash[25001]: cluster 2024-09-20T19:09:12.485118+0000 mgr.a (mgr.14152) 225 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:14.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:13 smithi137 bash[25001]: cluster 2024-09-20T19:09:12.485118+0000 mgr.a (mgr.14152) 225 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:14.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:13 smithi018 bash[22763]: cluster 2024-09-20T19:09:12.485118+0000 mgr.a (mgr.14152) 225 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:14.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:13 smithi018 bash[22763]: cluster 2024-09-20T19:09:12.485118+0000 mgr.a (mgr.14152) 225 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:14.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:13 smithi082 bash[24745]: cluster 2024-09-20T19:09:12.485118+0000 mgr.a (mgr.14152) 225 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:14.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:13 smithi082 bash[24745]: cluster 2024-09-20T19:09:12.485118+0000 mgr.a (mgr.14152) 225 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:16.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:15 smithi137 bash[25001]: cluster 2024-09-20T19:09:14.485701+0000 mgr.a (mgr.14152) 226 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:16.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:15 smithi137 bash[25001]: cluster 2024-09-20T19:09:14.485701+0000 mgr.a (mgr.14152) 226 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:16.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:15 smithi018 bash[22763]: cluster 2024-09-20T19:09:14.485701+0000 mgr.a (mgr.14152) 226 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:16.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:15 smithi018 bash[22763]: cluster 2024-09-20T19:09:14.485701+0000 mgr.a (mgr.14152) 226 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:16.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:15 smithi082 bash[24745]: cluster 2024-09-20T19:09:14.485701+0000 mgr.a (mgr.14152) 226 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:16.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:15 smithi082 bash[24745]: cluster 2024-09-20T19:09:14.485701+0000 mgr.a (mgr.14152) 226 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:18.117 INFO:teuthology.orchestra.run.smithi082.stdout:Created osd(s) 3 on host 'smithi082' 2024-09-20T19:09:18.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:17 smithi137 bash[25001]: cluster 2024-09-20T19:09:16.486248+0000 mgr.a (mgr.14152) 227 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:18.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:17 smithi137 bash[25001]: cluster 2024-09-20T19:09:16.486248+0000 mgr.a (mgr.14152) 227 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:18.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:17 smithi137 bash[25001]: audit 2024-09-20T19:09:17.303267+0000 mon.a (mon.0) 480 : audit [INF] from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-20T19:09:18.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:17 smithi137 bash[25001]: audit 2024-09-20T19:09:17.303267+0000 mon.a (mon.0) 480 : audit [INF] from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-20T19:09:18.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:17 smithi137 bash[25001]: audit 2024-09-20T19:09:17.305211+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.82:6808/1698195735,v1:172.21.15.82:6809/1698195735]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-20T19:09:18.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:17 smithi137 bash[25001]: audit 2024-09-20T19:09:17.305211+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.82:6808/1698195735,v1:172.21.15.82:6809/1698195735]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-20T19:09:18.350 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:17 smithi082 bash[24745]: cluster 2024-09-20T19:09:16.486248+0000 mgr.a (mgr.14152) 227 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:18.350 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:17 smithi082 bash[24745]: cluster 2024-09-20T19:09:16.486248+0000 mgr.a (mgr.14152) 227 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:18.350 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:17 smithi082 bash[24745]: audit 2024-09-20T19:09:17.303267+0000 mon.a (mon.0) 480 : audit [INF] from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-20T19:09:18.350 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:17 smithi082 bash[24745]: audit 2024-09-20T19:09:17.303267+0000 mon.a (mon.0) 480 : audit [INF] from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-20T19:09:18.350 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:17 smithi082 bash[24745]: audit 2024-09-20T19:09:17.305211+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.82:6808/1698195735,v1:172.21.15.82:6809/1698195735]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-20T19:09:18.350 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:17 smithi082 bash[24745]: audit 2024-09-20T19:09:17.305211+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.82:6808/1698195735,v1:172.21.15.82:6809/1698195735]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-20T19:09:18.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:17 smithi018 bash[22763]: cluster 2024-09-20T19:09:16.486248+0000 mgr.a (mgr.14152) 227 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:18.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:17 smithi018 bash[22763]: cluster 2024-09-20T19:09:16.486248+0000 mgr.a (mgr.14152) 227 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:18.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:17 smithi018 bash[22763]: audit 2024-09-20T19:09:17.303267+0000 mon.a (mon.0) 480 : audit [INF] from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-20T19:09:18.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:17 smithi018 bash[22763]: audit 2024-09-20T19:09:17.303267+0000 mon.a (mon.0) 480 : audit [INF] from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-20T19:09:18.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:17 smithi018 bash[22763]: audit 2024-09-20T19:09:17.305211+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.82:6808/1698195735,v1:172.21.15.82:6809/1698195735]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-20T19:09:18.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:17 smithi018 bash[22763]: audit 2024-09-20T19:09:17.305211+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.82:6808/1698195735,v1:172.21.15.82:6809/1698195735]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-20T19:09:18.784 DEBUG:teuthology.orchestra.run.smithi082:osd.3> sudo journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@osd.3.service 2024-09-20T19:09:18.786 INFO:tasks.cephadm:Deploying osd.4 on smithi137 with /dev/vg_nvme/lv_4... 2024-09-20T19:09:18.787 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- lvm zap /dev/vg_nvme/lv_4 2024-09-20T19:09:19.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:19 smithi137 bash[25001]: audit 2024-09-20T19:09:17.989703+0000 mon.a (mon.0) 481 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-20T19:09:19.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:19 smithi137 bash[25001]: audit 2024-09-20T19:09:17.989703+0000 mon.a (mon.0) 481 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-20T19:09:19.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:19 smithi137 bash[25001]: cluster 2024-09-20T19:09:17.994359+0000 mon.a (mon.0) 482 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-20T19:09:19.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:19 smithi137 bash[25001]: cluster 2024-09-20T19:09:17.994359+0000 mon.a (mon.0) 482 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-20T19:09:19.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:19 smithi137 bash[25001]: audit 2024-09-20T19:09:17.994947+0000 mon.a (mon.0) 483 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:19.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:19 smithi137 bash[25001]: audit 2024-09-20T19:09:17.994947+0000 mon.a (mon.0) 483 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:19.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:19 smithi137 bash[25001]: audit 2024-09-20T19:09:17.996375+0000 mon.a (mon.0) 484 : audit [INF] from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:09:19.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:19 smithi137 bash[25001]: audit 2024-09-20T19:09:17.996375+0000 mon.a (mon.0) 484 : audit [INF] from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:09:19.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:19 smithi137 bash[25001]: audit 2024-09-20T19:09:17.998441+0000 mon.b (mon.2) 16 : audit [INF] from='osd.3 [v2:172.21.15.82:6808/1698195735,v1:172.21.15.82:6809/1698195735]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:09:19.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:19 smithi137 bash[25001]: audit 2024-09-20T19:09:17.998441+0000 mon.b (mon.2) 16 : audit [INF] from='osd.3 [v2:172.21.15.82:6808/1698195735,v1:172.21.15.82:6809/1698195735]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:09:19.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:19 smithi137 bash[25001]: audit 2024-09-20T19:09:18.095889+0000 mon.a (mon.0) 485 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:09:19.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:19 smithi137 bash[25001]: audit 2024-09-20T19:09:18.095889+0000 mon.a (mon.0) 485 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:09:19.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:19 smithi137 bash[25001]: audit 2024-09-20T19:09:18.103010+0000 mon.a (mon.0) 486 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:19.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:19 smithi137 bash[25001]: audit 2024-09-20T19:09:18.103010+0000 mon.a (mon.0) 486 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:19.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:19 smithi137 bash[25001]: audit 2024-09-20T19:09:18.111540+0000 mon.a (mon.0) 487 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:19.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:19 smithi137 bash[25001]: audit 2024-09-20T19:09:18.111540+0000 mon.a (mon.0) 487 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:19.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:19 smithi082 bash[24745]: audit 2024-09-20T19:09:17.989703+0000 mon.a (mon.0) 481 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-20T19:09:19.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:19 smithi082 bash[24745]: audit 2024-09-20T19:09:17.989703+0000 mon.a (mon.0) 481 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-20T19:09:19.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:19 smithi082 bash[24745]: cluster 2024-09-20T19:09:17.994359+0000 mon.a (mon.0) 482 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-20T19:09:19.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:19 smithi082 bash[24745]: cluster 2024-09-20T19:09:17.994359+0000 mon.a (mon.0) 482 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-20T19:09:19.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:19 smithi082 bash[24745]: audit 2024-09-20T19:09:17.994947+0000 mon.a (mon.0) 483 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:19.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:19 smithi082 bash[24745]: audit 2024-09-20T19:09:17.994947+0000 mon.a (mon.0) 483 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:19.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:19 smithi082 bash[24745]: audit 2024-09-20T19:09:17.996375+0000 mon.a (mon.0) 484 : audit [INF] from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:09:19.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:19 smithi082 bash[24745]: audit 2024-09-20T19:09:17.996375+0000 mon.a (mon.0) 484 : audit [INF] from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:09:19.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:19 smithi082 bash[24745]: audit 2024-09-20T19:09:17.998441+0000 mon.b (mon.2) 16 : audit [INF] from='osd.3 [v2:172.21.15.82:6808/1698195735,v1:172.21.15.82:6809/1698195735]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:09:19.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:19 smithi082 bash[24745]: audit 2024-09-20T19:09:17.998441+0000 mon.b (mon.2) 16 : audit [INF] from='osd.3 [v2:172.21.15.82:6808/1698195735,v1:172.21.15.82:6809/1698195735]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:09:19.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:19 smithi082 bash[24745]: audit 2024-09-20T19:09:18.095889+0000 mon.a (mon.0) 485 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:09:19.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:19 smithi082 bash[24745]: audit 2024-09-20T19:09:18.095889+0000 mon.a (mon.0) 485 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:09:19.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:19 smithi082 bash[24745]: audit 2024-09-20T19:09:18.103010+0000 mon.a (mon.0) 486 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:19.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:19 smithi082 bash[24745]: audit 2024-09-20T19:09:18.103010+0000 mon.a (mon.0) 486 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:19.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:19 smithi082 bash[24745]: audit 2024-09-20T19:09:18.111540+0000 mon.a (mon.0) 487 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:19.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:19 smithi082 bash[24745]: audit 2024-09-20T19:09:18.111540+0000 mon.a (mon.0) 487 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:19.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:19 smithi018 bash[22763]: audit 2024-09-20T19:09:17.989703+0000 mon.a (mon.0) 481 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-20T19:09:19.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:19 smithi018 bash[22763]: audit 2024-09-20T19:09:17.989703+0000 mon.a (mon.0) 481 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-20T19:09:19.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:19 smithi018 bash[22763]: cluster 2024-09-20T19:09:17.994359+0000 mon.a (mon.0) 482 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-20T19:09:19.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:19 smithi018 bash[22763]: cluster 2024-09-20T19:09:17.994359+0000 mon.a (mon.0) 482 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-20T19:09:19.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:19 smithi018 bash[22763]: audit 2024-09-20T19:09:17.994947+0000 mon.a (mon.0) 483 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:19.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:19 smithi018 bash[22763]: audit 2024-09-20T19:09:17.994947+0000 mon.a (mon.0) 483 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:19.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:19 smithi018 bash[22763]: audit 2024-09-20T19:09:17.996375+0000 mon.a (mon.0) 484 : audit [INF] from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:09:19.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:19 smithi018 bash[22763]: audit 2024-09-20T19:09:17.996375+0000 mon.a (mon.0) 484 : audit [INF] from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:09:19.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:19 smithi018 bash[22763]: audit 2024-09-20T19:09:17.998441+0000 mon.b (mon.2) 16 : audit [INF] from='osd.3 [v2:172.21.15.82:6808/1698195735,v1:172.21.15.82:6809/1698195735]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:09:19.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:19 smithi018 bash[22763]: audit 2024-09-20T19:09:17.998441+0000 mon.b (mon.2) 16 : audit [INF] from='osd.3 [v2:172.21.15.82:6808/1698195735,v1:172.21.15.82:6809/1698195735]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi082", "root=default"]} : dispatch 2024-09-20T19:09:19.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:19 smithi018 bash[22763]: audit 2024-09-20T19:09:18.095889+0000 mon.a (mon.0) 485 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:09:19.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:19 smithi018 bash[22763]: audit 2024-09-20T19:09:18.095889+0000 mon.a (mon.0) 485 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:09:19.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:19 smithi018 bash[22763]: audit 2024-09-20T19:09:18.103010+0000 mon.a (mon.0) 486 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:19.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:19 smithi018 bash[22763]: audit 2024-09-20T19:09:18.103010+0000 mon.a (mon.0) 486 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:19.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:19 smithi018 bash[22763]: audit 2024-09-20T19:09:18.111540+0000 mon.a (mon.0) 487 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:19.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:19 smithi018 bash[22763]: audit 2024-09-20T19:09:18.111540+0000 mon.a (mon.0) 487 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:19.697 INFO:journalctl@ceph.osd.3.smithi082.stdout:Sep 20 19:09:19 smithi082 bash[33216]: debug 2024-09-20T19:09:19.432+0000 7f8368df6640 -1 osd.3 0 waiting for initial osdmap 2024-09-20T19:09:19.697 INFO:journalctl@ceph.osd.3.smithi082.stdout:Sep 20 19:09:19 smithi082 bash[33216]: debug 2024-09-20T19:09:19.456+0000 7f8360c15640 -1 osd.3 26 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-20T19:09:20.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:20 smithi137 bash[25001]: cluster 2024-09-20T19:09:18.486807+0000 mgr.a (mgr.14152) 228 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:20.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:20 smithi137 bash[25001]: cluster 2024-09-20T19:09:18.486807+0000 mgr.a (mgr.14152) 228 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:20.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:20 smithi137 bash[25001]: audit 2024-09-20T19:09:18.992254+0000 mon.a (mon.0) 488 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi082", "root=default"]}]': finished 2024-09-20T19:09:20.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:20 smithi137 bash[25001]: audit 2024-09-20T19:09:18.992254+0000 mon.a (mon.0) 488 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi082", "root=default"]}]': finished 2024-09-20T19:09:20.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:20 smithi137 bash[25001]: cluster 2024-09-20T19:09:18.998011+0000 mon.a (mon.0) 489 : cluster [DBG] osdmap e25: 4 total, 3 up, 4 in 2024-09-20T19:09:20.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:20 smithi137 bash[25001]: cluster 2024-09-20T19:09:18.998011+0000 mon.a (mon.0) 489 : cluster [DBG] osdmap e25: 4 total, 3 up, 4 in 2024-09-20T19:09:20.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:20 smithi137 bash[25001]: audit 2024-09-20T19:09:18.998845+0000 mon.a (mon.0) 490 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:20.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:20 smithi137 bash[25001]: audit 2024-09-20T19:09:18.998845+0000 mon.a (mon.0) 490 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:20.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:20 smithi137 bash[25001]: audit 2024-09-20T19:09:19.012191+0000 mon.a (mon.0) 491 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:20.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:20 smithi137 bash[25001]: audit 2024-09-20T19:09:19.012191+0000 mon.a (mon.0) 491 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:20.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:20 smithi137 bash[25001]: cluster 2024-09-20T19:09:19.337763+0000 mon.a (mon.0) 492 : cluster [DBG] osdmap e26: 4 total, 3 up, 4 in 2024-09-20T19:09:20.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:20 smithi137 bash[25001]: cluster 2024-09-20T19:09:19.337763+0000 mon.a (mon.0) 492 : cluster [DBG] osdmap e26: 4 total, 3 up, 4 in 2024-09-20T19:09:20.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:20 smithi137 bash[25001]: audit 2024-09-20T19:09:19.338407+0000 mon.a (mon.0) 493 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:20.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:20 smithi137 bash[25001]: audit 2024-09-20T19:09:19.338407+0000 mon.a (mon.0) 493 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:20.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:20 smithi137 bash[25001]: audit 2024-09-20T19:09:19.439475+0000 mon.a (mon.0) 494 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-20T19:09:20.300 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:20 smithi137 bash[25001]: audit 2024-09-20T19:09:19.439475+0000 mon.a (mon.0) 494 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-20T19:09:20.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:20 smithi018 bash[22763]: cluster 2024-09-20T19:09:18.486807+0000 mgr.a (mgr.14152) 228 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:20.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:20 smithi018 bash[22763]: cluster 2024-09-20T19:09:18.486807+0000 mgr.a (mgr.14152) 228 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:20.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:20 smithi018 bash[22763]: audit 2024-09-20T19:09:18.992254+0000 mon.a (mon.0) 488 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi082", "root=default"]}]': finished 2024-09-20T19:09:20.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:20 smithi018 bash[22763]: audit 2024-09-20T19:09:18.992254+0000 mon.a (mon.0) 488 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi082", "root=default"]}]': finished 2024-09-20T19:09:20.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:20 smithi018 bash[22763]: cluster 2024-09-20T19:09:18.998011+0000 mon.a (mon.0) 489 : cluster [DBG] osdmap e25: 4 total, 3 up, 4 in 2024-09-20T19:09:20.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:20 smithi018 bash[22763]: cluster 2024-09-20T19:09:18.998011+0000 mon.a (mon.0) 489 : cluster [DBG] osdmap e25: 4 total, 3 up, 4 in 2024-09-20T19:09:20.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:20 smithi018 bash[22763]: audit 2024-09-20T19:09:18.998845+0000 mon.a (mon.0) 490 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:20.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:20 smithi018 bash[22763]: audit 2024-09-20T19:09:18.998845+0000 mon.a (mon.0) 490 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:20.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:20 smithi018 bash[22763]: audit 2024-09-20T19:09:19.012191+0000 mon.a (mon.0) 491 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:20.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:20 smithi018 bash[22763]: audit 2024-09-20T19:09:19.012191+0000 mon.a (mon.0) 491 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:20.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:20 smithi018 bash[22763]: cluster 2024-09-20T19:09:19.337763+0000 mon.a (mon.0) 492 : cluster [DBG] osdmap e26: 4 total, 3 up, 4 in 2024-09-20T19:09:20.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:20 smithi018 bash[22763]: cluster 2024-09-20T19:09:19.337763+0000 mon.a (mon.0) 492 : cluster [DBG] osdmap e26: 4 total, 3 up, 4 in 2024-09-20T19:09:20.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:20 smithi018 bash[22763]: audit 2024-09-20T19:09:19.338407+0000 mon.a (mon.0) 493 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:20.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:20 smithi018 bash[22763]: audit 2024-09-20T19:09:19.338407+0000 mon.a (mon.0) 493 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:20.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:20 smithi018 bash[22763]: audit 2024-09-20T19:09:19.439475+0000 mon.a (mon.0) 494 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-20T19:09:20.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:20 smithi018 bash[22763]: audit 2024-09-20T19:09:19.439475+0000 mon.a (mon.0) 494 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-20T19:09:20.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:20 smithi082 bash[24745]: cluster 2024-09-20T19:09:18.486807+0000 mgr.a (mgr.14152) 228 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:20.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:20 smithi082 bash[24745]: cluster 2024-09-20T19:09:18.486807+0000 mgr.a (mgr.14152) 228 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:20.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:20 smithi082 bash[24745]: audit 2024-09-20T19:09:18.992254+0000 mon.a (mon.0) 488 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi082", "root=default"]}]': finished 2024-09-20T19:09:20.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:20 smithi082 bash[24745]: audit 2024-09-20T19:09:18.992254+0000 mon.a (mon.0) 488 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi082", "root=default"]}]': finished 2024-09-20T19:09:20.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:20 smithi082 bash[24745]: cluster 2024-09-20T19:09:18.998011+0000 mon.a (mon.0) 489 : cluster [DBG] osdmap e25: 4 total, 3 up, 4 in 2024-09-20T19:09:20.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:20 smithi082 bash[24745]: cluster 2024-09-20T19:09:18.998011+0000 mon.a (mon.0) 489 : cluster [DBG] osdmap e25: 4 total, 3 up, 4 in 2024-09-20T19:09:20.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:20 smithi082 bash[24745]: audit 2024-09-20T19:09:18.998845+0000 mon.a (mon.0) 490 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:20.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:20 smithi082 bash[24745]: audit 2024-09-20T19:09:18.998845+0000 mon.a (mon.0) 490 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:20.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:20 smithi082 bash[24745]: audit 2024-09-20T19:09:19.012191+0000 mon.a (mon.0) 491 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:20.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:20 smithi082 bash[24745]: audit 2024-09-20T19:09:19.012191+0000 mon.a (mon.0) 491 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:20.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:20 smithi082 bash[24745]: cluster 2024-09-20T19:09:19.337763+0000 mon.a (mon.0) 492 : cluster [DBG] osdmap e26: 4 total, 3 up, 4 in 2024-09-20T19:09:20.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:20 smithi082 bash[24745]: cluster 2024-09-20T19:09:19.337763+0000 mon.a (mon.0) 492 : cluster [DBG] osdmap e26: 4 total, 3 up, 4 in 2024-09-20T19:09:20.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:20 smithi082 bash[24745]: audit 2024-09-20T19:09:19.338407+0000 mon.a (mon.0) 493 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:20.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:20 smithi082 bash[24745]: audit 2024-09-20T19:09:19.338407+0000 mon.a (mon.0) 493 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:20.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:20 smithi082 bash[24745]: audit 2024-09-20T19:09:19.439475+0000 mon.a (mon.0) 494 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-20T19:09:20.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:20 smithi082 bash[24745]: audit 2024-09-20T19:09:19.439475+0000 mon.a (mon.0) 494 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-20T19:09:21.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:21 smithi137 bash[25001]: cluster 2024-09-20T19:09:18.339212+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:09:21.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:21 smithi137 bash[25001]: cluster 2024-09-20T19:09:18.339212+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:09:21.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:21 smithi137 bash[25001]: cluster 2024-09-20T19:09:18.339345+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:09:21.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:21 smithi137 bash[25001]: cluster 2024-09-20T19:09:18.339345+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:09:21.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:21 smithi137 bash[25001]: audit 2024-09-20T19:09:20.014477+0000 mon.a (mon.0) 495 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:21.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:21 smithi137 bash[25001]: audit 2024-09-20T19:09:20.014477+0000 mon.a (mon.0) 495 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:21.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:21 smithi137 bash[25001]: cluster 2024-09-20T19:09:20.342537+0000 mon.a (mon.0) 496 : cluster [INF] osd.3 [v2:172.21.15.82:6808/1698195735,v1:172.21.15.82:6809/1698195735] boot 2024-09-20T19:09:21.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:21 smithi137 bash[25001]: cluster 2024-09-20T19:09:20.342537+0000 mon.a (mon.0) 496 : cluster [INF] osd.3 [v2:172.21.15.82:6808/1698195735,v1:172.21.15.82:6809/1698195735] boot 2024-09-20T19:09:21.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:21 smithi137 bash[25001]: cluster 2024-09-20T19:09:20.342666+0000 mon.a (mon.0) 497 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-20T19:09:21.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:21 smithi137 bash[25001]: cluster 2024-09-20T19:09:20.342666+0000 mon.a (mon.0) 497 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-20T19:09:21.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:21 smithi137 bash[25001]: audit 2024-09-20T19:09:20.343050+0000 mon.a (mon.0) 498 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:21.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:21 smithi137 bash[25001]: audit 2024-09-20T19:09:20.343050+0000 mon.a (mon.0) 498 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:21.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:21 smithi018 bash[22763]: cluster 2024-09-20T19:09:18.339212+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:09:21.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:21 smithi018 bash[22763]: cluster 2024-09-20T19:09:18.339212+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:09:21.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:21 smithi018 bash[22763]: cluster 2024-09-20T19:09:18.339345+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:09:21.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:21 smithi018 bash[22763]: cluster 2024-09-20T19:09:18.339345+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:09:21.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:21 smithi018 bash[22763]: audit 2024-09-20T19:09:20.014477+0000 mon.a (mon.0) 495 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:21.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:21 smithi018 bash[22763]: audit 2024-09-20T19:09:20.014477+0000 mon.a (mon.0) 495 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:21.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:21 smithi018 bash[22763]: cluster 2024-09-20T19:09:20.342537+0000 mon.a (mon.0) 496 : cluster [INF] osd.3 [v2:172.21.15.82:6808/1698195735,v1:172.21.15.82:6809/1698195735] boot 2024-09-20T19:09:21.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:21 smithi018 bash[22763]: cluster 2024-09-20T19:09:20.342537+0000 mon.a (mon.0) 496 : cluster [INF] osd.3 [v2:172.21.15.82:6808/1698195735,v1:172.21.15.82:6809/1698195735] boot 2024-09-20T19:09:21.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:21 smithi018 bash[22763]: cluster 2024-09-20T19:09:20.342666+0000 mon.a (mon.0) 497 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-20T19:09:21.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:21 smithi018 bash[22763]: cluster 2024-09-20T19:09:20.342666+0000 mon.a (mon.0) 497 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-20T19:09:21.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:21 smithi018 bash[22763]: audit 2024-09-20T19:09:20.343050+0000 mon.a (mon.0) 498 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:21.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:21 smithi018 bash[22763]: audit 2024-09-20T19:09:20.343050+0000 mon.a (mon.0) 498 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:21.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:21 smithi082 bash[24745]: cluster 2024-09-20T19:09:18.339212+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:09:21.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:21 smithi082 bash[24745]: cluster 2024-09-20T19:09:18.339212+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:09:21.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:21 smithi082 bash[24745]: cluster 2024-09-20T19:09:18.339345+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:09:21.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:21 smithi082 bash[24745]: cluster 2024-09-20T19:09:18.339345+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:09:21.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:21 smithi082 bash[24745]: audit 2024-09-20T19:09:20.014477+0000 mon.a (mon.0) 495 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:21.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:21 smithi082 bash[24745]: audit 2024-09-20T19:09:20.014477+0000 mon.a (mon.0) 495 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:21.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:21 smithi082 bash[24745]: cluster 2024-09-20T19:09:20.342537+0000 mon.a (mon.0) 496 : cluster [INF] osd.3 [v2:172.21.15.82:6808/1698195735,v1:172.21.15.82:6809/1698195735] boot 2024-09-20T19:09:21.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:21 smithi082 bash[24745]: cluster 2024-09-20T19:09:20.342537+0000 mon.a (mon.0) 496 : cluster [INF] osd.3 [v2:172.21.15.82:6808/1698195735,v1:172.21.15.82:6809/1698195735] boot 2024-09-20T19:09:21.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:21 smithi082 bash[24745]: cluster 2024-09-20T19:09:20.342666+0000 mon.a (mon.0) 497 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-20T19:09:21.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:21 smithi082 bash[24745]: cluster 2024-09-20T19:09:20.342666+0000 mon.a (mon.0) 497 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-20T19:09:21.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:21 smithi082 bash[24745]: audit 2024-09-20T19:09:20.343050+0000 mon.a (mon.0) 498 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:21.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:21 smithi082 bash[24745]: audit 2024-09-20T19:09:20.343050+0000 mon.a (mon.0) 498 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-20T19:09:22.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:22 smithi137 bash[25001]: cluster 2024-09-20T19:09:20.487329+0000 mgr.a (mgr.14152) 229 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:22.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:22 smithi137 bash[25001]: cluster 2024-09-20T19:09:20.487329+0000 mgr.a (mgr.14152) 229 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:22.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:22 smithi137 bash[25001]: cluster 2024-09-20T19:09:21.348340+0000 mon.a (mon.0) 499 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-20T19:09:22.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:22 smithi137 bash[25001]: cluster 2024-09-20T19:09:21.348340+0000 mon.a (mon.0) 499 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-20T19:09:22.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:22 smithi018 bash[22763]: cluster 2024-09-20T19:09:20.487329+0000 mgr.a (mgr.14152) 229 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:22.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:22 smithi018 bash[22763]: cluster 2024-09-20T19:09:20.487329+0000 mgr.a (mgr.14152) 229 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:22.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:22 smithi018 bash[22763]: cluster 2024-09-20T19:09:21.348340+0000 mon.a (mon.0) 499 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-20T19:09:22.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:22 smithi018 bash[22763]: cluster 2024-09-20T19:09:21.348340+0000 mon.a (mon.0) 499 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-20T19:09:22.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:22 smithi082 bash[24745]: cluster 2024-09-20T19:09:20.487329+0000 mgr.a (mgr.14152) 229 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:22.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:22 smithi082 bash[24745]: cluster 2024-09-20T19:09:20.487329+0000 mgr.a (mgr.14152) 229 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 94 MiB used, 268 GiB / 268 GiB avail 2024-09-20T19:09:22.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:22 smithi082 bash[24745]: cluster 2024-09-20T19:09:21.348340+0000 mon.a (mon.0) 499 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-20T19:09:22.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:22 smithi082 bash[24745]: cluster 2024-09-20T19:09:21.348340+0000 mon.a (mon.0) 499 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-20T19:09:22.507 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.c/config 2024-09-20T19:09:23.660 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:23 smithi137 bash[25001]: cluster 2024-09-20T19:09:22.351119+0000 mon.a (mon.0) 500 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-20T19:09:23.660 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:23 smithi137 bash[25001]: cluster 2024-09-20T19:09:22.351119+0000 mon.a (mon.0) 500 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-20T19:09:23.660 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:23 smithi137 bash[25001]: cluster 2024-09-20T19:09:22.487924+0000 mgr.a (mgr.14152) 230 : cluster [DBG] pgmap v191: 1 pgs: 1 remapped; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:23.660 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:23 smithi137 bash[25001]: cluster 2024-09-20T19:09:22.487924+0000 mgr.a (mgr.14152) 230 : cluster [DBG] pgmap v191: 1 pgs: 1 remapped; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:23.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:23 smithi018 bash[22763]: cluster 2024-09-20T19:09:22.351119+0000 mon.a (mon.0) 500 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-20T19:09:23.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:23 smithi018 bash[22763]: cluster 2024-09-20T19:09:22.351119+0000 mon.a (mon.0) 500 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-20T19:09:23.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:23 smithi018 bash[22763]: cluster 2024-09-20T19:09:22.487924+0000 mgr.a (mgr.14152) 230 : cluster [DBG] pgmap v191: 1 pgs: 1 remapped; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:23.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:23 smithi018 bash[22763]: cluster 2024-09-20T19:09:22.487924+0000 mgr.a (mgr.14152) 230 : cluster [DBG] pgmap v191: 1 pgs: 1 remapped; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:23.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:23 smithi082 bash[24745]: cluster 2024-09-20T19:09:22.351119+0000 mon.a (mon.0) 500 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-20T19:09:23.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:23 smithi082 bash[24745]: cluster 2024-09-20T19:09:22.351119+0000 mon.a (mon.0) 500 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-20T19:09:23.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:23 smithi082 bash[24745]: cluster 2024-09-20T19:09:22.487924+0000 mgr.a (mgr.14152) 230 : cluster [DBG] pgmap v191: 1 pgs: 1 remapped; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:23.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:23 smithi082 bash[24745]: cluster 2024-09-20T19:09:22.487924+0000 mgr.a (mgr.14152) 230 : cluster [DBG] pgmap v191: 1 pgs: 1 remapped; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:25.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:25 smithi082 bash[24745]: cluster 2024-09-20T19:09:24.488475+0000 mgr.a (mgr.14152) 231 : cluster [DBG] pgmap v192: 1 pgs: 1 remapped; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:25.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:25 smithi082 bash[24745]: cluster 2024-09-20T19:09:24.488475+0000 mgr.a (mgr.14152) 231 : cluster [DBG] pgmap v192: 1 pgs: 1 remapped; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:25.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:25 smithi137 bash[25001]: cluster 2024-09-20T19:09:24.488475+0000 mgr.a (mgr.14152) 231 : cluster [DBG] pgmap v192: 1 pgs: 1 remapped; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:25.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:25 smithi137 bash[25001]: cluster 2024-09-20T19:09:24.488475+0000 mgr.a (mgr.14152) 231 : cluster [DBG] pgmap v192: 1 pgs: 1 remapped; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:25.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:25 smithi018 bash[22763]: cluster 2024-09-20T19:09:24.488475+0000 mgr.a (mgr.14152) 231 : cluster [DBG] pgmap v192: 1 pgs: 1 remapped; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:25.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:25 smithi018 bash[22763]: cluster 2024-09-20T19:09:24.488475+0000 mgr.a (mgr.14152) 231 : cluster [DBG] pgmap v192: 1 pgs: 1 remapped; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:26.670 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-09-20T19:09:26.720 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph orch daemon add osd smithi137:vg_nvme/lv_4 2024-09-20T19:09:27.818 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:27 smithi082 bash[24745]: cluster 2024-09-20T19:09:26.489071+0000 mgr.a (mgr.14152) 232 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 94 KiB/s, 0 objects/s recovering 2024-09-20T19:09:27.819 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:27 smithi082 bash[24745]: cluster 2024-09-20T19:09:26.489071+0000 mgr.a (mgr.14152) 232 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 94 KiB/s, 0 objects/s recovering 2024-09-20T19:09:27.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:27 smithi018 bash[22763]: cluster 2024-09-20T19:09:26.489071+0000 mgr.a (mgr.14152) 232 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 94 KiB/s, 0 objects/s recovering 2024-09-20T19:09:27.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:27 smithi018 bash[22763]: cluster 2024-09-20T19:09:26.489071+0000 mgr.a (mgr.14152) 232 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 94 KiB/s, 0 objects/s recovering 2024-09-20T19:09:28.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:27 smithi137 bash[25001]: cluster 2024-09-20T19:09:26.489071+0000 mgr.a (mgr.14152) 232 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 94 KiB/s, 0 objects/s recovering 2024-09-20T19:09:28.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:27 smithi137 bash[25001]: cluster 2024-09-20T19:09:26.489071+0000 mgr.a (mgr.14152) 232 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 94 KiB/s, 0 objects/s recovering 2024-09-20T19:09:29.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: cluster 2024-09-20T19:09:28.489631+0000 mgr.a (mgr.14152) 233 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-20T19:09:29.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: cluster 2024-09-20T19:09:28.489631+0000 mgr.a (mgr.14152) 233 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-20T19:09:29.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: cephadm 2024-09-20T19:09:28.516926+0000 mgr.a (mgr.14152) 234 : cephadm [INF] Detected new or changed devices on smithi082 2024-09-20T19:09:29.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: cephadm 2024-09-20T19:09:28.516926+0000 mgr.a (mgr.14152) 234 : cephadm [INF] Detected new or changed devices on smithi082 2024-09-20T19:09:29.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: audit 2024-09-20T19:09:28.525437+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: audit 2024-09-20T19:09:28.525437+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: audit 2024-09-20T19:09:28.533735+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: audit 2024-09-20T19:09:28.533735+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: audit 2024-09-20T19:09:28.536708+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-20T19:09:29.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: audit 2024-09-20T19:09:28.536708+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-20T19:09:29.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: audit 2024-09-20T19:09:28.538588+0000 mon.a (mon.0) 504 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-20T19:09:29.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: audit 2024-09-20T19:09:28.538588+0000 mon.a (mon.0) 504 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-20T19:09:29.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: cephadm 2024-09-20T19:09:28.539899+0000 mgr.a (mgr.14152) 235 : cephadm [INF] Adjusting osd_memory_target on smithi082 to 8632M 2024-09-20T19:09:29.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: cephadm 2024-09-20T19:09:28.539899+0000 mgr.a (mgr.14152) 235 : cephadm [INF] Adjusting osd_memory_target on smithi082 to 8632M 2024-09-20T19:09:29.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: audit 2024-09-20T19:09:28.545959+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: audit 2024-09-20T19:09:28.545959+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: audit 2024-09-20T19:09:28.550106+0000 mon.a (mon.0) 506 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:29.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: audit 2024-09-20T19:09:28.550106+0000 mon.a (mon.0) 506 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:29.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: audit 2024-09-20T19:09:28.556174+0000 mon.a (mon.0) 507 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:09:29.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: audit 2024-09-20T19:09:28.556174+0000 mon.a (mon.0) 507 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:09:29.800 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: audit 2024-09-20T19:09:28.565588+0000 mon.a (mon.0) 508 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.801 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:29 smithi137 bash[25001]: audit 2024-09-20T19:09:28.565588+0000 mon.a (mon.0) 508 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: cluster 2024-09-20T19:09:28.489631+0000 mgr.a (mgr.14152) 233 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-20T19:09:29.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: cluster 2024-09-20T19:09:28.489631+0000 mgr.a (mgr.14152) 233 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-20T19:09:29.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: cephadm 2024-09-20T19:09:28.516926+0000 mgr.a (mgr.14152) 234 : cephadm [INF] Detected new or changed devices on smithi082 2024-09-20T19:09:29.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: cephadm 2024-09-20T19:09:28.516926+0000 mgr.a (mgr.14152) 234 : cephadm [INF] Detected new or changed devices on smithi082 2024-09-20T19:09:29.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: audit 2024-09-20T19:09:28.525437+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: audit 2024-09-20T19:09:28.525437+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: audit 2024-09-20T19:09:28.533735+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: audit 2024-09-20T19:09:28.533735+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: audit 2024-09-20T19:09:28.536708+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-20T19:09:29.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: audit 2024-09-20T19:09:28.536708+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-20T19:09:29.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: audit 2024-09-20T19:09:28.538588+0000 mon.a (mon.0) 504 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-20T19:09:29.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: audit 2024-09-20T19:09:28.538588+0000 mon.a (mon.0) 504 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-20T19:09:29.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: cephadm 2024-09-20T19:09:28.539899+0000 mgr.a (mgr.14152) 235 : cephadm [INF] Adjusting osd_memory_target on smithi082 to 8632M 2024-09-20T19:09:29.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: cephadm 2024-09-20T19:09:28.539899+0000 mgr.a (mgr.14152) 235 : cephadm [INF] Adjusting osd_memory_target on smithi082 to 8632M 2024-09-20T19:09:29.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: audit 2024-09-20T19:09:28.545959+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: audit 2024-09-20T19:09:28.545959+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: audit 2024-09-20T19:09:28.550106+0000 mon.a (mon.0) 506 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:29.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: audit 2024-09-20T19:09:28.550106+0000 mon.a (mon.0) 506 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:29.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: audit 2024-09-20T19:09:28.556174+0000 mon.a (mon.0) 507 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:09:29.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: audit 2024-09-20T19:09:28.556174+0000 mon.a (mon.0) 507 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:09:29.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: audit 2024-09-20T19:09:28.565588+0000 mon.a (mon.0) 508 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:29 smithi018 bash[22763]: audit 2024-09-20T19:09:28.565588+0000 mon.a (mon.0) 508 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: cluster 2024-09-20T19:09:28.489631+0000 mgr.a (mgr.14152) 233 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-20T19:09:29.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: cluster 2024-09-20T19:09:28.489631+0000 mgr.a (mgr.14152) 233 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-20T19:09:29.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: cephadm 2024-09-20T19:09:28.516926+0000 mgr.a (mgr.14152) 234 : cephadm [INF] Detected new or changed devices on smithi082 2024-09-20T19:09:29.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: cephadm 2024-09-20T19:09:28.516926+0000 mgr.a (mgr.14152) 234 : cephadm [INF] Detected new or changed devices on smithi082 2024-09-20T19:09:29.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: audit 2024-09-20T19:09:28.525437+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: audit 2024-09-20T19:09:28.525437+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: audit 2024-09-20T19:09:28.533735+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: audit 2024-09-20T19:09:28.533735+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: audit 2024-09-20T19:09:28.536708+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-20T19:09:29.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: audit 2024-09-20T19:09:28.536708+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-20T19:09:29.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: audit 2024-09-20T19:09:28.538588+0000 mon.a (mon.0) 504 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-20T19:09:29.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: audit 2024-09-20T19:09:28.538588+0000 mon.a (mon.0) 504 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-20T19:09:29.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: cephadm 2024-09-20T19:09:28.539899+0000 mgr.a (mgr.14152) 235 : cephadm [INF] Adjusting osd_memory_target on smithi082 to 8632M 2024-09-20T19:09:29.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: cephadm 2024-09-20T19:09:28.539899+0000 mgr.a (mgr.14152) 235 : cephadm [INF] Adjusting osd_memory_target on smithi082 to 8632M 2024-09-20T19:09:29.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: audit 2024-09-20T19:09:28.545959+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: audit 2024-09-20T19:09:28.545959+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: audit 2024-09-20T19:09:28.550106+0000 mon.a (mon.0) 506 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:29.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: audit 2024-09-20T19:09:28.550106+0000 mon.a (mon.0) 506 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:29.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: audit 2024-09-20T19:09:28.556174+0000 mon.a (mon.0) 507 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:09:29.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: audit 2024-09-20T19:09:28.556174+0000 mon.a (mon.0) 507 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:09:29.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: audit 2024-09-20T19:09:28.565588+0000 mon.a (mon.0) 508 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:29.949 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:29 smithi082 bash[24745]: audit 2024-09-20T19:09:28.565588+0000 mon.a (mon.0) 508 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:30.443 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.c/config 2024-09-20T19:09:31.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:31 smithi137 bash[25001]: cluster 2024-09-20T19:09:30.490277+0000 mgr.a (mgr.14152) 236 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 63 KiB/s, 0 objects/s recovering 2024-09-20T19:09:31.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:31 smithi137 bash[25001]: cluster 2024-09-20T19:09:30.490277+0000 mgr.a (mgr.14152) 236 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 63 KiB/s, 0 objects/s recovering 2024-09-20T19:09:31.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:31 smithi018 bash[22763]: cluster 2024-09-20T19:09:30.490277+0000 mgr.a (mgr.14152) 236 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 63 KiB/s, 0 objects/s recovering 2024-09-20T19:09:31.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:31 smithi018 bash[22763]: cluster 2024-09-20T19:09:30.490277+0000 mgr.a (mgr.14152) 236 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 63 KiB/s, 0 objects/s recovering 2024-09-20T19:09:31.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:31 smithi082 bash[24745]: cluster 2024-09-20T19:09:30.490277+0000 mgr.a (mgr.14152) 236 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 63 KiB/s, 0 objects/s recovering 2024-09-20T19:09:31.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:31 smithi082 bash[24745]: cluster 2024-09-20T19:09:30.490277+0000 mgr.a (mgr.14152) 236 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 63 KiB/s, 0 objects/s recovering 2024-09-20T19:09:32.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:32 smithi137 bash[25001]: audit 2024-09-20T19:09:31.782169+0000 mgr.a (mgr.14152) 237 : audit [DBG] from='client.24193 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi137:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:09:32.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:32 smithi137 bash[25001]: audit 2024-09-20T19:09:31.782169+0000 mgr.a (mgr.14152) 237 : audit [DBG] from='client.24193 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi137:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:09:32.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:32 smithi137 bash[25001]: audit 2024-09-20T19:09:31.788932+0000 mon.a (mon.0) 509 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:09:32.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:32 smithi137 bash[25001]: audit 2024-09-20T19:09:31.788932+0000 mon.a (mon.0) 509 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:09:32.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:32 smithi137 bash[25001]: audit 2024-09-20T19:09:31.794829+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:09:32.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:32 smithi137 bash[25001]: audit 2024-09-20T19:09:31.794829+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:09:32.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:32 smithi137 bash[25001]: audit 2024-09-20T19:09:31.796413+0000 mon.a (mon.0) 511 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:32.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:32 smithi137 bash[25001]: audit 2024-09-20T19:09:31.796413+0000 mon.a (mon.0) 511 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:32.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:32 smithi018 bash[22763]: audit 2024-09-20T19:09:31.782169+0000 mgr.a (mgr.14152) 237 : audit [DBG] from='client.24193 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi137:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:09:32.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:32 smithi018 bash[22763]: audit 2024-09-20T19:09:31.782169+0000 mgr.a (mgr.14152) 237 : audit [DBG] from='client.24193 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi137:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:09:32.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:32 smithi018 bash[22763]: audit 2024-09-20T19:09:31.788932+0000 mon.a (mon.0) 509 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:09:32.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:32 smithi018 bash[22763]: audit 2024-09-20T19:09:31.788932+0000 mon.a (mon.0) 509 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:09:32.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:32 smithi018 bash[22763]: audit 2024-09-20T19:09:31.794829+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:09:32.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:32 smithi018 bash[22763]: audit 2024-09-20T19:09:31.794829+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:09:32.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:32 smithi018 bash[22763]: audit 2024-09-20T19:09:31.796413+0000 mon.a (mon.0) 511 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:32.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:32 smithi018 bash[22763]: audit 2024-09-20T19:09:31.796413+0000 mon.a (mon.0) 511 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:32.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:32 smithi082 bash[24745]: audit 2024-09-20T19:09:31.782169+0000 mgr.a (mgr.14152) 237 : audit [DBG] from='client.24193 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi137:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:09:32.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:32 smithi082 bash[24745]: audit 2024-09-20T19:09:31.782169+0000 mgr.a (mgr.14152) 237 : audit [DBG] from='client.24193 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi137:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:09:32.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:32 smithi082 bash[24745]: audit 2024-09-20T19:09:31.788932+0000 mon.a (mon.0) 509 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:09:32.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:32 smithi082 bash[24745]: audit 2024-09-20T19:09:31.788932+0000 mon.a (mon.0) 509 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:09:32.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:32 smithi082 bash[24745]: audit 2024-09-20T19:09:31.794829+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:09:32.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:32 smithi082 bash[24745]: audit 2024-09-20T19:09:31.794829+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:09:32.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:32 smithi082 bash[24745]: audit 2024-09-20T19:09:31.796413+0000 mon.a (mon.0) 511 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:32.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:32 smithi082 bash[24745]: audit 2024-09-20T19:09:31.796413+0000 mon.a (mon.0) 511 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:33.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:33 smithi137 bash[25001]: cluster 2024-09-20T19:09:32.490974+0000 mgr.a (mgr.14152) 238 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 57 KiB/s, 0 objects/s recovering 2024-09-20T19:09:33.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:33 smithi137 bash[25001]: cluster 2024-09-20T19:09:32.490974+0000 mgr.a (mgr.14152) 238 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 57 KiB/s, 0 objects/s recovering 2024-09-20T19:09:33.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:33 smithi018 bash[22763]: cluster 2024-09-20T19:09:32.490974+0000 mgr.a (mgr.14152) 238 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 57 KiB/s, 0 objects/s recovering 2024-09-20T19:09:33.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:33 smithi018 bash[22763]: cluster 2024-09-20T19:09:32.490974+0000 mgr.a (mgr.14152) 238 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 57 KiB/s, 0 objects/s recovering 2024-09-20T19:09:33.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:33 smithi082 bash[24745]: cluster 2024-09-20T19:09:32.490974+0000 mgr.a (mgr.14152) 238 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 57 KiB/s, 0 objects/s recovering 2024-09-20T19:09:33.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:33 smithi082 bash[24745]: cluster 2024-09-20T19:09:32.490974+0000 mgr.a (mgr.14152) 238 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 57 KiB/s, 0 objects/s recovering 2024-09-20T19:09:35.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:35 smithi137 bash[25001]: cluster 2024-09-20T19:09:34.491660+0000 mgr.a (mgr.14152) 239 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-20T19:09:35.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:35 smithi137 bash[25001]: cluster 2024-09-20T19:09:34.491660+0000 mgr.a (mgr.14152) 239 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-20T19:09:35.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:35 smithi018 bash[22763]: cluster 2024-09-20T19:09:34.491660+0000 mgr.a (mgr.14152) 239 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-20T19:09:35.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:35 smithi018 bash[22763]: cluster 2024-09-20T19:09:34.491660+0000 mgr.a (mgr.14152) 239 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-20T19:09:35.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:35 smithi082 bash[24745]: cluster 2024-09-20T19:09:34.491660+0000 mgr.a (mgr.14152) 239 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-20T19:09:35.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:35 smithi082 bash[24745]: cluster 2024-09-20T19:09:34.491660+0000 mgr.a (mgr.14152) 239 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-20T19:09:37.814 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:37 smithi137 bash[25001]: cluster 2024-09-20T19:09:36.492271+0000 mgr.a (mgr.14152) 240 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-20T19:09:37.815 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:37 smithi137 bash[25001]: cluster 2024-09-20T19:09:36.492271+0000 mgr.a (mgr.14152) 240 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-20T19:09:37.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:37 smithi018 bash[22763]: cluster 2024-09-20T19:09:36.492271+0000 mgr.a (mgr.14152) 240 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-20T19:09:37.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:37 smithi018 bash[22763]: cluster 2024-09-20T19:09:36.492271+0000 mgr.a (mgr.14152) 240 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-20T19:09:37.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:37 smithi082 bash[24745]: cluster 2024-09-20T19:09:36.492271+0000 mgr.a (mgr.14152) 240 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-20T19:09:37.950 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:37 smithi082 bash[24745]: cluster 2024-09-20T19:09:36.492271+0000 mgr.a (mgr.14152) 240 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-20T19:09:39.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:39 smithi137 bash[25001]: cluster 2024-09-20T19:09:38.492843+0000 mgr.a (mgr.14152) 241 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:39.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:39 smithi137 bash[25001]: cluster 2024-09-20T19:09:38.492843+0000 mgr.a (mgr.14152) 241 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:39.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:39 smithi018 bash[22763]: cluster 2024-09-20T19:09:38.492843+0000 mgr.a (mgr.14152) 241 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:39.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:39 smithi018 bash[22763]: cluster 2024-09-20T19:09:38.492843+0000 mgr.a (mgr.14152) 241 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:39.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:39 smithi082 bash[24745]: cluster 2024-09-20T19:09:38.492843+0000 mgr.a (mgr.14152) 241 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:39.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:39 smithi082 bash[24745]: cluster 2024-09-20T19:09:38.492843+0000 mgr.a (mgr.14152) 241 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:40.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:40 smithi018 bash[22763]: audit 2024-09-20T19:09:40.253139+0000 mon.a (mon.0) 512 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5b278825-78ca-4793-acd0-eb744e21f0f0"} : dispatch 2024-09-20T19:09:40.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:40 smithi018 bash[22763]: audit 2024-09-20T19:09:40.253139+0000 mon.a (mon.0) 512 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5b278825-78ca-4793-acd0-eb744e21f0f0"} : dispatch 2024-09-20T19:09:40.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:40 smithi018 bash[22763]: audit 2024-09-20T19:09:40.254902+0000 mon.c (mon.1) 6 : audit [INF] from='client.? 172.21.15.137:0/3928707785' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5b278825-78ca-4793-acd0-eb744e21f0f0"} : dispatch 2024-09-20T19:09:40.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:40 smithi018 bash[22763]: audit 2024-09-20T19:09:40.254902+0000 mon.c (mon.1) 6 : audit [INF] from='client.? 172.21.15.137:0/3928707785' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5b278825-78ca-4793-acd0-eb744e21f0f0"} : dispatch 2024-09-20T19:09:40.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:40 smithi018 bash[22763]: audit 2024-09-20T19:09:40.257124+0000 mon.a (mon.0) 513 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5b278825-78ca-4793-acd0-eb744e21f0f0"}]': finished 2024-09-20T19:09:40.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:40 smithi018 bash[22763]: audit 2024-09-20T19:09:40.257124+0000 mon.a (mon.0) 513 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5b278825-78ca-4793-acd0-eb744e21f0f0"}]': finished 2024-09-20T19:09:40.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:40 smithi018 bash[22763]: cluster 2024-09-20T19:09:40.263606+0000 mon.a (mon.0) 514 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-20T19:09:40.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:40 smithi018 bash[22763]: cluster 2024-09-20T19:09:40.263606+0000 mon.a (mon.0) 514 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-20T19:09:40.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:40 smithi018 bash[22763]: audit 2024-09-20T19:09:40.264440+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:09:40.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:40 smithi018 bash[22763]: audit 2024-09-20T19:09:40.264440+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:09:40.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:40 smithi082 bash[24745]: audit 2024-09-20T19:09:40.253139+0000 mon.a (mon.0) 512 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5b278825-78ca-4793-acd0-eb744e21f0f0"} : dispatch 2024-09-20T19:09:40.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:40 smithi082 bash[24745]: audit 2024-09-20T19:09:40.253139+0000 mon.a (mon.0) 512 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5b278825-78ca-4793-acd0-eb744e21f0f0"} : dispatch 2024-09-20T19:09:40.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:40 smithi082 bash[24745]: audit 2024-09-20T19:09:40.254902+0000 mon.c (mon.1) 6 : audit [INF] from='client.? 172.21.15.137:0/3928707785' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5b278825-78ca-4793-acd0-eb744e21f0f0"} : dispatch 2024-09-20T19:09:40.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:40 smithi082 bash[24745]: audit 2024-09-20T19:09:40.254902+0000 mon.c (mon.1) 6 : audit [INF] from='client.? 172.21.15.137:0/3928707785' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5b278825-78ca-4793-acd0-eb744e21f0f0"} : dispatch 2024-09-20T19:09:40.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:40 smithi082 bash[24745]: audit 2024-09-20T19:09:40.257124+0000 mon.a (mon.0) 513 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5b278825-78ca-4793-acd0-eb744e21f0f0"}]': finished 2024-09-20T19:09:40.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:40 smithi082 bash[24745]: audit 2024-09-20T19:09:40.257124+0000 mon.a (mon.0) 513 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5b278825-78ca-4793-acd0-eb744e21f0f0"}]': finished 2024-09-20T19:09:40.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:40 smithi082 bash[24745]: cluster 2024-09-20T19:09:40.263606+0000 mon.a (mon.0) 514 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-20T19:09:40.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:40 smithi082 bash[24745]: cluster 2024-09-20T19:09:40.263606+0000 mon.a (mon.0) 514 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-20T19:09:40.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:40 smithi082 bash[24745]: audit 2024-09-20T19:09:40.264440+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:09:40.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:40 smithi082 bash[24745]: audit 2024-09-20T19:09:40.264440+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:09:41.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:40 smithi137 bash[25001]: audit 2024-09-20T19:09:40.253139+0000 mon.a (mon.0) 512 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5b278825-78ca-4793-acd0-eb744e21f0f0"} : dispatch 2024-09-20T19:09:41.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:40 smithi137 bash[25001]: audit 2024-09-20T19:09:40.253139+0000 mon.a (mon.0) 512 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5b278825-78ca-4793-acd0-eb744e21f0f0"} : dispatch 2024-09-20T19:09:41.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:40 smithi137 bash[25001]: audit 2024-09-20T19:09:40.254902+0000 mon.c (mon.1) 6 : audit [INF] from='client.? 172.21.15.137:0/3928707785' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5b278825-78ca-4793-acd0-eb744e21f0f0"} : dispatch 2024-09-20T19:09:41.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:40 smithi137 bash[25001]: audit 2024-09-20T19:09:40.254902+0000 mon.c (mon.1) 6 : audit [INF] from='client.? 172.21.15.137:0/3928707785' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5b278825-78ca-4793-acd0-eb744e21f0f0"} : dispatch 2024-09-20T19:09:41.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:40 smithi137 bash[25001]: audit 2024-09-20T19:09:40.257124+0000 mon.a (mon.0) 513 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5b278825-78ca-4793-acd0-eb744e21f0f0"}]': finished 2024-09-20T19:09:41.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:40 smithi137 bash[25001]: audit 2024-09-20T19:09:40.257124+0000 mon.a (mon.0) 513 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5b278825-78ca-4793-acd0-eb744e21f0f0"}]': finished 2024-09-20T19:09:41.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:40 smithi137 bash[25001]: cluster 2024-09-20T19:09:40.263606+0000 mon.a (mon.0) 514 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-20T19:09:41.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:40 smithi137 bash[25001]: cluster 2024-09-20T19:09:40.263606+0000 mon.a (mon.0) 514 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-20T19:09:41.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:40 smithi137 bash[25001]: audit 2024-09-20T19:09:40.264440+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:09:41.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:40 smithi137 bash[25001]: audit 2024-09-20T19:09:40.264440+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:09:41.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:41 smithi018 bash[22763]: cluster 2024-09-20T19:09:40.493527+0000 mgr.a (mgr.14152) 242 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:41.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:41 smithi018 bash[22763]: cluster 2024-09-20T19:09:40.493527+0000 mgr.a (mgr.14152) 242 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:41.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:41 smithi018 bash[22763]: audit 2024-09-20T19:09:40.920048+0000 mon.c (mon.1) 7 : audit [DBG] from='client.? 172.21.15.137:0/962158590' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:09:41.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:41 smithi018 bash[22763]: audit 2024-09-20T19:09:40.920048+0000 mon.c (mon.1) 7 : audit [DBG] from='client.? 172.21.15.137:0/962158590' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:09:41.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:41 smithi082 bash[24745]: cluster 2024-09-20T19:09:40.493527+0000 mgr.a (mgr.14152) 242 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:41.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:41 smithi082 bash[24745]: cluster 2024-09-20T19:09:40.493527+0000 mgr.a (mgr.14152) 242 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:41.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:41 smithi082 bash[24745]: audit 2024-09-20T19:09:40.920048+0000 mon.c (mon.1) 7 : audit [DBG] from='client.? 172.21.15.137:0/962158590' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:09:41.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:41 smithi082 bash[24745]: audit 2024-09-20T19:09:40.920048+0000 mon.c (mon.1) 7 : audit [DBG] from='client.? 172.21.15.137:0/962158590' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:09:42.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:41 smithi137 bash[25001]: cluster 2024-09-20T19:09:40.493527+0000 mgr.a (mgr.14152) 242 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:42.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:41 smithi137 bash[25001]: cluster 2024-09-20T19:09:40.493527+0000 mgr.a (mgr.14152) 242 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:42.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:41 smithi137 bash[25001]: audit 2024-09-20T19:09:40.920048+0000 mon.c (mon.1) 7 : audit [DBG] from='client.? 172.21.15.137:0/962158590' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:09:42.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:41 smithi137 bash[25001]: audit 2024-09-20T19:09:40.920048+0000 mon.c (mon.1) 7 : audit [DBG] from='client.? 172.21.15.137:0/962158590' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:09:43.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:43 smithi018 bash[22763]: cluster 2024-09-20T19:09:42.494091+0000 mgr.a (mgr.14152) 243 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:43.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:43 smithi018 bash[22763]: cluster 2024-09-20T19:09:42.494091+0000 mgr.a (mgr.14152) 243 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:43.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:43 smithi082 bash[24745]: cluster 2024-09-20T19:09:42.494091+0000 mgr.a (mgr.14152) 243 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:43.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:43 smithi082 bash[24745]: cluster 2024-09-20T19:09:42.494091+0000 mgr.a (mgr.14152) 243 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:44.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:43 smithi137 bash[25001]: cluster 2024-09-20T19:09:42.494091+0000 mgr.a (mgr.14152) 243 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:44.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:43 smithi137 bash[25001]: cluster 2024-09-20T19:09:42.494091+0000 mgr.a (mgr.14152) 243 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:45.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:45 smithi018 bash[22763]: cluster 2024-09-20T19:09:44.494649+0000 mgr.a (mgr.14152) 244 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:45.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:45 smithi018 bash[22763]: cluster 2024-09-20T19:09:44.494649+0000 mgr.a (mgr.14152) 244 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:45.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:45 smithi082 bash[24745]: cluster 2024-09-20T19:09:44.494649+0000 mgr.a (mgr.14152) 244 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:45.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:45 smithi082 bash[24745]: cluster 2024-09-20T19:09:44.494649+0000 mgr.a (mgr.14152) 244 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:46.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:45 smithi137 bash[25001]: cluster 2024-09-20T19:09:44.494649+0000 mgr.a (mgr.14152) 244 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:46.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:45 smithi137 bash[25001]: cluster 2024-09-20T19:09:44.494649+0000 mgr.a (mgr.14152) 244 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:47.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:47 smithi018 bash[22763]: cluster 2024-09-20T19:09:46.495212+0000 mgr.a (mgr.14152) 245 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:47.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:47 smithi018 bash[22763]: cluster 2024-09-20T19:09:46.495212+0000 mgr.a (mgr.14152) 245 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:47.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:47 smithi082 bash[24745]: cluster 2024-09-20T19:09:46.495212+0000 mgr.a (mgr.14152) 245 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:47.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:47 smithi082 bash[24745]: cluster 2024-09-20T19:09:46.495212+0000 mgr.a (mgr.14152) 245 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:48.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:47 smithi137 bash[25001]: cluster 2024-09-20T19:09:46.495212+0000 mgr.a (mgr.14152) 245 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:48.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:47 smithi137 bash[25001]: cluster 2024-09-20T19:09:46.495212+0000 mgr.a (mgr.14152) 245 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:49.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:49 smithi018 bash[22763]: cluster 2024-09-20T19:09:48.495766+0000 mgr.a (mgr.14152) 246 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:49.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:49 smithi018 bash[22763]: cluster 2024-09-20T19:09:48.495766+0000 mgr.a (mgr.14152) 246 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:49.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:49 smithi082 bash[24745]: cluster 2024-09-20T19:09:48.495766+0000 mgr.a (mgr.14152) 246 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:49.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:49 smithi082 bash[24745]: cluster 2024-09-20T19:09:48.495766+0000 mgr.a (mgr.14152) 246 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:50.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:49 smithi137 bash[25001]: cluster 2024-09-20T19:09:48.495766+0000 mgr.a (mgr.14152) 246 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:50.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:49 smithi137 bash[25001]: cluster 2024-09-20T19:09:48.495766+0000 mgr.a (mgr.14152) 246 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:51.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:51 smithi018 bash[22763]: cluster 2024-09-20T19:09:50.496305+0000 mgr.a (mgr.14152) 247 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:51.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:51 smithi018 bash[22763]: cluster 2024-09-20T19:09:50.496305+0000 mgr.a (mgr.14152) 247 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:51.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:51 smithi082 bash[24745]: cluster 2024-09-20T19:09:50.496305+0000 mgr.a (mgr.14152) 247 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:51.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:51 smithi082 bash[24745]: cluster 2024-09-20T19:09:50.496305+0000 mgr.a (mgr.14152) 247 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:52.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:51 smithi137 bash[25001]: cluster 2024-09-20T19:09:50.496305+0000 mgr.a (mgr.14152) 247 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:52.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:51 smithi137 bash[25001]: cluster 2024-09-20T19:09:50.496305+0000 mgr.a (mgr.14152) 247 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:53.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:53 smithi018 bash[22763]: cluster 2024-09-20T19:09:52.496950+0000 mgr.a (mgr.14152) 248 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:53.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:53 smithi018 bash[22763]: cluster 2024-09-20T19:09:52.496950+0000 mgr.a (mgr.14152) 248 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:53.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:53 smithi082 bash[24745]: cluster 2024-09-20T19:09:52.496950+0000 mgr.a (mgr.14152) 248 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:53.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:53 smithi082 bash[24745]: cluster 2024-09-20T19:09:52.496950+0000 mgr.a (mgr.14152) 248 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:54.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:53 smithi137 bash[25001]: cluster 2024-09-20T19:09:52.496950+0000 mgr.a (mgr.14152) 248 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:54.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:53 smithi137 bash[25001]: cluster 2024-09-20T19:09:52.496950+0000 mgr.a (mgr.14152) 248 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:54.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:54 smithi137 bash[25001]: audit 2024-09-20T19:09:53.878903+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-20T19:09:54.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:54 smithi137 bash[25001]: audit 2024-09-20T19:09:53.878903+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-20T19:09:54.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:54 smithi137 bash[25001]: audit 2024-09-20T19:09:53.880602+0000 mon.a (mon.0) 517 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:54.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:54 smithi137 bash[25001]: audit 2024-09-20T19:09:53.880602+0000 mon.a (mon.0) 517 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:54.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:54 smithi137 bash[25001]: cephadm 2024-09-20T19:09:53.882081+0000 mgr.a (mgr.14152) 249 : cephadm [INF] Deploying daemon osd.4 on smithi137 2024-09-20T19:09:54.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:54 smithi137 bash[25001]: cephadm 2024-09-20T19:09:53.882081+0000 mgr.a (mgr.14152) 249 : cephadm [INF] Deploying daemon osd.4 on smithi137 2024-09-20T19:09:54.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:54 smithi018 bash[22763]: audit 2024-09-20T19:09:53.878903+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-20T19:09:54.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:54 smithi018 bash[22763]: audit 2024-09-20T19:09:53.878903+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-20T19:09:54.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:54 smithi018 bash[22763]: audit 2024-09-20T19:09:53.880602+0000 mon.a (mon.0) 517 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:54.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:54 smithi018 bash[22763]: audit 2024-09-20T19:09:53.880602+0000 mon.a (mon.0) 517 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:54.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:54 smithi018 bash[22763]: cephadm 2024-09-20T19:09:53.882081+0000 mgr.a (mgr.14152) 249 : cephadm [INF] Deploying daemon osd.4 on smithi137 2024-09-20T19:09:54.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:54 smithi018 bash[22763]: cephadm 2024-09-20T19:09:53.882081+0000 mgr.a (mgr.14152) 249 : cephadm [INF] Deploying daemon osd.4 on smithi137 2024-09-20T19:09:54.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:54 smithi082 bash[24745]: audit 2024-09-20T19:09:53.878903+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-20T19:09:54.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:54 smithi082 bash[24745]: audit 2024-09-20T19:09:53.878903+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-20T19:09:54.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:54 smithi082 bash[24745]: audit 2024-09-20T19:09:53.880602+0000 mon.a (mon.0) 517 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:54.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:54 smithi082 bash[24745]: audit 2024-09-20T19:09:53.880602+0000 mon.a (mon.0) 517 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:09:54.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:54 smithi082 bash[24745]: cephadm 2024-09-20T19:09:53.882081+0000 mgr.a (mgr.14152) 249 : cephadm [INF] Deploying daemon osd.4 on smithi137 2024-09-20T19:09:54.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:54 smithi082 bash[24745]: cephadm 2024-09-20T19:09:53.882081+0000 mgr.a (mgr.14152) 249 : cephadm [INF] Deploying daemon osd.4 on smithi137 2024-09-20T19:09:55.797 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:55 smithi137 bash[25001]: cluster 2024-09-20T19:09:54.497624+0000 mgr.a (mgr.14152) 250 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:55.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:55 smithi137 bash[25001]: cluster 2024-09-20T19:09:54.497624+0000 mgr.a (mgr.14152) 250 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:55.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:55 smithi018 bash[22763]: cluster 2024-09-20T19:09:54.497624+0000 mgr.a (mgr.14152) 250 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:55.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:55 smithi018 bash[22763]: cluster 2024-09-20T19:09:54.497624+0000 mgr.a (mgr.14152) 250 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:55.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:55 smithi082 bash[24745]: cluster 2024-09-20T19:09:54.497624+0000 mgr.a (mgr.14152) 250 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:55.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:55 smithi082 bash[24745]: cluster 2024-09-20T19:09:54.497624+0000 mgr.a (mgr.14152) 250 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:57.898 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:57 smithi137 bash[25001]: cluster 2024-09-20T19:09:56.498195+0000 mgr.a (mgr.14152) 251 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:57.898 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:57 smithi137 bash[25001]: cluster 2024-09-20T19:09:56.498195+0000 mgr.a (mgr.14152) 251 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:57.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:57 smithi018 bash[22763]: cluster 2024-09-20T19:09:56.498195+0000 mgr.a (mgr.14152) 251 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:57.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:57 smithi018 bash[22763]: cluster 2024-09-20T19:09:56.498195+0000 mgr.a (mgr.14152) 251 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:57.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:57 smithi082 bash[24745]: cluster 2024-09-20T19:09:56.498195+0000 mgr.a (mgr.14152) 251 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:57.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:57 smithi082 bash[24745]: cluster 2024-09-20T19:09:56.498195+0000 mgr.a (mgr.14152) 251 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:58.180 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:58 smithi137 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:09:58.538 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:58 smithi137 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:09:58.797 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:58 smithi137 bash[25001]: audit 2024-09-20T19:09:58.461361+0000 mon.a (mon.0) 518 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:09:58.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:58 smithi137 bash[25001]: audit 2024-09-20T19:09:58.461361+0000 mon.a (mon.0) 518 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:09:58.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:58 smithi137 bash[25001]: audit 2024-09-20T19:09:58.468618+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:58.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:58 smithi137 bash[25001]: audit 2024-09-20T19:09:58.468618+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:58.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:58 smithi137 bash[25001]: audit 2024-09-20T19:09:58.476084+0000 mon.a (mon.0) 520 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:58.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:58 smithi137 bash[25001]: audit 2024-09-20T19:09:58.476084+0000 mon.a (mon.0) 520 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:58.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:58 smithi018 bash[22763]: audit 2024-09-20T19:09:58.461361+0000 mon.a (mon.0) 518 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:09:58.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:58 smithi018 bash[22763]: audit 2024-09-20T19:09:58.461361+0000 mon.a (mon.0) 518 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:09:58.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:58 smithi018 bash[22763]: audit 2024-09-20T19:09:58.468618+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:58.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:58 smithi018 bash[22763]: audit 2024-09-20T19:09:58.468618+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:58.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:58 smithi018 bash[22763]: audit 2024-09-20T19:09:58.476084+0000 mon.a (mon.0) 520 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:58.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:58 smithi018 bash[22763]: audit 2024-09-20T19:09:58.476084+0000 mon.a (mon.0) 520 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:58.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:58 smithi082 bash[24745]: audit 2024-09-20T19:09:58.461361+0000 mon.a (mon.0) 518 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:09:58.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:58 smithi082 bash[24745]: audit 2024-09-20T19:09:58.461361+0000 mon.a (mon.0) 518 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:09:58.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:58 smithi082 bash[24745]: audit 2024-09-20T19:09:58.468618+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:58.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:58 smithi082 bash[24745]: audit 2024-09-20T19:09:58.468618+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:58.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:58 smithi082 bash[24745]: audit 2024-09-20T19:09:58.476084+0000 mon.a (mon.0) 520 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:58.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:58 smithi082 bash[24745]: audit 2024-09-20T19:09:58.476084+0000 mon.a (mon.0) 520 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:09:59.797 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:59 smithi137 bash[25001]: cluster 2024-09-20T19:09:58.498705+0000 mgr.a (mgr.14152) 252 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:59.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:09:59 smithi137 bash[25001]: cluster 2024-09-20T19:09:58.498705+0000 mgr.a (mgr.14152) 252 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:59.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:59 smithi018 bash[22763]: cluster 2024-09-20T19:09:58.498705+0000 mgr.a (mgr.14152) 252 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:59.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:09:59 smithi018 bash[22763]: cluster 2024-09-20T19:09:58.498705+0000 mgr.a (mgr.14152) 252 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:59.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:59 smithi082 bash[24745]: cluster 2024-09-20T19:09:58.498705+0000 mgr.a (mgr.14152) 252 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:09:59.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:09:59 smithi082 bash[24745]: cluster 2024-09-20T19:09:58.498705+0000 mgr.a (mgr.14152) 252 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:00.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:00 smithi018 bash[22763]: cluster 2024-09-20T19:10:00.000165+0000 mon.a (mon.0) 521 : cluster [INF] overall HEALTH_OK 2024-09-20T19:10:00.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:00 smithi018 bash[22763]: cluster 2024-09-20T19:10:00.000165+0000 mon.a (mon.0) 521 : cluster [INF] overall HEALTH_OK 2024-09-20T19:10:00.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:00 smithi082 bash[24745]: cluster 2024-09-20T19:10:00.000165+0000 mon.a (mon.0) 521 : cluster [INF] overall HEALTH_OK 2024-09-20T19:10:01.029 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:00 smithi082 bash[24745]: cluster 2024-09-20T19:10:00.000165+0000 mon.a (mon.0) 521 : cluster [INF] overall HEALTH_OK 2024-09-20T19:10:01.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:00 smithi137 bash[25001]: cluster 2024-09-20T19:10:00.000165+0000 mon.a (mon.0) 521 : cluster [INF] overall HEALTH_OK 2024-09-20T19:10:01.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:00 smithi137 bash[25001]: cluster 2024-09-20T19:10:00.000165+0000 mon.a (mon.0) 521 : cluster [INF] overall HEALTH_OK 2024-09-20T19:10:01.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:01 smithi018 bash[22763]: cluster 2024-09-20T19:10:00.499316+0000 mgr.a (mgr.14152) 253 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:01.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:01 smithi018 bash[22763]: cluster 2024-09-20T19:10:00.499316+0000 mgr.a (mgr.14152) 253 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:01.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:01 smithi082 bash[24745]: cluster 2024-09-20T19:10:00.499316+0000 mgr.a (mgr.14152) 253 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:01.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:01 smithi082 bash[24745]: cluster 2024-09-20T19:10:00.499316+0000 mgr.a (mgr.14152) 253 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:02.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:01 smithi137 bash[25001]: cluster 2024-09-20T19:10:00.499316+0000 mgr.a (mgr.14152) 253 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:02.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:01 smithi137 bash[25001]: cluster 2024-09-20T19:10:00.499316+0000 mgr.a (mgr.14152) 253 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:03.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:03 smithi018 bash[22763]: cluster 2024-09-20T19:10:02.499908+0000 mgr.a (mgr.14152) 254 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:03.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:03 smithi018 bash[22763]: cluster 2024-09-20T19:10:02.499908+0000 mgr.a (mgr.14152) 254 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:03.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:03 smithi082 bash[24745]: cluster 2024-09-20T19:10:02.499908+0000 mgr.a (mgr.14152) 254 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:03.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:03 smithi082 bash[24745]: cluster 2024-09-20T19:10:02.499908+0000 mgr.a (mgr.14152) 254 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:04.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:03 smithi137 bash[25001]: cluster 2024-09-20T19:10:02.499908+0000 mgr.a (mgr.14152) 254 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:04.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:03 smithi137 bash[25001]: cluster 2024-09-20T19:10:02.499908+0000 mgr.a (mgr.14152) 254 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:05.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:04 smithi137 bash[25001]: audit 2024-09-20T19:10:03.747660+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:05.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:04 smithi137 bash[25001]: audit 2024-09-20T19:10:03.747660+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:05.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:04 smithi137 bash[25001]: audit 2024-09-20T19:10:03.755863+0000 mon.a (mon.0) 523 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:05.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:04 smithi137 bash[25001]: audit 2024-09-20T19:10:03.755863+0000 mon.a (mon.0) 523 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:05.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:04 smithi137 bash[25001]: audit 2024-09-20T19:10:04.452782+0000 mon.a (mon.0) 524 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:05.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:04 smithi137 bash[25001]: audit 2024-09-20T19:10:04.452782+0000 mon.a (mon.0) 524 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:05.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:04 smithi137 bash[25001]: audit 2024-09-20T19:10:04.454444+0000 mon.a (mon.0) 525 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:10:05.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:04 smithi137 bash[25001]: audit 2024-09-20T19:10:04.454444+0000 mon.a (mon.0) 525 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:10:05.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:04 smithi137 bash[25001]: audit 2024-09-20T19:10:04.465321+0000 mon.a (mon.0) 526 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:05.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:04 smithi137 bash[25001]: audit 2024-09-20T19:10:04.465321+0000 mon.a (mon.0) 526 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:05.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:04 smithi018 bash[22763]: audit 2024-09-20T19:10:03.747660+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:05.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:04 smithi018 bash[22763]: audit 2024-09-20T19:10:03.747660+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:05.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:04 smithi018 bash[22763]: audit 2024-09-20T19:10:03.755863+0000 mon.a (mon.0) 523 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:05.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:04 smithi018 bash[22763]: audit 2024-09-20T19:10:03.755863+0000 mon.a (mon.0) 523 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:05.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:04 smithi018 bash[22763]: audit 2024-09-20T19:10:04.452782+0000 mon.a (mon.0) 524 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:05.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:04 smithi018 bash[22763]: audit 2024-09-20T19:10:04.452782+0000 mon.a (mon.0) 524 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:05.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:04 smithi018 bash[22763]: audit 2024-09-20T19:10:04.454444+0000 mon.a (mon.0) 525 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:10:05.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:04 smithi018 bash[22763]: audit 2024-09-20T19:10:04.454444+0000 mon.a (mon.0) 525 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:10:05.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:04 smithi018 bash[22763]: audit 2024-09-20T19:10:04.465321+0000 mon.a (mon.0) 526 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:05.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:04 smithi018 bash[22763]: audit 2024-09-20T19:10:04.465321+0000 mon.a (mon.0) 526 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:05.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:04 smithi082 bash[24745]: audit 2024-09-20T19:10:03.747660+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:05.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:04 smithi082 bash[24745]: audit 2024-09-20T19:10:03.747660+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:05.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:04 smithi082 bash[24745]: audit 2024-09-20T19:10:03.755863+0000 mon.a (mon.0) 523 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:05.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:04 smithi082 bash[24745]: audit 2024-09-20T19:10:03.755863+0000 mon.a (mon.0) 523 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:05.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:04 smithi082 bash[24745]: audit 2024-09-20T19:10:04.452782+0000 mon.a (mon.0) 524 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:05.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:04 smithi082 bash[24745]: audit 2024-09-20T19:10:04.452782+0000 mon.a (mon.0) 524 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:05.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:04 smithi082 bash[24745]: audit 2024-09-20T19:10:04.454444+0000 mon.a (mon.0) 525 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:10:05.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:04 smithi082 bash[24745]: audit 2024-09-20T19:10:04.454444+0000 mon.a (mon.0) 525 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:10:05.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:04 smithi082 bash[24745]: audit 2024-09-20T19:10:04.465321+0000 mon.a (mon.0) 526 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:05.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:04 smithi082 bash[24745]: audit 2024-09-20T19:10:04.465321+0000 mon.a (mon.0) 526 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:06.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:05 smithi137 bash[25001]: cluster 2024-09-20T19:10:04.500312+0000 mgr.a (mgr.14152) 255 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:06.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:05 smithi137 bash[25001]: cluster 2024-09-20T19:10:04.500312+0000 mgr.a (mgr.14152) 255 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:06.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:05 smithi018 bash[22763]: cluster 2024-09-20T19:10:04.500312+0000 mgr.a (mgr.14152) 255 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:06.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:05 smithi018 bash[22763]: cluster 2024-09-20T19:10:04.500312+0000 mgr.a (mgr.14152) 255 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:06.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:05 smithi082 bash[24745]: cluster 2024-09-20T19:10:04.500312+0000 mgr.a (mgr.14152) 255 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:06.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:05 smithi082 bash[24745]: cluster 2024-09-20T19:10:04.500312+0000 mgr.a (mgr.14152) 255 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:08.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:07 smithi137 bash[25001]: cluster 2024-09-20T19:10:06.500839+0000 mgr.a (mgr.14152) 256 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:08.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:07 smithi137 bash[25001]: cluster 2024-09-20T19:10:06.500839+0000 mgr.a (mgr.14152) 256 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:08.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:07 smithi018 bash[22763]: cluster 2024-09-20T19:10:06.500839+0000 mgr.a (mgr.14152) 256 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:08.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:07 smithi018 bash[22763]: cluster 2024-09-20T19:10:06.500839+0000 mgr.a (mgr.14152) 256 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:08.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:07 smithi082 bash[24745]: cluster 2024-09-20T19:10:06.500839+0000 mgr.a (mgr.14152) 256 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:08.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:07 smithi082 bash[24745]: cluster 2024-09-20T19:10:06.500839+0000 mgr.a (mgr.14152) 256 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:10.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:09 smithi137 bash[25001]: cluster 2024-09-20T19:10:08.501363+0000 mgr.a (mgr.14152) 257 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:10.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:09 smithi137 bash[25001]: cluster 2024-09-20T19:10:08.501363+0000 mgr.a (mgr.14152) 257 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:10.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:09 smithi018 bash[22763]: cluster 2024-09-20T19:10:08.501363+0000 mgr.a (mgr.14152) 257 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:10.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:09 smithi018 bash[22763]: cluster 2024-09-20T19:10:08.501363+0000 mgr.a (mgr.14152) 257 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:10.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:09 smithi082 bash[24745]: cluster 2024-09-20T19:10:08.501363+0000 mgr.a (mgr.14152) 257 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:10.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:09 smithi082 bash[24745]: cluster 2024-09-20T19:10:08.501363+0000 mgr.a (mgr.14152) 257 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:10.477 INFO:teuthology.orchestra.run.smithi137.stdout:Created osd(s) 4 on host 'smithi137' 2024-09-20T19:10:11.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:10 smithi137 bash[25001]: audit 2024-09-20T19:10:10.452524+0000 mon.a (mon.0) 527 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:10:11.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:10 smithi137 bash[25001]: audit 2024-09-20T19:10:10.452524+0000 mon.a (mon.0) 527 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:10:11.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:10 smithi137 bash[25001]: audit 2024-09-20T19:10:10.460526+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:11.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:10 smithi137 bash[25001]: audit 2024-09-20T19:10:10.460526+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:11.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:10 smithi137 bash[25001]: audit 2024-09-20T19:10:10.468751+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:11.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:10 smithi137 bash[25001]: audit 2024-09-20T19:10:10.468751+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:11.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:10 smithi137 bash[25001]: audit 2024-09-20T19:10:10.503338+0000 mon.a (mon.0) 530 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-20T19:10:11.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:10 smithi137 bash[25001]: audit 2024-09-20T19:10:10.503338+0000 mon.a (mon.0) 530 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-20T19:10:11.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:10 smithi137 bash[25001]: audit 2024-09-20T19:10:10.505476+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.137:6800/276178861,v1:172.21.15.137:6801/276178861]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-20T19:10:11.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:10 smithi137 bash[25001]: audit 2024-09-20T19:10:10.505476+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.137:6800/276178861,v1:172.21.15.137:6801/276178861]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-20T19:10:11.106 DEBUG:teuthology.orchestra.run.smithi137:osd.4> sudo journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@osd.4.service 2024-09-20T19:10:11.109 INFO:tasks.cephadm:Deploying osd.5 on smithi137 with /dev/vg_nvme/lv_3... 2024-09-20T19:10:11.109 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- lvm zap /dev/vg_nvme/lv_3 2024-09-20T19:10:11.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:10 smithi018 bash[22763]: audit 2024-09-20T19:10:10.452524+0000 mon.a (mon.0) 527 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:10:11.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:10 smithi018 bash[22763]: audit 2024-09-20T19:10:10.452524+0000 mon.a (mon.0) 527 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:10:11.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:10 smithi018 bash[22763]: audit 2024-09-20T19:10:10.460526+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:11.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:10 smithi018 bash[22763]: audit 2024-09-20T19:10:10.460526+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:11.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:10 smithi018 bash[22763]: audit 2024-09-20T19:10:10.468751+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:11.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:10 smithi018 bash[22763]: audit 2024-09-20T19:10:10.468751+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:11.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:10 smithi018 bash[22763]: audit 2024-09-20T19:10:10.503338+0000 mon.a (mon.0) 530 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-20T19:10:11.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:10 smithi018 bash[22763]: audit 2024-09-20T19:10:10.503338+0000 mon.a (mon.0) 530 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-20T19:10:11.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:10 smithi018 bash[22763]: audit 2024-09-20T19:10:10.505476+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.137:6800/276178861,v1:172.21.15.137:6801/276178861]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-20T19:10:11.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:10 smithi018 bash[22763]: audit 2024-09-20T19:10:10.505476+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.137:6800/276178861,v1:172.21.15.137:6801/276178861]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-20T19:10:11.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:10 smithi082 bash[24745]: audit 2024-09-20T19:10:10.452524+0000 mon.a (mon.0) 527 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:10:11.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:10 smithi082 bash[24745]: audit 2024-09-20T19:10:10.452524+0000 mon.a (mon.0) 527 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:10:11.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:10 smithi082 bash[24745]: audit 2024-09-20T19:10:10.460526+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:11.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:10 smithi082 bash[24745]: audit 2024-09-20T19:10:10.460526+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:11.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:10 smithi082 bash[24745]: audit 2024-09-20T19:10:10.468751+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:11.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:10 smithi082 bash[24745]: audit 2024-09-20T19:10:10.468751+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:11.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:10 smithi082 bash[24745]: audit 2024-09-20T19:10:10.503338+0000 mon.a (mon.0) 530 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-20T19:10:11.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:10 smithi082 bash[24745]: audit 2024-09-20T19:10:10.503338+0000 mon.a (mon.0) 530 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-20T19:10:11.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:10 smithi082 bash[24745]: audit 2024-09-20T19:10:10.505476+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.137:6800/276178861,v1:172.21.15.137:6801/276178861]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-20T19:10:11.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:10 smithi082 bash[24745]: audit 2024-09-20T19:10:10.505476+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.137:6800/276178861,v1:172.21.15.137:6801/276178861]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-20T19:10:12.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:11 smithi137 bash[25001]: cluster 2024-09-20T19:10:10.501831+0000 mgr.a (mgr.14152) 258 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:12.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:11 smithi137 bash[25001]: cluster 2024-09-20T19:10:10.501831+0000 mgr.a (mgr.14152) 258 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:12.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:11 smithi137 bash[25001]: audit 2024-09-20T19:10:11.473404+0000 mon.a (mon.0) 531 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-20T19:10:12.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:11 smithi137 bash[25001]: audit 2024-09-20T19:10:11.473404+0000 mon.a (mon.0) 531 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-20T19:10:12.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:11 smithi137 bash[25001]: cluster 2024-09-20T19:10:11.478239+0000 mon.a (mon.0) 532 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-20T19:10:12.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:11 smithi137 bash[25001]: cluster 2024-09-20T19:10:11.478239+0000 mon.a (mon.0) 532 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-20T19:10:12.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:11 smithi137 bash[25001]: audit 2024-09-20T19:10:11.478680+0000 mon.a (mon.0) 533 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:12.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:11 smithi137 bash[25001]: audit 2024-09-20T19:10:11.478680+0000 mon.a (mon.0) 533 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:12.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:11 smithi137 bash[25001]: audit 2024-09-20T19:10:11.479575+0000 mon.a (mon.0) 534 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:10:12.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:11 smithi137 bash[25001]: audit 2024-09-20T19:10:11.479575+0000 mon.a (mon.0) 534 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:10:12.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:11 smithi137 bash[25001]: audit 2024-09-20T19:10:11.481449+0000 mon.c (mon.1) 9 : audit [INF] from='osd.4 [v2:172.21.15.137:6800/276178861,v1:172.21.15.137:6801/276178861]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:10:12.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:11 smithi137 bash[25001]: audit 2024-09-20T19:10:11.481449+0000 mon.c (mon.1) 9 : audit [INF] from='osd.4 [v2:172.21.15.137:6800/276178861,v1:172.21.15.137:6801/276178861]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:10:12.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:11 smithi018 bash[22763]: cluster 2024-09-20T19:10:10.501831+0000 mgr.a (mgr.14152) 258 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:12.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:11 smithi018 bash[22763]: cluster 2024-09-20T19:10:10.501831+0000 mgr.a (mgr.14152) 258 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:12.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:11 smithi018 bash[22763]: audit 2024-09-20T19:10:11.473404+0000 mon.a (mon.0) 531 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-20T19:10:12.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:11 smithi018 bash[22763]: audit 2024-09-20T19:10:11.473404+0000 mon.a (mon.0) 531 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-20T19:10:12.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:11 smithi018 bash[22763]: cluster 2024-09-20T19:10:11.478239+0000 mon.a (mon.0) 532 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-20T19:10:12.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:11 smithi018 bash[22763]: cluster 2024-09-20T19:10:11.478239+0000 mon.a (mon.0) 532 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-20T19:10:12.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:11 smithi018 bash[22763]: audit 2024-09-20T19:10:11.478680+0000 mon.a (mon.0) 533 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:12.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:11 smithi018 bash[22763]: audit 2024-09-20T19:10:11.478680+0000 mon.a (mon.0) 533 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:12.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:11 smithi018 bash[22763]: audit 2024-09-20T19:10:11.479575+0000 mon.a (mon.0) 534 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:10:12.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:11 smithi018 bash[22763]: audit 2024-09-20T19:10:11.479575+0000 mon.a (mon.0) 534 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:10:12.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:11 smithi018 bash[22763]: audit 2024-09-20T19:10:11.481449+0000 mon.c (mon.1) 9 : audit [INF] from='osd.4 [v2:172.21.15.137:6800/276178861,v1:172.21.15.137:6801/276178861]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:10:12.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:11 smithi018 bash[22763]: audit 2024-09-20T19:10:11.481449+0000 mon.c (mon.1) 9 : audit [INF] from='osd.4 [v2:172.21.15.137:6800/276178861,v1:172.21.15.137:6801/276178861]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:10:12.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:11 smithi082 bash[24745]: cluster 2024-09-20T19:10:10.501831+0000 mgr.a (mgr.14152) 258 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:12.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:11 smithi082 bash[24745]: cluster 2024-09-20T19:10:10.501831+0000 mgr.a (mgr.14152) 258 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:12.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:11 smithi082 bash[24745]: audit 2024-09-20T19:10:11.473404+0000 mon.a (mon.0) 531 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-20T19:10:12.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:11 smithi082 bash[24745]: audit 2024-09-20T19:10:11.473404+0000 mon.a (mon.0) 531 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-20T19:10:12.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:11 smithi082 bash[24745]: cluster 2024-09-20T19:10:11.478239+0000 mon.a (mon.0) 532 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-20T19:10:12.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:11 smithi082 bash[24745]: cluster 2024-09-20T19:10:11.478239+0000 mon.a (mon.0) 532 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-20T19:10:12.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:11 smithi082 bash[24745]: audit 2024-09-20T19:10:11.478680+0000 mon.a (mon.0) 533 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:12.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:11 smithi082 bash[24745]: audit 2024-09-20T19:10:11.478680+0000 mon.a (mon.0) 533 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:12.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:11 smithi082 bash[24745]: audit 2024-09-20T19:10:11.479575+0000 mon.a (mon.0) 534 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:10:12.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:11 smithi082 bash[24745]: audit 2024-09-20T19:10:11.479575+0000 mon.a (mon.0) 534 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:10:12.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:11 smithi082 bash[24745]: audit 2024-09-20T19:10:11.481449+0000 mon.c (mon.1) 9 : audit [INF] from='osd.4 [v2:172.21.15.137:6800/276178861,v1:172.21.15.137:6801/276178861]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:10:12.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:11 smithi082 bash[24745]: audit 2024-09-20T19:10:11.481449+0000 mon.c (mon.1) 9 : audit [INF] from='osd.4 [v2:172.21.15.137:6800/276178861,v1:172.21.15.137:6801/276178861]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:10:13.297 INFO:journalctl@ceph.osd.4.smithi137.stdout:Sep 20 19:10:12 smithi137 bash[27950]: debug 2024-09-20T19:10:12.984+0000 7efdc1d76640 -1 osd.4 0 waiting for initial osdmap 2024-09-20T19:10:13.298 INFO:journalctl@ceph.osd.4.smithi137.stdout:Sep 20 19:10:13 smithi137 bash[27950]: debug 2024-09-20T19:10:13.012+0000 7efdb9b95640 -1 osd.4 32 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-20T19:10:13.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:13 smithi137 bash[25001]: audit 2024-09-20T19:10:12.476155+0000 mon.a (mon.0) 535 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]': finished 2024-09-20T19:10:13.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:13 smithi137 bash[25001]: audit 2024-09-20T19:10:12.476155+0000 mon.a (mon.0) 535 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]': finished 2024-09-20T19:10:13.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:13 smithi137 bash[25001]: cluster 2024-09-20T19:10:12.481818+0000 mon.a (mon.0) 536 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-20T19:10:13.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:13 smithi137 bash[25001]: cluster 2024-09-20T19:10:12.481818+0000 mon.a (mon.0) 536 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-20T19:10:13.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:13 smithi137 bash[25001]: audit 2024-09-20T19:10:12.482305+0000 mon.a (mon.0) 537 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:13.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:13 smithi137 bash[25001]: audit 2024-09-20T19:10:12.482305+0000 mon.a (mon.0) 537 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:13.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:13 smithi137 bash[25001]: audit 2024-09-20T19:10:12.490192+0000 mon.a (mon.0) 538 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:13.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:13 smithi137 bash[25001]: audit 2024-09-20T19:10:12.490192+0000 mon.a (mon.0) 538 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:13.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:13 smithi137 bash[25001]: cluster 2024-09-20T19:10:12.502294+0000 mgr.a (mgr.14152) 259 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:13.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:13 smithi137 bash[25001]: cluster 2024-09-20T19:10:12.502294+0000 mgr.a (mgr.14152) 259 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:13.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:13 smithi137 bash[25001]: audit 2024-09-20T19:10:12.993967+0000 mon.a (mon.0) 539 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-20T19:10:13.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:13 smithi137 bash[25001]: audit 2024-09-20T19:10:12.993967+0000 mon.a (mon.0) 539 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-20T19:10:13.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:13 smithi018 bash[22763]: audit 2024-09-20T19:10:12.476155+0000 mon.a (mon.0) 535 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]': finished 2024-09-20T19:10:13.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:13 smithi018 bash[22763]: audit 2024-09-20T19:10:12.476155+0000 mon.a (mon.0) 535 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]': finished 2024-09-20T19:10:13.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:13 smithi018 bash[22763]: cluster 2024-09-20T19:10:12.481818+0000 mon.a (mon.0) 536 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-20T19:10:13.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:13 smithi018 bash[22763]: cluster 2024-09-20T19:10:12.481818+0000 mon.a (mon.0) 536 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-20T19:10:13.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:13 smithi018 bash[22763]: audit 2024-09-20T19:10:12.482305+0000 mon.a (mon.0) 537 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:13.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:13 smithi018 bash[22763]: audit 2024-09-20T19:10:12.482305+0000 mon.a (mon.0) 537 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:13.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:13 smithi018 bash[22763]: audit 2024-09-20T19:10:12.490192+0000 mon.a (mon.0) 538 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:13.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:13 smithi018 bash[22763]: audit 2024-09-20T19:10:12.490192+0000 mon.a (mon.0) 538 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:13.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:13 smithi018 bash[22763]: cluster 2024-09-20T19:10:12.502294+0000 mgr.a (mgr.14152) 259 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:13.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:13 smithi018 bash[22763]: cluster 2024-09-20T19:10:12.502294+0000 mgr.a (mgr.14152) 259 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:13.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:13 smithi018 bash[22763]: audit 2024-09-20T19:10:12.993967+0000 mon.a (mon.0) 539 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-20T19:10:13.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:13 smithi018 bash[22763]: audit 2024-09-20T19:10:12.993967+0000 mon.a (mon.0) 539 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-20T19:10:13.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:13 smithi082 bash[24745]: audit 2024-09-20T19:10:12.476155+0000 mon.a (mon.0) 535 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]': finished 2024-09-20T19:10:13.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:13 smithi082 bash[24745]: audit 2024-09-20T19:10:12.476155+0000 mon.a (mon.0) 535 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]': finished 2024-09-20T19:10:13.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:13 smithi082 bash[24745]: cluster 2024-09-20T19:10:12.481818+0000 mon.a (mon.0) 536 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-20T19:10:13.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:13 smithi082 bash[24745]: cluster 2024-09-20T19:10:12.481818+0000 mon.a (mon.0) 536 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-20T19:10:13.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:13 smithi082 bash[24745]: audit 2024-09-20T19:10:12.482305+0000 mon.a (mon.0) 537 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:13.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:13 smithi082 bash[24745]: audit 2024-09-20T19:10:12.482305+0000 mon.a (mon.0) 537 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:13.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:13 smithi082 bash[24745]: audit 2024-09-20T19:10:12.490192+0000 mon.a (mon.0) 538 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:13.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:13 smithi082 bash[24745]: audit 2024-09-20T19:10:12.490192+0000 mon.a (mon.0) 538 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:13.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:13 smithi082 bash[24745]: cluster 2024-09-20T19:10:12.502294+0000 mgr.a (mgr.14152) 259 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:13.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:13 smithi082 bash[24745]: cluster 2024-09-20T19:10:12.502294+0000 mgr.a (mgr.14152) 259 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 120 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:10:13.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:13 smithi082 bash[24745]: audit 2024-09-20T19:10:12.993967+0000 mon.a (mon.0) 539 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-20T19:10:13.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:13 smithi082 bash[24745]: audit 2024-09-20T19:10:12.993967+0000 mon.a (mon.0) 539 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-20T19:10:14.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:14 smithi137 bash[25001]: cluster 2024-09-20T19:10:11.482148+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:10:14.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:14 smithi137 bash[25001]: cluster 2024-09-20T19:10:11.482148+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:10:14.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:14 smithi137 bash[25001]: cluster 2024-09-20T19:10:11.482268+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:10:14.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:14 smithi137 bash[25001]: cluster 2024-09-20T19:10:11.482268+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:10:14.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:14 smithi137 bash[25001]: cluster 2024-09-20T19:10:13.492251+0000 mon.a (mon.0) 540 : cluster [INF] osd.4 [v2:172.21.15.137:6800/276178861,v1:172.21.15.137:6801/276178861] boot 2024-09-20T19:10:14.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:14 smithi137 bash[25001]: cluster 2024-09-20T19:10:13.492251+0000 mon.a (mon.0) 540 : cluster [INF] osd.4 [v2:172.21.15.137:6800/276178861,v1:172.21.15.137:6801/276178861] boot 2024-09-20T19:10:14.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:14 smithi137 bash[25001]: cluster 2024-09-20T19:10:13.492336+0000 mon.a (mon.0) 541 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-20T19:10:14.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:14 smithi137 bash[25001]: cluster 2024-09-20T19:10:13.492336+0000 mon.a (mon.0) 541 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-20T19:10:14.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:14 smithi137 bash[25001]: audit 2024-09-20T19:10:13.492981+0000 mon.a (mon.0) 542 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:14.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:14 smithi137 bash[25001]: audit 2024-09-20T19:10:13.492981+0000 mon.a (mon.0) 542 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:14.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:14 smithi137 bash[25001]: cluster 2024-09-20T19:10:14.339043+0000 mon.a (mon.0) 543 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-20T19:10:14.799 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:14 smithi137 bash[25001]: cluster 2024-09-20T19:10:14.339043+0000 mon.a (mon.0) 543 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-20T19:10:14.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:14 smithi018 bash[22763]: cluster 2024-09-20T19:10:11.482148+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:10:14.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:14 smithi018 bash[22763]: cluster 2024-09-20T19:10:11.482148+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:10:14.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:14 smithi018 bash[22763]: cluster 2024-09-20T19:10:11.482268+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:10:14.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:14 smithi018 bash[22763]: cluster 2024-09-20T19:10:11.482268+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:10:14.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:14 smithi018 bash[22763]: cluster 2024-09-20T19:10:13.492251+0000 mon.a (mon.0) 540 : cluster [INF] osd.4 [v2:172.21.15.137:6800/276178861,v1:172.21.15.137:6801/276178861] boot 2024-09-20T19:10:14.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:14 smithi018 bash[22763]: cluster 2024-09-20T19:10:13.492251+0000 mon.a (mon.0) 540 : cluster [INF] osd.4 [v2:172.21.15.137:6800/276178861,v1:172.21.15.137:6801/276178861] boot 2024-09-20T19:10:14.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:14 smithi018 bash[22763]: cluster 2024-09-20T19:10:13.492336+0000 mon.a (mon.0) 541 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-20T19:10:14.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:14 smithi018 bash[22763]: cluster 2024-09-20T19:10:13.492336+0000 mon.a (mon.0) 541 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-20T19:10:14.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:14 smithi018 bash[22763]: audit 2024-09-20T19:10:13.492981+0000 mon.a (mon.0) 542 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:14.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:14 smithi018 bash[22763]: audit 2024-09-20T19:10:13.492981+0000 mon.a (mon.0) 542 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:14.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:14 smithi018 bash[22763]: cluster 2024-09-20T19:10:14.339043+0000 mon.a (mon.0) 543 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-20T19:10:14.923 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:14 smithi018 bash[22763]: cluster 2024-09-20T19:10:14.339043+0000 mon.a (mon.0) 543 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-20T19:10:14.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:14 smithi082 bash[24745]: cluster 2024-09-20T19:10:11.482148+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:10:14.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:14 smithi082 bash[24745]: cluster 2024-09-20T19:10:11.482148+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:10:14.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:14 smithi082 bash[24745]: cluster 2024-09-20T19:10:11.482268+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:10:14.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:14 smithi082 bash[24745]: cluster 2024-09-20T19:10:11.482268+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:10:14.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:14 smithi082 bash[24745]: cluster 2024-09-20T19:10:13.492251+0000 mon.a (mon.0) 540 : cluster [INF] osd.4 [v2:172.21.15.137:6800/276178861,v1:172.21.15.137:6801/276178861] boot 2024-09-20T19:10:14.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:14 smithi082 bash[24745]: cluster 2024-09-20T19:10:13.492251+0000 mon.a (mon.0) 540 : cluster [INF] osd.4 [v2:172.21.15.137:6800/276178861,v1:172.21.15.137:6801/276178861] boot 2024-09-20T19:10:14.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:14 smithi082 bash[24745]: cluster 2024-09-20T19:10:13.492336+0000 mon.a (mon.0) 541 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-20T19:10:14.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:14 smithi082 bash[24745]: cluster 2024-09-20T19:10:13.492336+0000 mon.a (mon.0) 541 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-20T19:10:14.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:14 smithi082 bash[24745]: audit 2024-09-20T19:10:13.492981+0000 mon.a (mon.0) 542 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:14.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:14 smithi082 bash[24745]: audit 2024-09-20T19:10:13.492981+0000 mon.a (mon.0) 542 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-20T19:10:14.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:14 smithi082 bash[24745]: cluster 2024-09-20T19:10:14.339043+0000 mon.a (mon.0) 543 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-20T19:10:14.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:14 smithi082 bash[24745]: cluster 2024-09-20T19:10:14.339043+0000 mon.a (mon.0) 543 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-20T19:10:15.475 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.c/config 2024-09-20T19:10:15.797 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:15 smithi137 bash[25001]: cluster 2024-09-20T19:10:14.502831+0000 mgr.a (mgr.14152) 260 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:15.797 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:15 smithi137 bash[25001]: cluster 2024-09-20T19:10:14.502831+0000 mgr.a (mgr.14152) 260 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:15.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:15 smithi137 bash[25001]: cluster 2024-09-20T19:10:15.340576+0000 mon.a (mon.0) 544 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-20T19:10:15.798 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:15 smithi137 bash[25001]: cluster 2024-09-20T19:10:15.340576+0000 mon.a (mon.0) 544 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-20T19:10:15.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:15 smithi018 bash[22763]: cluster 2024-09-20T19:10:14.502831+0000 mgr.a (mgr.14152) 260 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:15.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:15 smithi018 bash[22763]: cluster 2024-09-20T19:10:14.502831+0000 mgr.a (mgr.14152) 260 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:15.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:15 smithi018 bash[22763]: cluster 2024-09-20T19:10:15.340576+0000 mon.a (mon.0) 544 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-20T19:10:15.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:15 smithi018 bash[22763]: cluster 2024-09-20T19:10:15.340576+0000 mon.a (mon.0) 544 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-20T19:10:15.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:15 smithi082 bash[24745]: cluster 2024-09-20T19:10:14.502831+0000 mgr.a (mgr.14152) 260 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:15.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:15 smithi082 bash[24745]: cluster 2024-09-20T19:10:14.502831+0000 mgr.a (mgr.14152) 260 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:15.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:15 smithi082 bash[24745]: cluster 2024-09-20T19:10:15.340576+0000 mon.a (mon.0) 544 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-20T19:10:15.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:15 smithi082 bash[24745]: cluster 2024-09-20T19:10:15.340576+0000 mon.a (mon.0) 544 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-20T19:10:17.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:17 smithi018 bash[22763]: cluster 2024-09-20T19:10:16.503399+0000 mgr.a (mgr.14152) 261 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 143 KiB/s, 0 objects/s recovering 2024-09-20T19:10:17.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:17 smithi018 bash[22763]: cluster 2024-09-20T19:10:16.503399+0000 mgr.a (mgr.14152) 261 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 143 KiB/s, 0 objects/s recovering 2024-09-20T19:10:17.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:17 smithi082 bash[24745]: cluster 2024-09-20T19:10:16.503399+0000 mgr.a (mgr.14152) 261 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 143 KiB/s, 0 objects/s recovering 2024-09-20T19:10:17.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:17 smithi082 bash[24745]: cluster 2024-09-20T19:10:16.503399+0000 mgr.a (mgr.14152) 261 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 143 KiB/s, 0 objects/s recovering 2024-09-20T19:10:18.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:17 smithi137 bash[25001]: cluster 2024-09-20T19:10:16.503399+0000 mgr.a (mgr.14152) 261 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 143 KiB/s, 0 objects/s recovering 2024-09-20T19:10:18.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:17 smithi137 bash[25001]: cluster 2024-09-20T19:10:16.503399+0000 mgr.a (mgr.14152) 261 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 143 KiB/s, 0 objects/s recovering 2024-09-20T19:10:19.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:19 smithi018 bash[22763]: cluster 2024-09-20T19:10:18.503937+0000 mgr.a (mgr.14152) 262 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-20T19:10:19.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:19 smithi018 bash[22763]: cluster 2024-09-20T19:10:18.503937+0000 mgr.a (mgr.14152) 262 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-20T19:10:19.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:19 smithi082 bash[24745]: cluster 2024-09-20T19:10:18.503937+0000 mgr.a (mgr.14152) 262 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-20T19:10:19.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:19 smithi082 bash[24745]: cluster 2024-09-20T19:10:18.503937+0000 mgr.a (mgr.14152) 262 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-20T19:10:20.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:19 smithi137 bash[25001]: cluster 2024-09-20T19:10:18.503937+0000 mgr.a (mgr.14152) 262 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-20T19:10:20.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:19 smithi137 bash[25001]: cluster 2024-09-20T19:10:18.503937+0000 mgr.a (mgr.14152) 262 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-20T19:10:22.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:21 smithi018 bash[22763]: cluster 2024-09-20T19:10:20.504469+0000 mgr.a (mgr.14152) 263 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 82 KiB/s, 0 objects/s recovering 2024-09-20T19:10:22.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:21 smithi018 bash[22763]: cluster 2024-09-20T19:10:20.504469+0000 mgr.a (mgr.14152) 263 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 82 KiB/s, 0 objects/s recovering 2024-09-20T19:10:22.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:21 smithi018 bash[22763]: cephadm 2024-09-20T19:10:20.851705+0000 mgr.a (mgr.14152) 264 : cephadm [INF] Detected new or changed devices on smithi137 2024-09-20T19:10:22.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:21 smithi018 bash[22763]: cephadm 2024-09-20T19:10:20.851705+0000 mgr.a (mgr.14152) 264 : cephadm [INF] Detected new or changed devices on smithi137 2024-09-20T19:10:22.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:21 smithi018 bash[22763]: audit 2024-09-20T19:10:20.859942+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:21 smithi018 bash[22763]: audit 2024-09-20T19:10:20.859942+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:21 smithi018 bash[22763]: audit 2024-09-20T19:10:20.867852+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:21 smithi018 bash[22763]: audit 2024-09-20T19:10:20.867852+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:21 smithi018 bash[22763]: audit 2024-09-20T19:10:20.870312+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-20T19:10:22.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:21 smithi018 bash[22763]: audit 2024-09-20T19:10:20.870312+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-20T19:10:22.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:21 smithi018 bash[22763]: cephadm 2024-09-20T19:10:20.871592+0000 mgr.a (mgr.14152) 265 : cephadm [INF] Adjusting osd_memory_target on smithi137 to 21361M 2024-09-20T19:10:22.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:21 smithi018 bash[22763]: cephadm 2024-09-20T19:10:20.871592+0000 mgr.a (mgr.14152) 265 : cephadm [INF] Adjusting osd_memory_target on smithi137 to 21361M 2024-09-20T19:10:22.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:21 smithi018 bash[22763]: audit 2024-09-20T19:10:20.877553+0000 mon.a (mon.0) 548 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:21 smithi018 bash[22763]: audit 2024-09-20T19:10:20.877553+0000 mon.a (mon.0) 548 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:21 smithi018 bash[22763]: audit 2024-09-20T19:10:20.881323+0000 mon.a (mon.0) 549 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:22.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:21 smithi018 bash[22763]: audit 2024-09-20T19:10:20.881323+0000 mon.a (mon.0) 549 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:22.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:21 smithi018 bash[22763]: audit 2024-09-20T19:10:20.883123+0000 mon.a (mon.0) 550 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:10:22.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:21 smithi018 bash[22763]: audit 2024-09-20T19:10:20.883123+0000 mon.a (mon.0) 550 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:10:22.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:21 smithi018 bash[22763]: audit 2024-09-20T19:10:20.892744+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:21 smithi018 bash[22763]: audit 2024-09-20T19:10:20.892744+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:21 smithi082 bash[24745]: cluster 2024-09-20T19:10:20.504469+0000 mgr.a (mgr.14152) 263 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 82 KiB/s, 0 objects/s recovering 2024-09-20T19:10:22.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:21 smithi082 bash[24745]: cluster 2024-09-20T19:10:20.504469+0000 mgr.a (mgr.14152) 263 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 82 KiB/s, 0 objects/s recovering 2024-09-20T19:10:22.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:21 smithi082 bash[24745]: cephadm 2024-09-20T19:10:20.851705+0000 mgr.a (mgr.14152) 264 : cephadm [INF] Detected new or changed devices on smithi137 2024-09-20T19:10:22.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:21 smithi082 bash[24745]: cephadm 2024-09-20T19:10:20.851705+0000 mgr.a (mgr.14152) 264 : cephadm [INF] Detected new or changed devices on smithi137 2024-09-20T19:10:22.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:21 smithi082 bash[24745]: audit 2024-09-20T19:10:20.859942+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:21 smithi082 bash[24745]: audit 2024-09-20T19:10:20.859942+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:21 smithi082 bash[24745]: audit 2024-09-20T19:10:20.867852+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:21 smithi082 bash[24745]: audit 2024-09-20T19:10:20.867852+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:21 smithi082 bash[24745]: audit 2024-09-20T19:10:20.870312+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-20T19:10:22.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:21 smithi082 bash[24745]: audit 2024-09-20T19:10:20.870312+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-20T19:10:22.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:21 smithi082 bash[24745]: cephadm 2024-09-20T19:10:20.871592+0000 mgr.a (mgr.14152) 265 : cephadm [INF] Adjusting osd_memory_target on smithi137 to 21361M 2024-09-20T19:10:22.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:21 smithi082 bash[24745]: cephadm 2024-09-20T19:10:20.871592+0000 mgr.a (mgr.14152) 265 : cephadm [INF] Adjusting osd_memory_target on smithi137 to 21361M 2024-09-20T19:10:22.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:21 smithi082 bash[24745]: audit 2024-09-20T19:10:20.877553+0000 mon.a (mon.0) 548 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:21 smithi082 bash[24745]: audit 2024-09-20T19:10:20.877553+0000 mon.a (mon.0) 548 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:21 smithi082 bash[24745]: audit 2024-09-20T19:10:20.881323+0000 mon.a (mon.0) 549 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:22.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:21 smithi082 bash[24745]: audit 2024-09-20T19:10:20.881323+0000 mon.a (mon.0) 549 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:22.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:21 smithi082 bash[24745]: audit 2024-09-20T19:10:20.883123+0000 mon.a (mon.0) 550 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:10:22.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:21 smithi082 bash[24745]: audit 2024-09-20T19:10:20.883123+0000 mon.a (mon.0) 550 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:10:22.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:21 smithi082 bash[24745]: audit 2024-09-20T19:10:20.892744+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:21 smithi082 bash[24745]: audit 2024-09-20T19:10:20.892744+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:21 smithi137 bash[25001]: cluster 2024-09-20T19:10:20.504469+0000 mgr.a (mgr.14152) 263 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 82 KiB/s, 0 objects/s recovering 2024-09-20T19:10:22.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:21 smithi137 bash[25001]: cluster 2024-09-20T19:10:20.504469+0000 mgr.a (mgr.14152) 263 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 82 KiB/s, 0 objects/s recovering 2024-09-20T19:10:22.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:21 smithi137 bash[25001]: cephadm 2024-09-20T19:10:20.851705+0000 mgr.a (mgr.14152) 264 : cephadm [INF] Detected new or changed devices on smithi137 2024-09-20T19:10:22.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:21 smithi137 bash[25001]: cephadm 2024-09-20T19:10:20.851705+0000 mgr.a (mgr.14152) 264 : cephadm [INF] Detected new or changed devices on smithi137 2024-09-20T19:10:22.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:21 smithi137 bash[25001]: audit 2024-09-20T19:10:20.859942+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:21 smithi137 bash[25001]: audit 2024-09-20T19:10:20.859942+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:21 smithi137 bash[25001]: audit 2024-09-20T19:10:20.867852+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:21 smithi137 bash[25001]: audit 2024-09-20T19:10:20.867852+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:21 smithi137 bash[25001]: audit 2024-09-20T19:10:20.870312+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-20T19:10:22.298 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:21 smithi137 bash[25001]: audit 2024-09-20T19:10:20.870312+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-20T19:10:22.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:21 smithi137 bash[25001]: cephadm 2024-09-20T19:10:20.871592+0000 mgr.a (mgr.14152) 265 : cephadm [INF] Adjusting osd_memory_target on smithi137 to 21361M 2024-09-20T19:10:22.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:21 smithi137 bash[25001]: cephadm 2024-09-20T19:10:20.871592+0000 mgr.a (mgr.14152) 265 : cephadm [INF] Adjusting osd_memory_target on smithi137 to 21361M 2024-09-20T19:10:22.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:21 smithi137 bash[25001]: audit 2024-09-20T19:10:20.877553+0000 mon.a (mon.0) 548 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:21 smithi137 bash[25001]: audit 2024-09-20T19:10:20.877553+0000 mon.a (mon.0) 548 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:21 smithi137 bash[25001]: audit 2024-09-20T19:10:20.881323+0000 mon.a (mon.0) 549 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:22.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:21 smithi137 bash[25001]: audit 2024-09-20T19:10:20.881323+0000 mon.a (mon.0) 549 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:22.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:21 smithi137 bash[25001]: audit 2024-09-20T19:10:20.883123+0000 mon.a (mon.0) 550 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:10:22.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:21 smithi137 bash[25001]: audit 2024-09-20T19:10:20.883123+0000 mon.a (mon.0) 550 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:10:22.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:21 smithi137 bash[25001]: audit 2024-09-20T19:10:20.892744+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:22.299 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:21 smithi137 bash[25001]: audit 2024-09-20T19:10:20.892744+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:23.399 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-09-20T19:10:23.441 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph orch daemon add osd smithi137:vg_nvme/lv_3 2024-09-20T19:10:24.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:23 smithi018 bash[22763]: cluster 2024-09-20T19:10:22.505054+0000 mgr.a (mgr.14152) 266 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-09-20T19:10:24.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:23 smithi018 bash[22763]: cluster 2024-09-20T19:10:22.505054+0000 mgr.a (mgr.14152) 266 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-09-20T19:10:24.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:23 smithi082 bash[24745]: cluster 2024-09-20T19:10:22.505054+0000 mgr.a (mgr.14152) 266 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-09-20T19:10:24.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:23 smithi082 bash[24745]: cluster 2024-09-20T19:10:22.505054+0000 mgr.a (mgr.14152) 266 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-09-20T19:10:24.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:23 smithi137 bash[25001]: cluster 2024-09-20T19:10:22.505054+0000 mgr.a (mgr.14152) 266 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-09-20T19:10:24.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:23 smithi137 bash[25001]: cluster 2024-09-20T19:10:22.505054+0000 mgr.a (mgr.14152) 266 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-09-20T19:10:26.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:25 smithi018 bash[22763]: cluster 2024-09-20T19:10:24.505614+0000 mgr.a (mgr.14152) 267 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-20T19:10:26.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:25 smithi018 bash[22763]: cluster 2024-09-20T19:10:24.505614+0000 mgr.a (mgr.14152) 267 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-20T19:10:26.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:25 smithi082 bash[24745]: cluster 2024-09-20T19:10:24.505614+0000 mgr.a (mgr.14152) 267 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-20T19:10:26.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:25 smithi082 bash[24745]: cluster 2024-09-20T19:10:24.505614+0000 mgr.a (mgr.14152) 267 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-20T19:10:26.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:25 smithi137 bash[25001]: cluster 2024-09-20T19:10:24.505614+0000 mgr.a (mgr.14152) 267 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-20T19:10:26.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:25 smithi137 bash[25001]: cluster 2024-09-20T19:10:24.505614+0000 mgr.a (mgr.14152) 267 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-20T19:10:28.169 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.c/config 2024-09-20T19:10:28.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:27 smithi018 bash[22763]: cluster 2024-09-20T19:10:26.506204+0000 mgr.a (mgr.14152) 268 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-20T19:10:28.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:27 smithi018 bash[22763]: cluster 2024-09-20T19:10:26.506204+0000 mgr.a (mgr.14152) 268 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-20T19:10:28.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:27 smithi082 bash[24745]: cluster 2024-09-20T19:10:26.506204+0000 mgr.a (mgr.14152) 268 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-20T19:10:28.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:27 smithi082 bash[24745]: cluster 2024-09-20T19:10:26.506204+0000 mgr.a (mgr.14152) 268 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-20T19:10:28.264 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:27 smithi137 bash[25001]: cluster 2024-09-20T19:10:26.506204+0000 mgr.a (mgr.14152) 268 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-20T19:10:28.264 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:27 smithi137 bash[25001]: cluster 2024-09-20T19:10:26.506204+0000 mgr.a (mgr.14152) 268 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-20T19:10:30.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:29 smithi018 bash[22763]: cluster 2024-09-20T19:10:28.506736+0000 mgr.a (mgr.14152) 269 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:30.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:29 smithi018 bash[22763]: cluster 2024-09-20T19:10:28.506736+0000 mgr.a (mgr.14152) 269 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:30.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:29 smithi018 bash[22763]: audit 2024-09-20T19:10:29.628795+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:10:30.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:29 smithi018 bash[22763]: audit 2024-09-20T19:10:29.628795+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:10:30.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:29 smithi018 bash[22763]: audit 2024-09-20T19:10:29.634934+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:10:30.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:29 smithi018 bash[22763]: audit 2024-09-20T19:10:29.634934+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:10:30.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:29 smithi018 bash[22763]: audit 2024-09-20T19:10:29.636827+0000 mon.a (mon.0) 554 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:30.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:29 smithi018 bash[22763]: audit 2024-09-20T19:10:29.636827+0000 mon.a (mon.0) 554 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:30.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:29 smithi082 bash[24745]: cluster 2024-09-20T19:10:28.506736+0000 mgr.a (mgr.14152) 269 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:30.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:29 smithi082 bash[24745]: cluster 2024-09-20T19:10:28.506736+0000 mgr.a (mgr.14152) 269 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:30.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:29 smithi082 bash[24745]: audit 2024-09-20T19:10:29.628795+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:10:30.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:29 smithi082 bash[24745]: audit 2024-09-20T19:10:29.628795+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:10:30.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:29 smithi082 bash[24745]: audit 2024-09-20T19:10:29.634934+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:10:30.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:29 smithi082 bash[24745]: audit 2024-09-20T19:10:29.634934+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:10:30.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:29 smithi082 bash[24745]: audit 2024-09-20T19:10:29.636827+0000 mon.a (mon.0) 554 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:30.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:29 smithi082 bash[24745]: audit 2024-09-20T19:10:29.636827+0000 mon.a (mon.0) 554 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:30.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:29 smithi137 bash[25001]: cluster 2024-09-20T19:10:28.506736+0000 mgr.a (mgr.14152) 269 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:30.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:29 smithi137 bash[25001]: cluster 2024-09-20T19:10:28.506736+0000 mgr.a (mgr.14152) 269 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:30.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:29 smithi137 bash[25001]: audit 2024-09-20T19:10:29.628795+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:10:30.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:29 smithi137 bash[25001]: audit 2024-09-20T19:10:29.628795+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-20T19:10:30.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:29 smithi137 bash[25001]: audit 2024-09-20T19:10:29.634934+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:10:30.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:29 smithi137 bash[25001]: audit 2024-09-20T19:10:29.634934+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-20T19:10:30.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:29 smithi137 bash[25001]: audit 2024-09-20T19:10:29.636827+0000 mon.a (mon.0) 554 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:30.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:29 smithi137 bash[25001]: audit 2024-09-20T19:10:29.636827+0000 mon.a (mon.0) 554 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:31.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:30 smithi018 bash[22763]: audit 2024-09-20T19:10:29.622416+0000 mgr.a (mgr.14152) 270 : audit [DBG] from='client.24220 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi137:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:10:31.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:30 smithi018 bash[22763]: audit 2024-09-20T19:10:29.622416+0000 mgr.a (mgr.14152) 270 : audit [DBG] from='client.24220 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi137:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:10:31.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:30 smithi082 bash[24745]: audit 2024-09-20T19:10:29.622416+0000 mgr.a (mgr.14152) 270 : audit [DBG] from='client.24220 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi137:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:10:31.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:30 smithi082 bash[24745]: audit 2024-09-20T19:10:29.622416+0000 mgr.a (mgr.14152) 270 : audit [DBG] from='client.24220 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi137:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:10:31.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:30 smithi137 bash[25001]: audit 2024-09-20T19:10:29.622416+0000 mgr.a (mgr.14152) 270 : audit [DBG] from='client.24220 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi137:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:10:31.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:30 smithi137 bash[25001]: audit 2024-09-20T19:10:29.622416+0000 mgr.a (mgr.14152) 270 : audit [DBG] from='client.24220 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi137:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:10:32.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:31 smithi018 bash[22763]: cluster 2024-09-20T19:10:30.507246+0000 mgr.a (mgr.14152) 271 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:32.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:31 smithi018 bash[22763]: cluster 2024-09-20T19:10:30.507246+0000 mgr.a (mgr.14152) 271 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:32.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:31 smithi082 bash[24745]: cluster 2024-09-20T19:10:30.507246+0000 mgr.a (mgr.14152) 271 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:32.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:31 smithi082 bash[24745]: cluster 2024-09-20T19:10:30.507246+0000 mgr.a (mgr.14152) 271 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:32.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:31 smithi137 bash[25001]: cluster 2024-09-20T19:10:30.507246+0000 mgr.a (mgr.14152) 271 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:32.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:31 smithi137 bash[25001]: cluster 2024-09-20T19:10:30.507246+0000 mgr.a (mgr.14152) 271 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:34.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:33 smithi018 bash[22763]: cluster 2024-09-20T19:10:32.507796+0000 mgr.a (mgr.14152) 272 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:34.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:33 smithi018 bash[22763]: cluster 2024-09-20T19:10:32.507796+0000 mgr.a (mgr.14152) 272 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:34.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:33 smithi082 bash[24745]: cluster 2024-09-20T19:10:32.507796+0000 mgr.a (mgr.14152) 272 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:34.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:33 smithi082 bash[24745]: cluster 2024-09-20T19:10:32.507796+0000 mgr.a (mgr.14152) 272 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:34.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:33 smithi137 bash[25001]: cluster 2024-09-20T19:10:32.507796+0000 mgr.a (mgr.14152) 272 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:34.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:33 smithi137 bash[25001]: cluster 2024-09-20T19:10:32.507796+0000 mgr.a (mgr.14152) 272 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:35.636 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:35 smithi137 bash[25001]: cluster 2024-09-20T19:10:34.508328+0000 mgr.a (mgr.14152) 273 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:35.636 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:35 smithi137 bash[25001]: cluster 2024-09-20T19:10:34.508328+0000 mgr.a (mgr.14152) 273 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:35.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:35 smithi018 bash[22763]: cluster 2024-09-20T19:10:34.508328+0000 mgr.a (mgr.14152) 273 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:35.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:35 smithi018 bash[22763]: cluster 2024-09-20T19:10:34.508328+0000 mgr.a (mgr.14152) 273 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:35.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:35 smithi082 bash[24745]: cluster 2024-09-20T19:10:34.508328+0000 mgr.a (mgr.14152) 273 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:35.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:35 smithi082 bash[24745]: cluster 2024-09-20T19:10:34.508328+0000 mgr.a (mgr.14152) 273 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:37.920 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:37 smithi018 bash[22763]: cluster 2024-09-20T19:10:36.508868+0000 mgr.a (mgr.14152) 274 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:37.920 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:37 smithi018 bash[22763]: cluster 2024-09-20T19:10:36.508868+0000 mgr.a (mgr.14152) 274 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:37.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:37 smithi082 bash[24745]: cluster 2024-09-20T19:10:36.508868+0000 mgr.a (mgr.14152) 274 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:37.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:37 smithi082 bash[24745]: cluster 2024-09-20T19:10:36.508868+0000 mgr.a (mgr.14152) 274 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:38.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:37 smithi137 bash[25001]: cluster 2024-09-20T19:10:36.508868+0000 mgr.a (mgr.14152) 274 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:38.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:37 smithi137 bash[25001]: cluster 2024-09-20T19:10:36.508868+0000 mgr.a (mgr.14152) 274 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:38.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:38 smithi018 bash[22763]: audit 2024-09-20T19:10:38.008208+0000 mon.a (mon.0) 555 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "04a91d00-f7df-4d13-aeba-8e90f4c25a02"} : dispatch 2024-09-20T19:10:38.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:38 smithi018 bash[22763]: audit 2024-09-20T19:10:38.008208+0000 mon.a (mon.0) 555 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "04a91d00-f7df-4d13-aeba-8e90f4c25a02"} : dispatch 2024-09-20T19:10:38.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:38 smithi018 bash[22763]: audit 2024-09-20T19:10:38.010417+0000 mon.c (mon.1) 10 : audit [INF] from='client.? 172.21.15.137:0/3231411497' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "04a91d00-f7df-4d13-aeba-8e90f4c25a02"} : dispatch 2024-09-20T19:10:38.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:38 smithi018 bash[22763]: audit 2024-09-20T19:10:38.010417+0000 mon.c (mon.1) 10 : audit [INF] from='client.? 172.21.15.137:0/3231411497' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "04a91d00-f7df-4d13-aeba-8e90f4c25a02"} : dispatch 2024-09-20T19:10:38.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:38 smithi018 bash[22763]: audit 2024-09-20T19:10:38.011874+0000 mon.a (mon.0) 556 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "04a91d00-f7df-4d13-aeba-8e90f4c25a02"}]': finished 2024-09-20T19:10:38.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:38 smithi018 bash[22763]: audit 2024-09-20T19:10:38.011874+0000 mon.a (mon.0) 556 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "04a91d00-f7df-4d13-aeba-8e90f4c25a02"}]': finished 2024-09-20T19:10:38.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:38 smithi018 bash[22763]: cluster 2024-09-20T19:10:38.017470+0000 mon.a (mon.0) 557 : cluster [DBG] osdmap e36: 6 total, 5 up, 6 in 2024-09-20T19:10:38.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:38 smithi018 bash[22763]: cluster 2024-09-20T19:10:38.017470+0000 mon.a (mon.0) 557 : cluster [DBG] osdmap e36: 6 total, 5 up, 6 in 2024-09-20T19:10:38.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:38 smithi018 bash[22763]: audit 2024-09-20T19:10:38.017991+0000 mon.a (mon.0) 558 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:10:38.922 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:38 smithi018 bash[22763]: audit 2024-09-20T19:10:38.017991+0000 mon.a (mon.0) 558 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:10:38.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:38 smithi082 bash[24745]: audit 2024-09-20T19:10:38.008208+0000 mon.a (mon.0) 555 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "04a91d00-f7df-4d13-aeba-8e90f4c25a02"} : dispatch 2024-09-20T19:10:38.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:38 smithi082 bash[24745]: audit 2024-09-20T19:10:38.008208+0000 mon.a (mon.0) 555 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "04a91d00-f7df-4d13-aeba-8e90f4c25a02"} : dispatch 2024-09-20T19:10:38.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:38 smithi082 bash[24745]: audit 2024-09-20T19:10:38.010417+0000 mon.c (mon.1) 10 : audit [INF] from='client.? 172.21.15.137:0/3231411497' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "04a91d00-f7df-4d13-aeba-8e90f4c25a02"} : dispatch 2024-09-20T19:10:38.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:38 smithi082 bash[24745]: audit 2024-09-20T19:10:38.010417+0000 mon.c (mon.1) 10 : audit [INF] from='client.? 172.21.15.137:0/3231411497' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "04a91d00-f7df-4d13-aeba-8e90f4c25a02"} : dispatch 2024-09-20T19:10:38.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:38 smithi082 bash[24745]: audit 2024-09-20T19:10:38.011874+0000 mon.a (mon.0) 556 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "04a91d00-f7df-4d13-aeba-8e90f4c25a02"}]': finished 2024-09-20T19:10:38.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:38 smithi082 bash[24745]: audit 2024-09-20T19:10:38.011874+0000 mon.a (mon.0) 556 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "04a91d00-f7df-4d13-aeba-8e90f4c25a02"}]': finished 2024-09-20T19:10:38.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:38 smithi082 bash[24745]: cluster 2024-09-20T19:10:38.017470+0000 mon.a (mon.0) 557 : cluster [DBG] osdmap e36: 6 total, 5 up, 6 in 2024-09-20T19:10:38.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:38 smithi082 bash[24745]: cluster 2024-09-20T19:10:38.017470+0000 mon.a (mon.0) 557 : cluster [DBG] osdmap e36: 6 total, 5 up, 6 in 2024-09-20T19:10:38.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:38 smithi082 bash[24745]: audit 2024-09-20T19:10:38.017991+0000 mon.a (mon.0) 558 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:10:38.948 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:38 smithi082 bash[24745]: audit 2024-09-20T19:10:38.017991+0000 mon.a (mon.0) 558 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:10:39.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:38 smithi137 bash[25001]: audit 2024-09-20T19:10:38.008208+0000 mon.a (mon.0) 555 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "04a91d00-f7df-4d13-aeba-8e90f4c25a02"} : dispatch 2024-09-20T19:10:39.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:38 smithi137 bash[25001]: audit 2024-09-20T19:10:38.008208+0000 mon.a (mon.0) 555 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "04a91d00-f7df-4d13-aeba-8e90f4c25a02"} : dispatch 2024-09-20T19:10:39.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:38 smithi137 bash[25001]: audit 2024-09-20T19:10:38.010417+0000 mon.c (mon.1) 10 : audit [INF] from='client.? 172.21.15.137:0/3231411497' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "04a91d00-f7df-4d13-aeba-8e90f4c25a02"} : dispatch 2024-09-20T19:10:39.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:38 smithi137 bash[25001]: audit 2024-09-20T19:10:38.010417+0000 mon.c (mon.1) 10 : audit [INF] from='client.? 172.21.15.137:0/3231411497' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "04a91d00-f7df-4d13-aeba-8e90f4c25a02"} : dispatch 2024-09-20T19:10:39.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:38 smithi137 bash[25001]: audit 2024-09-20T19:10:38.011874+0000 mon.a (mon.0) 556 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "04a91d00-f7df-4d13-aeba-8e90f4c25a02"}]': finished 2024-09-20T19:10:39.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:38 smithi137 bash[25001]: audit 2024-09-20T19:10:38.011874+0000 mon.a (mon.0) 556 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "04a91d00-f7df-4d13-aeba-8e90f4c25a02"}]': finished 2024-09-20T19:10:39.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:38 smithi137 bash[25001]: cluster 2024-09-20T19:10:38.017470+0000 mon.a (mon.0) 557 : cluster [DBG] osdmap e36: 6 total, 5 up, 6 in 2024-09-20T19:10:39.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:38 smithi137 bash[25001]: cluster 2024-09-20T19:10:38.017470+0000 mon.a (mon.0) 557 : cluster [DBG] osdmap e36: 6 total, 5 up, 6 in 2024-09-20T19:10:39.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:38 smithi137 bash[25001]: audit 2024-09-20T19:10:38.017991+0000 mon.a (mon.0) 558 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:10:39.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:38 smithi137 bash[25001]: audit 2024-09-20T19:10:38.017991+0000 mon.a (mon.0) 558 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:10:39.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:39 smithi018 bash[22763]: cluster 2024-09-20T19:10:38.509399+0000 mgr.a (mgr.14152) 275 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:39.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:39 smithi018 bash[22763]: cluster 2024-09-20T19:10:38.509399+0000 mgr.a (mgr.14152) 275 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:39.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:39 smithi018 bash[22763]: audit 2024-09-20T19:10:38.662798+0000 mon.c (mon.1) 11 : audit [DBG] from='client.? 172.21.15.137:0/517830105' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:10:39.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:39 smithi018 bash[22763]: audit 2024-09-20T19:10:38.662798+0000 mon.c (mon.1) 11 : audit [DBG] from='client.? 172.21.15.137:0/517830105' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:10:39.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:39 smithi082 bash[24745]: cluster 2024-09-20T19:10:38.509399+0000 mgr.a (mgr.14152) 275 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:39.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:39 smithi082 bash[24745]: cluster 2024-09-20T19:10:38.509399+0000 mgr.a (mgr.14152) 275 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:39.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:39 smithi082 bash[24745]: audit 2024-09-20T19:10:38.662798+0000 mon.c (mon.1) 11 : audit [DBG] from='client.? 172.21.15.137:0/517830105' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:10:39.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:39 smithi082 bash[24745]: audit 2024-09-20T19:10:38.662798+0000 mon.c (mon.1) 11 : audit [DBG] from='client.? 172.21.15.137:0/517830105' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:10:40.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:39 smithi137 bash[25001]: cluster 2024-09-20T19:10:38.509399+0000 mgr.a (mgr.14152) 275 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:40.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:39 smithi137 bash[25001]: cluster 2024-09-20T19:10:38.509399+0000 mgr.a (mgr.14152) 275 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:40.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:39 smithi137 bash[25001]: audit 2024-09-20T19:10:38.662798+0000 mon.c (mon.1) 11 : audit [DBG] from='client.? 172.21.15.137:0/517830105' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:10:40.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:39 smithi137 bash[25001]: audit 2024-09-20T19:10:38.662798+0000 mon.c (mon.1) 11 : audit [DBG] from='client.? 172.21.15.137:0/517830105' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-20T19:10:41.920 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:41 smithi018 bash[22763]: cluster 2024-09-20T19:10:40.509926+0000 mgr.a (mgr.14152) 276 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:41.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:41 smithi018 bash[22763]: cluster 2024-09-20T19:10:40.509926+0000 mgr.a (mgr.14152) 276 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:41.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:41 smithi082 bash[24745]: cluster 2024-09-20T19:10:40.509926+0000 mgr.a (mgr.14152) 276 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:41.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:41 smithi082 bash[24745]: cluster 2024-09-20T19:10:40.509926+0000 mgr.a (mgr.14152) 276 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:42.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:41 smithi137 bash[25001]: cluster 2024-09-20T19:10:40.509926+0000 mgr.a (mgr.14152) 276 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:42.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:41 smithi137 bash[25001]: cluster 2024-09-20T19:10:40.509926+0000 mgr.a (mgr.14152) 276 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:43.920 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:43 smithi018 bash[22763]: cluster 2024-09-20T19:10:42.510484+0000 mgr.a (mgr.14152) 277 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:43.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:43 smithi018 bash[22763]: cluster 2024-09-20T19:10:42.510484+0000 mgr.a (mgr.14152) 277 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:43.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:43 smithi082 bash[24745]: cluster 2024-09-20T19:10:42.510484+0000 mgr.a (mgr.14152) 277 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:43.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:43 smithi082 bash[24745]: cluster 2024-09-20T19:10:42.510484+0000 mgr.a (mgr.14152) 277 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:44.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:43 smithi137 bash[25001]: cluster 2024-09-20T19:10:42.510484+0000 mgr.a (mgr.14152) 277 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:44.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:43 smithi137 bash[25001]: cluster 2024-09-20T19:10:42.510484+0000 mgr.a (mgr.14152) 277 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:45.920 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:45 smithi018 bash[22763]: cluster 2024-09-20T19:10:44.511127+0000 mgr.a (mgr.14152) 278 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:45.920 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:45 smithi018 bash[22763]: cluster 2024-09-20T19:10:44.511127+0000 mgr.a (mgr.14152) 278 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:45.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:45 smithi082 bash[24745]: cluster 2024-09-20T19:10:44.511127+0000 mgr.a (mgr.14152) 278 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:45.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:45 smithi082 bash[24745]: cluster 2024-09-20T19:10:44.511127+0000 mgr.a (mgr.14152) 278 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:46.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:45 smithi137 bash[25001]: cluster 2024-09-20T19:10:44.511127+0000 mgr.a (mgr.14152) 278 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:46.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:45 smithi137 bash[25001]: cluster 2024-09-20T19:10:44.511127+0000 mgr.a (mgr.14152) 278 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:47.920 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:47 smithi018 bash[22763]: cluster 2024-09-20T19:10:46.511673+0000 mgr.a (mgr.14152) 279 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:47.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:47 smithi018 bash[22763]: cluster 2024-09-20T19:10:46.511673+0000 mgr.a (mgr.14152) 279 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:47.928 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:47 smithi137 bash[25001]: cluster 2024-09-20T19:10:46.511673+0000 mgr.a (mgr.14152) 279 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:47.928 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:47 smithi137 bash[25001]: cluster 2024-09-20T19:10:46.511673+0000 mgr.a (mgr.14152) 279 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:47.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:47 smithi082 bash[24745]: cluster 2024-09-20T19:10:46.511673+0000 mgr.a (mgr.14152) 279 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:47.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:47 smithi082 bash[24745]: cluster 2024-09-20T19:10:46.511673+0000 mgr.a (mgr.14152) 279 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:49.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:49 smithi018 bash[22763]: cluster 2024-09-20T19:10:48.512205+0000 mgr.a (mgr.14152) 280 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:49.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:49 smithi018 bash[22763]: cluster 2024-09-20T19:10:48.512205+0000 mgr.a (mgr.14152) 280 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:49.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:49 smithi082 bash[24745]: cluster 2024-09-20T19:10:48.512205+0000 mgr.a (mgr.14152) 280 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:49.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:49 smithi082 bash[24745]: cluster 2024-09-20T19:10:48.512205+0000 mgr.a (mgr.14152) 280 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:50.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:49 smithi137 bash[25001]: cluster 2024-09-20T19:10:48.512205+0000 mgr.a (mgr.14152) 280 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:50.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:49 smithi137 bash[25001]: cluster 2024-09-20T19:10:48.512205+0000 mgr.a (mgr.14152) 280 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:51.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:51 smithi018 bash[22763]: cluster 2024-09-20T19:10:50.512744+0000 mgr.a (mgr.14152) 281 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:51.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:51 smithi018 bash[22763]: cluster 2024-09-20T19:10:50.512744+0000 mgr.a (mgr.14152) 281 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:51.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:51 smithi018 bash[22763]: audit 2024-09-20T19:10:51.484997+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-20T19:10:51.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:51 smithi018 bash[22763]: audit 2024-09-20T19:10:51.484997+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-20T19:10:51.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:51 smithi018 bash[22763]: audit 2024-09-20T19:10:51.487000+0000 mon.a (mon.0) 560 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:51.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:51 smithi018 bash[22763]: audit 2024-09-20T19:10:51.487000+0000 mon.a (mon.0) 560 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:51.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:51 smithi082 bash[24745]: cluster 2024-09-20T19:10:50.512744+0000 mgr.a (mgr.14152) 281 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:51.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:51 smithi082 bash[24745]: cluster 2024-09-20T19:10:50.512744+0000 mgr.a (mgr.14152) 281 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:51.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:51 smithi082 bash[24745]: audit 2024-09-20T19:10:51.484997+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-20T19:10:51.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:51 smithi082 bash[24745]: audit 2024-09-20T19:10:51.484997+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-20T19:10:51.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:51 smithi082 bash[24745]: audit 2024-09-20T19:10:51.487000+0000 mon.a (mon.0) 560 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:51.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:51 smithi082 bash[24745]: audit 2024-09-20T19:10:51.487000+0000 mon.a (mon.0) 560 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:51.974 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:51 smithi137 bash[25001]: cluster 2024-09-20T19:10:50.512744+0000 mgr.a (mgr.14152) 281 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:51.974 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:51 smithi137 bash[25001]: cluster 2024-09-20T19:10:50.512744+0000 mgr.a (mgr.14152) 281 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:51.974 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:51 smithi137 bash[25001]: audit 2024-09-20T19:10:51.484997+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-20T19:10:51.974 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:51 smithi137 bash[25001]: audit 2024-09-20T19:10:51.484997+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-20T19:10:51.974 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:51 smithi137 bash[25001]: audit 2024-09-20T19:10:51.487000+0000 mon.a (mon.0) 560 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:51.974 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:51 smithi137 bash[25001]: audit 2024-09-20T19:10:51.487000+0000 mon.a (mon.0) 560 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:10:52.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:52 smithi018 bash[22763]: cephadm 2024-09-20T19:10:51.488707+0000 mgr.a (mgr.14152) 282 : cephadm [INF] Deploying daemon osd.5 on smithi137 2024-09-20T19:10:52.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:52 smithi018 bash[22763]: cephadm 2024-09-20T19:10:51.488707+0000 mgr.a (mgr.14152) 282 : cephadm [INF] Deploying daemon osd.5 on smithi137 2024-09-20T19:10:52.942 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:52 smithi137 bash[25001]: cephadm 2024-09-20T19:10:51.488707+0000 mgr.a (mgr.14152) 282 : cephadm [INF] Deploying daemon osd.5 on smithi137 2024-09-20T19:10:52.942 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:52 smithi137 bash[25001]: cephadm 2024-09-20T19:10:51.488707+0000 mgr.a (mgr.14152) 282 : cephadm [INF] Deploying daemon osd.5 on smithi137 2024-09-20T19:10:52.946 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:52 smithi082 bash[24745]: cephadm 2024-09-20T19:10:51.488707+0000 mgr.a (mgr.14152) 282 : cephadm [INF] Deploying daemon osd.5 on smithi137 2024-09-20T19:10:52.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:52 smithi082 bash[24745]: cephadm 2024-09-20T19:10:51.488707+0000 mgr.a (mgr.14152) 282 : cephadm [INF] Deploying daemon osd.5 on smithi137 2024-09-20T19:10:53.868 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:53 smithi137 bash[25001]: cluster 2024-09-20T19:10:52.513285+0000 mgr.a (mgr.14152) 283 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:53.869 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:53 smithi137 bash[25001]: cluster 2024-09-20T19:10:52.513285+0000 mgr.a (mgr.14152) 283 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:53.920 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:53 smithi018 bash[22763]: cluster 2024-09-20T19:10:52.513285+0000 mgr.a (mgr.14152) 283 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:53.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:53 smithi018 bash[22763]: cluster 2024-09-20T19:10:52.513285+0000 mgr.a (mgr.14152) 283 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:53.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:53 smithi082 bash[24745]: cluster 2024-09-20T19:10:52.513285+0000 mgr.a (mgr.14152) 283 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:53.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:53 smithi082 bash[24745]: cluster 2024-09-20T19:10:52.513285+0000 mgr.a (mgr.14152) 283 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:55.887 INFO:journalctl@ceph.osd.4.smithi137.stdout:Sep 20 19:10:55 smithi137 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:10:55.887 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:55 smithi137 bash[25001]: cluster 2024-09-20T19:10:54.513876+0000 mgr.a (mgr.14152) 284 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:55.887 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:55 smithi137 bash[25001]: cluster 2024-09-20T19:10:54.513876+0000 mgr.a (mgr.14152) 284 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:55.887 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:55 smithi137 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:10:55.920 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:55 smithi018 bash[22763]: cluster 2024-09-20T19:10:54.513876+0000 mgr.a (mgr.14152) 284 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:55.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:55 smithi018 bash[22763]: cluster 2024-09-20T19:10:54.513876+0000 mgr.a (mgr.14152) 284 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:55.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:55 smithi082 bash[24745]: cluster 2024-09-20T19:10:54.513876+0000 mgr.a (mgr.14152) 284 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:55.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:55 smithi082 bash[24745]: cluster 2024-09-20T19:10:54.513876+0000 mgr.a (mgr.14152) 284 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:56.227 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:56 smithi137 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:10:56.227 INFO:journalctl@ceph.osd.4.smithi137.stdout:Sep 20 19:10:56 smithi137 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:10:56.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:56 smithi018 bash[22763]: audit 2024-09-20T19:10:56.153595+0000 mon.a (mon.0) 561 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:10:56.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:56 smithi018 bash[22763]: audit 2024-09-20T19:10:56.153595+0000 mon.a (mon.0) 561 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:10:56.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:56 smithi018 bash[22763]: audit 2024-09-20T19:10:56.161631+0000 mon.a (mon.0) 562 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:56.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:56 smithi018 bash[22763]: audit 2024-09-20T19:10:56.161631+0000 mon.a (mon.0) 562 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:56.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:56 smithi018 bash[22763]: audit 2024-09-20T19:10:56.169318+0000 mon.a (mon.0) 563 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:56.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:56 smithi018 bash[22763]: audit 2024-09-20T19:10:56.169318+0000 mon.a (mon.0) 563 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:56.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:56 smithi082 bash[24745]: audit 2024-09-20T19:10:56.153595+0000 mon.a (mon.0) 561 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:10:56.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:56 smithi082 bash[24745]: audit 2024-09-20T19:10:56.153595+0000 mon.a (mon.0) 561 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:10:56.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:56 smithi082 bash[24745]: audit 2024-09-20T19:10:56.161631+0000 mon.a (mon.0) 562 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:56.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:56 smithi082 bash[24745]: audit 2024-09-20T19:10:56.161631+0000 mon.a (mon.0) 562 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:56.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:56 smithi082 bash[24745]: audit 2024-09-20T19:10:56.169318+0000 mon.a (mon.0) 563 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:56.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:56 smithi082 bash[24745]: audit 2024-09-20T19:10:56.169318+0000 mon.a (mon.0) 563 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:57.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:56 smithi137 bash[25001]: audit 2024-09-20T19:10:56.153595+0000 mon.a (mon.0) 561 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:10:57.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:56 smithi137 bash[25001]: audit 2024-09-20T19:10:56.153595+0000 mon.a (mon.0) 561 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:10:57.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:56 smithi137 bash[25001]: audit 2024-09-20T19:10:56.161631+0000 mon.a (mon.0) 562 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:57.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:56 smithi137 bash[25001]: audit 2024-09-20T19:10:56.161631+0000 mon.a (mon.0) 562 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:57.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:56 smithi137 bash[25001]: audit 2024-09-20T19:10:56.169318+0000 mon.a (mon.0) 563 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:57.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:56 smithi137 bash[25001]: audit 2024-09-20T19:10:56.169318+0000 mon.a (mon.0) 563 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:10:58.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:58 smithi082 bash[24745]: cluster 2024-09-20T19:10:56.514452+0000 mgr.a (mgr.14152) 285 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:58.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:10:58 smithi082 bash[24745]: cluster 2024-09-20T19:10:56.514452+0000 mgr.a (mgr.14152) 285 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:58.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:58 smithi137 bash[25001]: cluster 2024-09-20T19:10:56.514452+0000 mgr.a (mgr.14152) 285 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:58.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:10:58 smithi137 bash[25001]: cluster 2024-09-20T19:10:56.514452+0000 mgr.a (mgr.14152) 285 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:58.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:58 smithi018 bash[22763]: cluster 2024-09-20T19:10:56.514452+0000 mgr.a (mgr.14152) 285 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:10:58.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:10:58 smithi018 bash[22763]: cluster 2024-09-20T19:10:56.514452+0000 mgr.a (mgr.14152) 285 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:00.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:00 smithi082 bash[24745]: cluster 2024-09-20T19:10:58.515003+0000 mgr.a (mgr.14152) 286 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:00.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:00 smithi082 bash[24745]: cluster 2024-09-20T19:10:58.515003+0000 mgr.a (mgr.14152) 286 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:00.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:00 smithi137 bash[25001]: cluster 2024-09-20T19:10:58.515003+0000 mgr.a (mgr.14152) 286 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:00.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:00 smithi137 bash[25001]: cluster 2024-09-20T19:10:58.515003+0000 mgr.a (mgr.14152) 286 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:00.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:00 smithi018 bash[22763]: cluster 2024-09-20T19:10:58.515003+0000 mgr.a (mgr.14152) 286 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:00.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:00 smithi018 bash[22763]: cluster 2024-09-20T19:10:58.515003+0000 mgr.a (mgr.14152) 286 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:02.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:02 smithi082 bash[24745]: cluster 2024-09-20T19:11:00.515475+0000 mgr.a (mgr.14152) 287 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:02.481 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:02 smithi082 bash[24745]: cluster 2024-09-20T19:11:00.515475+0000 mgr.a (mgr.14152) 287 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:02.481 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:02 smithi082 bash[24745]: audit 2024-09-20T19:11:01.653734+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:02.481 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:02 smithi082 bash[24745]: audit 2024-09-20T19:11:01.653734+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:02.481 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:02 smithi082 bash[24745]: audit 2024-09-20T19:11:01.661910+0000 mon.a (mon.0) 565 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:02.481 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:02 smithi082 bash[24745]: audit 2024-09-20T19:11:01.661910+0000 mon.a (mon.0) 565 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:02.481 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:02 smithi082 bash[24745]: audit 2024-09-20T19:11:01.663756+0000 mon.a (mon.0) 566 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:11:02.481 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:02 smithi082 bash[24745]: audit 2024-09-20T19:11:01.663756+0000 mon.a (mon.0) 566 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:11:02.482 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:02 smithi082 bash[24745]: audit 2024-09-20T19:11:01.665617+0000 mon.a (mon.0) 567 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:11:02.482 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:02 smithi082 bash[24745]: audit 2024-09-20T19:11:01.665617+0000 mon.a (mon.0) 567 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:11:02.482 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:02 smithi082 bash[24745]: audit 2024-09-20T19:11:01.675470+0000 mon.a (mon.0) 568 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:02.482 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:02 smithi082 bash[24745]: audit 2024-09-20T19:11:01.675470+0000 mon.a (mon.0) 568 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:02.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:02 smithi137 bash[25001]: cluster 2024-09-20T19:11:00.515475+0000 mgr.a (mgr.14152) 287 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:02.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:02 smithi137 bash[25001]: cluster 2024-09-20T19:11:00.515475+0000 mgr.a (mgr.14152) 287 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:02.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:02 smithi137 bash[25001]: audit 2024-09-20T19:11:01.653734+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:02.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:02 smithi137 bash[25001]: audit 2024-09-20T19:11:01.653734+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:02.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:02 smithi137 bash[25001]: audit 2024-09-20T19:11:01.661910+0000 mon.a (mon.0) 565 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:02.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:02 smithi137 bash[25001]: audit 2024-09-20T19:11:01.661910+0000 mon.a (mon.0) 565 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:02.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:02 smithi137 bash[25001]: audit 2024-09-20T19:11:01.663756+0000 mon.a (mon.0) 566 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:11:02.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:02 smithi137 bash[25001]: audit 2024-09-20T19:11:01.663756+0000 mon.a (mon.0) 566 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:11:02.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:02 smithi137 bash[25001]: audit 2024-09-20T19:11:01.665617+0000 mon.a (mon.0) 567 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:11:02.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:02 smithi137 bash[25001]: audit 2024-09-20T19:11:01.665617+0000 mon.a (mon.0) 567 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:11:02.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:02 smithi137 bash[25001]: audit 2024-09-20T19:11:01.675470+0000 mon.a (mon.0) 568 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:02.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:02 smithi137 bash[25001]: audit 2024-09-20T19:11:01.675470+0000 mon.a (mon.0) 568 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:02.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:02 smithi018 bash[22763]: cluster 2024-09-20T19:11:00.515475+0000 mgr.a (mgr.14152) 287 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:02.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:02 smithi018 bash[22763]: cluster 2024-09-20T19:11:00.515475+0000 mgr.a (mgr.14152) 287 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:02.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:02 smithi018 bash[22763]: audit 2024-09-20T19:11:01.653734+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:02.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:02 smithi018 bash[22763]: audit 2024-09-20T19:11:01.653734+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:02.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:02 smithi018 bash[22763]: audit 2024-09-20T19:11:01.661910+0000 mon.a (mon.0) 565 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:02.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:02 smithi018 bash[22763]: audit 2024-09-20T19:11:01.661910+0000 mon.a (mon.0) 565 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:02.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:02 smithi018 bash[22763]: audit 2024-09-20T19:11:01.663756+0000 mon.a (mon.0) 566 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:11:02.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:02 smithi018 bash[22763]: audit 2024-09-20T19:11:01.663756+0000 mon.a (mon.0) 566 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:11:02.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:02 smithi018 bash[22763]: audit 2024-09-20T19:11:01.665617+0000 mon.a (mon.0) 567 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:11:02.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:02 smithi018 bash[22763]: audit 2024-09-20T19:11:01.665617+0000 mon.a (mon.0) 567 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:11:02.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:02 smithi018 bash[22763]: audit 2024-09-20T19:11:01.675470+0000 mon.a (mon.0) 568 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:02.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:02 smithi018 bash[22763]: audit 2024-09-20T19:11:01.675470+0000 mon.a (mon.0) 568 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:04.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:04 smithi082 bash[24745]: cluster 2024-09-20T19:11:02.516033+0000 mgr.a (mgr.14152) 288 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:04.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:04 smithi082 bash[24745]: cluster 2024-09-20T19:11:02.516033+0000 mgr.a (mgr.14152) 288 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:04.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:04 smithi137 bash[25001]: cluster 2024-09-20T19:11:02.516033+0000 mgr.a (mgr.14152) 288 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:04.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:04 smithi137 bash[25001]: cluster 2024-09-20T19:11:02.516033+0000 mgr.a (mgr.14152) 288 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:04.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:04 smithi018 bash[22763]: cluster 2024-09-20T19:11:02.516033+0000 mgr.a (mgr.14152) 288 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:04.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:04 smithi018 bash[22763]: cluster 2024-09-20T19:11:02.516033+0000 mgr.a (mgr.14152) 288 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:06.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:06 smithi082 bash[24745]: cluster 2024-09-20T19:11:04.516669+0000 mgr.a (mgr.14152) 289 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:06.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:06 smithi082 bash[24745]: cluster 2024-09-20T19:11:04.516669+0000 mgr.a (mgr.14152) 289 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:06.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:06 smithi137 bash[25001]: cluster 2024-09-20T19:11:04.516669+0000 mgr.a (mgr.14152) 289 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:06.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:06 smithi137 bash[25001]: cluster 2024-09-20T19:11:04.516669+0000 mgr.a (mgr.14152) 289 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:06.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:06 smithi018 bash[22763]: cluster 2024-09-20T19:11:04.516669+0000 mgr.a (mgr.14152) 289 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:06.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:06 smithi018 bash[22763]: cluster 2024-09-20T19:11:04.516669+0000 mgr.a (mgr.14152) 289 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:08.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:08 smithi082 bash[24745]: cluster 2024-09-20T19:11:06.517244+0000 mgr.a (mgr.14152) 290 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:08.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:08 smithi082 bash[24745]: cluster 2024-09-20T19:11:06.517244+0000 mgr.a (mgr.14152) 290 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:08.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:08 smithi137 bash[25001]: cluster 2024-09-20T19:11:06.517244+0000 mgr.a (mgr.14152) 290 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:08.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:08 smithi137 bash[25001]: cluster 2024-09-20T19:11:06.517244+0000 mgr.a (mgr.14152) 290 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:08.558 INFO:teuthology.orchestra.run.smithi137.stdout:Created osd(s) 5 on host 'smithi137' 2024-09-20T19:11:08.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:08 smithi018 bash[22763]: cluster 2024-09-20T19:11:06.517244+0000 mgr.a (mgr.14152) 290 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:08.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:08 smithi018 bash[22763]: cluster 2024-09-20T19:11:06.517244+0000 mgr.a (mgr.14152) 290 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:09.176 DEBUG:teuthology.orchestra.run.smithi137:osd.5> sudo journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@osd.5.service 2024-09-20T19:11:09.178 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-09-20T19:11:09.178 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph osd stat -f json 2024-09-20T19:11:09.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:09 smithi137 bash[25001]: audit 2024-09-20T19:11:08.537740+0000 mon.a (mon.0) 569 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:11:09.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:09 smithi137 bash[25001]: audit 2024-09-20T19:11:08.537740+0000 mon.a (mon.0) 569 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:11:09.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:09 smithi137 bash[25001]: audit 2024-09-20T19:11:08.544945+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:09.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:09 smithi137 bash[25001]: audit 2024-09-20T19:11:08.544945+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:09.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:09 smithi137 bash[25001]: audit 2024-09-20T19:11:08.552878+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:09.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:09 smithi137 bash[25001]: audit 2024-09-20T19:11:08.552878+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:09.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:09 smithi018 bash[22763]: audit 2024-09-20T19:11:08.537740+0000 mon.a (mon.0) 569 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:11:09.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:09 smithi018 bash[22763]: audit 2024-09-20T19:11:08.537740+0000 mon.a (mon.0) 569 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:11:09.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:09 smithi018 bash[22763]: audit 2024-09-20T19:11:08.544945+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:09.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:09 smithi018 bash[22763]: audit 2024-09-20T19:11:08.544945+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:09.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:09 smithi018 bash[22763]: audit 2024-09-20T19:11:08.552878+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:09.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:09 smithi018 bash[22763]: audit 2024-09-20T19:11:08.552878+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:09.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:09 smithi082 bash[24745]: audit 2024-09-20T19:11:08.537740+0000 mon.a (mon.0) 569 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:11:09.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:09 smithi082 bash[24745]: audit 2024-09-20T19:11:08.537740+0000 mon.a (mon.0) 569 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:11:09.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:09 smithi082 bash[24745]: audit 2024-09-20T19:11:08.544945+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:09.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:09 smithi082 bash[24745]: audit 2024-09-20T19:11:08.544945+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:09.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:09 smithi082 bash[24745]: audit 2024-09-20T19:11:08.552878+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:09.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:09 smithi082 bash[24745]: audit 2024-09-20T19:11:08.552878+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:10.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:10 smithi137 bash[25001]: cluster 2024-09-20T19:11:08.517787+0000 mgr.a (mgr.14152) 291 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:10.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:10 smithi137 bash[25001]: cluster 2024-09-20T19:11:08.517787+0000 mgr.a (mgr.14152) 291 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:10.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:10 smithi137 bash[25001]: audit 2024-09-20T19:11:09.211963+0000 mon.a (mon.0) 572 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-20T19:11:10.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:10 smithi137 bash[25001]: audit 2024-09-20T19:11:09.211963+0000 mon.a (mon.0) 572 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-20T19:11:10.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:10 smithi137 bash[25001]: audit 2024-09-20T19:11:09.214425+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.137:6808/357167866,v1:172.21.15.137:6809/357167866]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-20T19:11:10.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:10 smithi137 bash[25001]: audit 2024-09-20T19:11:09.214425+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.137:6808/357167866,v1:172.21.15.137:6809/357167866]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-20T19:11:10.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:10 smithi018 bash[22763]: cluster 2024-09-20T19:11:08.517787+0000 mgr.a (mgr.14152) 291 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:10.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:10 smithi018 bash[22763]: cluster 2024-09-20T19:11:08.517787+0000 mgr.a (mgr.14152) 291 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:10.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:10 smithi018 bash[22763]: audit 2024-09-20T19:11:09.211963+0000 mon.a (mon.0) 572 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-20T19:11:10.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:10 smithi018 bash[22763]: audit 2024-09-20T19:11:09.211963+0000 mon.a (mon.0) 572 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-20T19:11:10.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:10 smithi018 bash[22763]: audit 2024-09-20T19:11:09.214425+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.137:6808/357167866,v1:172.21.15.137:6809/357167866]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-20T19:11:10.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:10 smithi018 bash[22763]: audit 2024-09-20T19:11:09.214425+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.137:6808/357167866,v1:172.21.15.137:6809/357167866]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-20T19:11:10.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:10 smithi082 bash[24745]: cluster 2024-09-20T19:11:08.517787+0000 mgr.a (mgr.14152) 291 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:10.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:10 smithi082 bash[24745]: cluster 2024-09-20T19:11:08.517787+0000 mgr.a (mgr.14152) 291 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:10.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:10 smithi082 bash[24745]: audit 2024-09-20T19:11:09.211963+0000 mon.a (mon.0) 572 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-20T19:11:10.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:10 smithi082 bash[24745]: audit 2024-09-20T19:11:09.211963+0000 mon.a (mon.0) 572 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-20T19:11:10.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:10 smithi082 bash[24745]: audit 2024-09-20T19:11:09.214425+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.137:6808/357167866,v1:172.21.15.137:6809/357167866]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-20T19:11:10.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:10 smithi082 bash[24745]: audit 2024-09-20T19:11:09.214425+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.137:6808/357167866,v1:172.21.15.137:6809/357167866]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-20T19:11:11.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:11 smithi137 bash[25001]: audit 2024-09-20T19:11:10.208006+0000 mon.a (mon.0) 573 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-20T19:11:11.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:11 smithi137 bash[25001]: audit 2024-09-20T19:11:10.208006+0000 mon.a (mon.0) 573 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-20T19:11:11.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:11 smithi137 bash[25001]: cluster 2024-09-20T19:11:10.212821+0000 mon.a (mon.0) 574 : cluster [DBG] osdmap e37: 6 total, 5 up, 6 in 2024-09-20T19:11:11.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:11 smithi137 bash[25001]: cluster 2024-09-20T19:11:10.212821+0000 mon.a (mon.0) 574 : cluster [DBG] osdmap e37: 6 total, 5 up, 6 in 2024-09-20T19:11:11.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:11 smithi137 bash[25001]: audit 2024-09-20T19:11:10.213369+0000 mon.a (mon.0) 575 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:11.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:11 smithi137 bash[25001]: audit 2024-09-20T19:11:10.213369+0000 mon.a (mon.0) 575 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:11.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:11 smithi137 bash[25001]: audit 2024-09-20T19:11:10.214368+0000 mon.a (mon.0) 576 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:11:11.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:11 smithi137 bash[25001]: audit 2024-09-20T19:11:10.214368+0000 mon.a (mon.0) 576 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:11:11.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:11 smithi137 bash[25001]: audit 2024-09-20T19:11:10.216751+0000 mon.c (mon.1) 13 : audit [INF] from='osd.5 [v2:172.21.15.137:6808/357167866,v1:172.21.15.137:6809/357167866]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:11:11.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:11 smithi137 bash[25001]: audit 2024-09-20T19:11:10.216751+0000 mon.c (mon.1) 13 : audit [INF] from='osd.5 [v2:172.21.15.137:6808/357167866,v1:172.21.15.137:6809/357167866]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:11:11.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:11 smithi018 bash[22763]: audit 2024-09-20T19:11:10.208006+0000 mon.a (mon.0) 573 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-20T19:11:11.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:11 smithi018 bash[22763]: audit 2024-09-20T19:11:10.208006+0000 mon.a (mon.0) 573 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-20T19:11:11.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:11 smithi018 bash[22763]: cluster 2024-09-20T19:11:10.212821+0000 mon.a (mon.0) 574 : cluster [DBG] osdmap e37: 6 total, 5 up, 6 in 2024-09-20T19:11:11.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:11 smithi018 bash[22763]: cluster 2024-09-20T19:11:10.212821+0000 mon.a (mon.0) 574 : cluster [DBG] osdmap e37: 6 total, 5 up, 6 in 2024-09-20T19:11:11.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:11 smithi018 bash[22763]: audit 2024-09-20T19:11:10.213369+0000 mon.a (mon.0) 575 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:11.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:11 smithi018 bash[22763]: audit 2024-09-20T19:11:10.213369+0000 mon.a (mon.0) 575 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:11.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:11 smithi018 bash[22763]: audit 2024-09-20T19:11:10.214368+0000 mon.a (mon.0) 576 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:11:11.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:11 smithi018 bash[22763]: audit 2024-09-20T19:11:10.214368+0000 mon.a (mon.0) 576 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:11:11.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:11 smithi018 bash[22763]: audit 2024-09-20T19:11:10.216751+0000 mon.c (mon.1) 13 : audit [INF] from='osd.5 [v2:172.21.15.137:6808/357167866,v1:172.21.15.137:6809/357167866]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:11:11.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:11 smithi018 bash[22763]: audit 2024-09-20T19:11:10.216751+0000 mon.c (mon.1) 13 : audit [INF] from='osd.5 [v2:172.21.15.137:6808/357167866,v1:172.21.15.137:6809/357167866]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:11:11.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:11 smithi082 bash[24745]: audit 2024-09-20T19:11:10.208006+0000 mon.a (mon.0) 573 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-20T19:11:11.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:11 smithi082 bash[24745]: audit 2024-09-20T19:11:10.208006+0000 mon.a (mon.0) 573 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-20T19:11:11.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:11 smithi082 bash[24745]: cluster 2024-09-20T19:11:10.212821+0000 mon.a (mon.0) 574 : cluster [DBG] osdmap e37: 6 total, 5 up, 6 in 2024-09-20T19:11:11.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:11 smithi082 bash[24745]: cluster 2024-09-20T19:11:10.212821+0000 mon.a (mon.0) 574 : cluster [DBG] osdmap e37: 6 total, 5 up, 6 in 2024-09-20T19:11:11.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:11 smithi082 bash[24745]: audit 2024-09-20T19:11:10.213369+0000 mon.a (mon.0) 575 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:11.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:11 smithi082 bash[24745]: audit 2024-09-20T19:11:10.213369+0000 mon.a (mon.0) 575 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:11.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:11 smithi082 bash[24745]: audit 2024-09-20T19:11:10.214368+0000 mon.a (mon.0) 576 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:11:11.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:11 smithi082 bash[24745]: audit 2024-09-20T19:11:10.214368+0000 mon.a (mon.0) 576 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:11:11.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:11 smithi082 bash[24745]: audit 2024-09-20T19:11:10.216751+0000 mon.c (mon.1) 13 : audit [INF] from='osd.5 [v2:172.21.15.137:6808/357167866,v1:172.21.15.137:6809/357167866]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:11:11.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:11 smithi082 bash[24745]: audit 2024-09-20T19:11:10.216751+0000 mon.c (mon.1) 13 : audit [INF] from='osd.5 [v2:172.21.15.137:6808/357167866,v1:172.21.15.137:6809/357167866]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi137", "root=default"]} : dispatch 2024-09-20T19:11:12.047 INFO:journalctl@ceph.osd.5.smithi137.stdout:Sep 20 19:11:11 smithi137 bash[33214]: debug 2024-09-20T19:11:11.691+0000 7f9e0cbac640 -1 osd.5 0 waiting for initial osdmap 2024-09-20T19:11:12.047 INFO:journalctl@ceph.osd.5.smithi137.stdout:Sep 20 19:11:11 smithi137 bash[33214]: debug 2024-09-20T19:11:11.715+0000 7f9e049cb640 -1 osd.5 38 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-20T19:11:12.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:12 smithi137 bash[25001]: cluster 2024-09-20T19:11:10.260982+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:11:12.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:12 smithi137 bash[25001]: cluster 2024-09-20T19:11:10.260982+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:11:12.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:12 smithi137 bash[25001]: cluster 2024-09-20T19:11:10.261074+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:11:12.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:12 smithi137 bash[25001]: cluster 2024-09-20T19:11:10.261074+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:11:12.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:12 smithi137 bash[25001]: cluster 2024-09-20T19:11:10.518327+0000 mgr.a (mgr.14152) 292 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:12.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:12 smithi137 bash[25001]: cluster 2024-09-20T19:11:10.518327+0000 mgr.a (mgr.14152) 292 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:12.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:12 smithi137 bash[25001]: audit 2024-09-20T19:11:11.210699+0000 mon.a (mon.0) 577 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]': finished 2024-09-20T19:11:12.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:12 smithi137 bash[25001]: audit 2024-09-20T19:11:11.210699+0000 mon.a (mon.0) 577 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]': finished 2024-09-20T19:11:12.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:12 smithi137 bash[25001]: cluster 2024-09-20T19:11:11.216097+0000 mon.a (mon.0) 578 : cluster [DBG] osdmap e38: 6 total, 5 up, 6 in 2024-09-20T19:11:12.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:12 smithi137 bash[25001]: cluster 2024-09-20T19:11:11.216097+0000 mon.a (mon.0) 578 : cluster [DBG] osdmap e38: 6 total, 5 up, 6 in 2024-09-20T19:11:12.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:12 smithi137 bash[25001]: audit 2024-09-20T19:11:11.217246+0000 mon.a (mon.0) 579 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:12.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:12 smithi137 bash[25001]: audit 2024-09-20T19:11:11.217246+0000 mon.a (mon.0) 579 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:12.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:12 smithi137 bash[25001]: audit 2024-09-20T19:11:11.227984+0000 mon.a (mon.0) 580 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:12.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:12 smithi137 bash[25001]: audit 2024-09-20T19:11:11.227984+0000 mon.a (mon.0) 580 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:12.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:12 smithi137 bash[25001]: audit 2024-09-20T19:11:11.702374+0000 mon.a (mon.0) 581 : audit [INF] from='osd.5 ' entity='osd.5' 2024-09-20T19:11:12.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:12 smithi137 bash[25001]: audit 2024-09-20T19:11:11.702374+0000 mon.a (mon.0) 581 : audit [INF] from='osd.5 ' entity='osd.5' 2024-09-20T19:11:12.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:12 smithi018 bash[22763]: cluster 2024-09-20T19:11:10.260982+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:11:12.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:12 smithi018 bash[22763]: cluster 2024-09-20T19:11:10.260982+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:11:12.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:12 smithi018 bash[22763]: cluster 2024-09-20T19:11:10.261074+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:11:12.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:12 smithi018 bash[22763]: cluster 2024-09-20T19:11:10.261074+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:11:12.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:12 smithi018 bash[22763]: cluster 2024-09-20T19:11:10.518327+0000 mgr.a (mgr.14152) 292 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:12.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:12 smithi018 bash[22763]: cluster 2024-09-20T19:11:10.518327+0000 mgr.a (mgr.14152) 292 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:12.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:12 smithi018 bash[22763]: audit 2024-09-20T19:11:11.210699+0000 mon.a (mon.0) 577 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]': finished 2024-09-20T19:11:12.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:12 smithi018 bash[22763]: audit 2024-09-20T19:11:11.210699+0000 mon.a (mon.0) 577 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]': finished 2024-09-20T19:11:12.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:12 smithi018 bash[22763]: cluster 2024-09-20T19:11:11.216097+0000 mon.a (mon.0) 578 : cluster [DBG] osdmap e38: 6 total, 5 up, 6 in 2024-09-20T19:11:12.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:12 smithi018 bash[22763]: cluster 2024-09-20T19:11:11.216097+0000 mon.a (mon.0) 578 : cluster [DBG] osdmap e38: 6 total, 5 up, 6 in 2024-09-20T19:11:12.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:12 smithi018 bash[22763]: audit 2024-09-20T19:11:11.217246+0000 mon.a (mon.0) 579 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:12.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:12 smithi018 bash[22763]: audit 2024-09-20T19:11:11.217246+0000 mon.a (mon.0) 579 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:12.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:12 smithi018 bash[22763]: audit 2024-09-20T19:11:11.227984+0000 mon.a (mon.0) 580 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:12.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:12 smithi018 bash[22763]: audit 2024-09-20T19:11:11.227984+0000 mon.a (mon.0) 580 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:12.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:12 smithi018 bash[22763]: audit 2024-09-20T19:11:11.702374+0000 mon.a (mon.0) 581 : audit [INF] from='osd.5 ' entity='osd.5' 2024-09-20T19:11:12.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:12 smithi018 bash[22763]: audit 2024-09-20T19:11:11.702374+0000 mon.a (mon.0) 581 : audit [INF] from='osd.5 ' entity='osd.5' 2024-09-20T19:11:12.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:12 smithi082 bash[24745]: cluster 2024-09-20T19:11:10.260982+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:11:12.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:12 smithi082 bash[24745]: cluster 2024-09-20T19:11:10.260982+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-20T19:11:12.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:12 smithi082 bash[24745]: cluster 2024-09-20T19:11:10.261074+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:11:12.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:12 smithi082 bash[24745]: cluster 2024-09-20T19:11:10.261074+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-20T19:11:12.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:12 smithi082 bash[24745]: cluster 2024-09-20T19:11:10.518327+0000 mgr.a (mgr.14152) 292 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:12.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:12 smithi082 bash[24745]: cluster 2024-09-20T19:11:10.518327+0000 mgr.a (mgr.14152) 292 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:12.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:12 smithi082 bash[24745]: audit 2024-09-20T19:11:11.210699+0000 mon.a (mon.0) 577 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]': finished 2024-09-20T19:11:12.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:12 smithi082 bash[24745]: audit 2024-09-20T19:11:11.210699+0000 mon.a (mon.0) 577 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]': finished 2024-09-20T19:11:12.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:12 smithi082 bash[24745]: cluster 2024-09-20T19:11:11.216097+0000 mon.a (mon.0) 578 : cluster [DBG] osdmap e38: 6 total, 5 up, 6 in 2024-09-20T19:11:12.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:12 smithi082 bash[24745]: cluster 2024-09-20T19:11:11.216097+0000 mon.a (mon.0) 578 : cluster [DBG] osdmap e38: 6 total, 5 up, 6 in 2024-09-20T19:11:12.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:12 smithi082 bash[24745]: audit 2024-09-20T19:11:11.217246+0000 mon.a (mon.0) 579 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:12.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:12 smithi082 bash[24745]: audit 2024-09-20T19:11:11.217246+0000 mon.a (mon.0) 579 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:12.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:12 smithi082 bash[24745]: audit 2024-09-20T19:11:11.227984+0000 mon.a (mon.0) 580 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:12.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:12 smithi082 bash[24745]: audit 2024-09-20T19:11:11.227984+0000 mon.a (mon.0) 580 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:12.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:12 smithi082 bash[24745]: audit 2024-09-20T19:11:11.702374+0000 mon.a (mon.0) 581 : audit [INF] from='osd.5 ' entity='osd.5' 2024-09-20T19:11:12.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:12 smithi082 bash[24745]: audit 2024-09-20T19:11:11.702374+0000 mon.a (mon.0) 581 : audit [INF] from='osd.5 ' entity='osd.5' 2024-09-20T19:11:13.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:13 smithi137 bash[25001]: audit 2024-09-20T19:11:12.229355+0000 mon.a (mon.0) 582 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:13.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:13 smithi137 bash[25001]: audit 2024-09-20T19:11:12.229355+0000 mon.a (mon.0) 582 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:13.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:13 smithi137 bash[25001]: cluster 2024-09-20T19:11:12.236091+0000 mon.a (mon.0) 583 : cluster [INF] osd.5 [v2:172.21.15.137:6808/357167866,v1:172.21.15.137:6809/357167866] boot 2024-09-20T19:11:13.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:13 smithi137 bash[25001]: cluster 2024-09-20T19:11:12.236091+0000 mon.a (mon.0) 583 : cluster [INF] osd.5 [v2:172.21.15.137:6808/357167866,v1:172.21.15.137:6809/357167866] boot 2024-09-20T19:11:13.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:13 smithi137 bash[25001]: cluster 2024-09-20T19:11:12.236281+0000 mon.a (mon.0) 584 : cluster [DBG] osdmap e39: 6 total, 6 up, 6 in 2024-09-20T19:11:13.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:13 smithi137 bash[25001]: cluster 2024-09-20T19:11:12.236281+0000 mon.a (mon.0) 584 : cluster [DBG] osdmap e39: 6 total, 6 up, 6 in 2024-09-20T19:11:13.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:13 smithi137 bash[25001]: audit 2024-09-20T19:11:12.236563+0000 mon.a (mon.0) 585 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:13.548 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:13 smithi137 bash[25001]: audit 2024-09-20T19:11:12.236563+0000 mon.a (mon.0) 585 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:13.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:13 smithi018 bash[22763]: audit 2024-09-20T19:11:12.229355+0000 mon.a (mon.0) 582 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:13.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:13 smithi018 bash[22763]: audit 2024-09-20T19:11:12.229355+0000 mon.a (mon.0) 582 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:13.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:13 smithi018 bash[22763]: cluster 2024-09-20T19:11:12.236091+0000 mon.a (mon.0) 583 : cluster [INF] osd.5 [v2:172.21.15.137:6808/357167866,v1:172.21.15.137:6809/357167866] boot 2024-09-20T19:11:13.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:13 smithi018 bash[22763]: cluster 2024-09-20T19:11:12.236091+0000 mon.a (mon.0) 583 : cluster [INF] osd.5 [v2:172.21.15.137:6808/357167866,v1:172.21.15.137:6809/357167866] boot 2024-09-20T19:11:13.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:13 smithi018 bash[22763]: cluster 2024-09-20T19:11:12.236281+0000 mon.a (mon.0) 584 : cluster [DBG] osdmap e39: 6 total, 6 up, 6 in 2024-09-20T19:11:13.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:13 smithi018 bash[22763]: cluster 2024-09-20T19:11:12.236281+0000 mon.a (mon.0) 584 : cluster [DBG] osdmap e39: 6 total, 6 up, 6 in 2024-09-20T19:11:13.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:13 smithi018 bash[22763]: audit 2024-09-20T19:11:12.236563+0000 mon.a (mon.0) 585 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:13.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:13 smithi018 bash[22763]: audit 2024-09-20T19:11:12.236563+0000 mon.a (mon.0) 585 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:13.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:13 smithi082 bash[24745]: audit 2024-09-20T19:11:12.229355+0000 mon.a (mon.0) 582 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:13.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:13 smithi082 bash[24745]: audit 2024-09-20T19:11:12.229355+0000 mon.a (mon.0) 582 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:13.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:13 smithi082 bash[24745]: cluster 2024-09-20T19:11:12.236091+0000 mon.a (mon.0) 583 : cluster [INF] osd.5 [v2:172.21.15.137:6808/357167866,v1:172.21.15.137:6809/357167866] boot 2024-09-20T19:11:13.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:13 smithi082 bash[24745]: cluster 2024-09-20T19:11:12.236091+0000 mon.a (mon.0) 583 : cluster [INF] osd.5 [v2:172.21.15.137:6808/357167866,v1:172.21.15.137:6809/357167866] boot 2024-09-20T19:11:13.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:13 smithi082 bash[24745]: cluster 2024-09-20T19:11:12.236281+0000 mon.a (mon.0) 584 : cluster [DBG] osdmap e39: 6 total, 6 up, 6 in 2024-09-20T19:11:13.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:13 smithi082 bash[24745]: cluster 2024-09-20T19:11:12.236281+0000 mon.a (mon.0) 584 : cluster [DBG] osdmap e39: 6 total, 6 up, 6 in 2024-09-20T19:11:13.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:13 smithi082 bash[24745]: audit 2024-09-20T19:11:12.236563+0000 mon.a (mon.0) 585 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:13.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:13 smithi082 bash[24745]: audit 2024-09-20T19:11:12.236563+0000 mon.a (mon.0) 585 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-20T19:11:13.937 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:11:14.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:14 smithi018 bash[22763]: cluster 2024-09-20T19:11:12.518876+0000 mgr.a (mgr.14152) 293 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:14.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:14 smithi018 bash[22763]: cluster 2024-09-20T19:11:12.518876+0000 mgr.a (mgr.14152) 293 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:14.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:14 smithi018 bash[22763]: cluster 2024-09-20T19:11:13.241859+0000 mon.a (mon.0) 586 : cluster [DBG] osdmap e40: 6 total, 6 up, 6 in 2024-09-20T19:11:14.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:14 smithi018 bash[22763]: cluster 2024-09-20T19:11:13.241859+0000 mon.a (mon.0) 586 : cluster [DBG] osdmap e40: 6 total, 6 up, 6 in 2024-09-20T19:11:14.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:14 smithi137 bash[25001]: cluster 2024-09-20T19:11:12.518876+0000 mgr.a (mgr.14152) 293 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:14.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:14 smithi137 bash[25001]: cluster 2024-09-20T19:11:12.518876+0000 mgr.a (mgr.14152) 293 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:14.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:14 smithi137 bash[25001]: cluster 2024-09-20T19:11:13.241859+0000 mon.a (mon.0) 586 : cluster [DBG] osdmap e40: 6 total, 6 up, 6 in 2024-09-20T19:11:14.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:14 smithi137 bash[25001]: cluster 2024-09-20T19:11:13.241859+0000 mon.a (mon.0) 586 : cluster [DBG] osdmap e40: 6 total, 6 up, 6 in 2024-09-20T19:11:14.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:14 smithi082 bash[24745]: cluster 2024-09-20T19:11:12.518876+0000 mgr.a (mgr.14152) 293 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:14.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:14 smithi082 bash[24745]: cluster 2024-09-20T19:11:12.518876+0000 mgr.a (mgr.14152) 293 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 151 MiB used, 447 GiB / 447 GiB avail 2024-09-20T19:11:14.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:14 smithi082 bash[24745]: cluster 2024-09-20T19:11:13.241859+0000 mon.a (mon.0) 586 : cluster [DBG] osdmap e40: 6 total, 6 up, 6 in 2024-09-20T19:11:14.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:14 smithi082 bash[24745]: cluster 2024-09-20T19:11:13.241859+0000 mon.a (mon.0) 586 : cluster [DBG] osdmap e40: 6 total, 6 up, 6 in 2024-09-20T19:11:15.353 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:11:15.517 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:15 smithi137 bash[25001]: cluster 2024-09-20T19:11:14.252132+0000 mon.a (mon.0) 587 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-20T19:11:15.517 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:15 smithi137 bash[25001]: cluster 2024-09-20T19:11:14.252132+0000 mon.a (mon.0) 587 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-20T19:11:15.518 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:15 smithi137 bash[25001]: cluster 2024-09-20T19:11:14.519433+0000 mgr.a (mgr.14152) 294 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 182 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:15.518 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:15 smithi137 bash[25001]: cluster 2024-09-20T19:11:14.519433+0000 mgr.a (mgr.14152) 294 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 182 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:15.559 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:15 smithi018 bash[22763]: cluster 2024-09-20T19:11:14.252132+0000 mon.a (mon.0) 587 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-20T19:11:15.559 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:15 smithi018 bash[22763]: cluster 2024-09-20T19:11:14.252132+0000 mon.a (mon.0) 587 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-20T19:11:15.559 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:15 smithi018 bash[22763]: cluster 2024-09-20T19:11:14.519433+0000 mgr.a (mgr.14152) 294 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 182 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:15.559 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:15 smithi018 bash[22763]: cluster 2024-09-20T19:11:14.519433+0000 mgr.a (mgr.14152) 294 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 182 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:15.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:15 smithi082 bash[24745]: cluster 2024-09-20T19:11:14.252132+0000 mon.a (mon.0) 587 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-20T19:11:15.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:15 smithi082 bash[24745]: cluster 2024-09-20T19:11:14.252132+0000 mon.a (mon.0) 587 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-20T19:11:15.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:15 smithi082 bash[24745]: cluster 2024-09-20T19:11:14.519433+0000 mgr.a (mgr.14152) 294 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 182 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:15.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:15 smithi082 bash[24745]: cluster 2024-09-20T19:11:14.519433+0000 mgr.a (mgr.14152) 294 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 182 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:16.054 INFO:teuthology.orchestra.run.smithi018.stdout:{"epoch":41,"num_osds":6,"num_up_osds":6,"osd_up_since":1726859472,"num_in_osds":6,"osd_in_since":1726859438,"num_remapped_pgs":0} 2024-09-20T19:11:16.055 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph osd dump --format=json 2024-09-20T19:11:16.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:16 smithi018 bash[22763]: audit 2024-09-20T19:11:15.352403+0000 mon.a (mon.0) 588 : audit [DBG] from='client.? 172.21.15.18:0/1321150233' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-20T19:11:16.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:16 smithi018 bash[22763]: audit 2024-09-20T19:11:15.352403+0000 mon.a (mon.0) 588 : audit [DBG] from='client.? 172.21.15.18:0/1321150233' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-20T19:11:16.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:16 smithi137 bash[25001]: audit 2024-09-20T19:11:15.352403+0000 mon.a (mon.0) 588 : audit [DBG] from='client.? 172.21.15.18:0/1321150233' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-20T19:11:16.547 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:16 smithi137 bash[25001]: audit 2024-09-20T19:11:15.352403+0000 mon.a (mon.0) 588 : audit [DBG] from='client.? 172.21.15.18:0/1321150233' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-20T19:11:16.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:16 smithi082 bash[24745]: audit 2024-09-20T19:11:15.352403+0000 mon.a (mon.0) 588 : audit [DBG] from='client.? 172.21.15.18:0/1321150233' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-20T19:11:16.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:16 smithi082 bash[24745]: audit 2024-09-20T19:11:15.352403+0000 mon.a (mon.0) 588 : audit [DBG] from='client.? 172.21.15.18:0/1321150233' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-20T19:11:17.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:17 smithi137 bash[25001]: cluster 2024-09-20T19:11:16.520031+0000 mgr.a (mgr.14152) 295 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 182 MiB used, 536 GiB / 536 GiB avail; 109 KiB/s, 0 objects/s recovering 2024-09-20T19:11:17.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:17 smithi137 bash[25001]: cluster 2024-09-20T19:11:16.520031+0000 mgr.a (mgr.14152) 295 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 182 MiB used, 536 GiB / 536 GiB avail; 109 KiB/s, 0 objects/s recovering 2024-09-20T19:11:17.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:17 smithi018 bash[22763]: cluster 2024-09-20T19:11:16.520031+0000 mgr.a (mgr.14152) 295 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 182 MiB used, 536 GiB / 536 GiB avail; 109 KiB/s, 0 objects/s recovering 2024-09-20T19:11:17.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:17 smithi018 bash[22763]: cluster 2024-09-20T19:11:16.520031+0000 mgr.a (mgr.14152) 295 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 182 MiB used, 536 GiB / 536 GiB avail; 109 KiB/s, 0 objects/s recovering 2024-09-20T19:11:17.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:17 smithi082 bash[24745]: cluster 2024-09-20T19:11:16.520031+0000 mgr.a (mgr.14152) 295 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 182 MiB used, 536 GiB / 536 GiB avail; 109 KiB/s, 0 objects/s recovering 2024-09-20T19:11:17.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:17 smithi082 bash[24745]: cluster 2024-09-20T19:11:16.520031+0000 mgr.a (mgr.14152) 295 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 182 MiB used, 536 GiB / 536 GiB avail; 109 KiB/s, 0 objects/s recovering 2024-09-20T19:11:20.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: cluster 2024-09-20T19:11:18.520620+0000 mgr.a (mgr.14152) 296 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 92 KiB/s, 0 objects/s recovering 2024-09-20T19:11:20.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: cluster 2024-09-20T19:11:18.520620+0000 mgr.a (mgr.14152) 296 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 92 KiB/s, 0 objects/s recovering 2024-09-20T19:11:20.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: cephadm 2024-09-20T19:11:18.695527+0000 mgr.a (mgr.14152) 297 : cephadm [INF] Detected new or changed devices on smithi137 2024-09-20T19:11:20.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: cephadm 2024-09-20T19:11:18.695527+0000 mgr.a (mgr.14152) 297 : cephadm [INF] Detected new or changed devices on smithi137 2024-09-20T19:11:20.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: audit 2024-09-20T19:11:18.703752+0000 mon.a (mon.0) 589 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: audit 2024-09-20T19:11:18.703752+0000 mon.a (mon.0) 589 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: audit 2024-09-20T19:11:18.711806+0000 mon.a (mon.0) 590 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: audit 2024-09-20T19:11:18.711806+0000 mon.a (mon.0) 590 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: audit 2024-09-20T19:11:18.714587+0000 mon.a (mon.0) 591 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-20T19:11:20.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: audit 2024-09-20T19:11:18.714587+0000 mon.a (mon.0) 591 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-20T19:11:20.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: audit 2024-09-20T19:11:18.716442+0000 mon.a (mon.0) 592 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-20T19:11:20.048 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: audit 2024-09-20T19:11:18.716442+0000 mon.a (mon.0) 592 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-20T19:11:20.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: cephadm 2024-09-20T19:11:18.717803+0000 mgr.a (mgr.14152) 298 : cephadm [INF] Adjusting osd_memory_target on smithi137 to 10680M 2024-09-20T19:11:20.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: cephadm 2024-09-20T19:11:18.717803+0000 mgr.a (mgr.14152) 298 : cephadm [INF] Adjusting osd_memory_target on smithi137 to 10680M 2024-09-20T19:11:20.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: audit 2024-09-20T19:11:18.724084+0000 mon.a (mon.0) 593 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: audit 2024-09-20T19:11:18.724084+0000 mon.a (mon.0) 593 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: audit 2024-09-20T19:11:18.728393+0000 mon.a (mon.0) 594 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:11:20.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: audit 2024-09-20T19:11:18.728393+0000 mon.a (mon.0) 594 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:11:20.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: audit 2024-09-20T19:11:18.730230+0000 mon.a (mon.0) 595 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:11:20.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: audit 2024-09-20T19:11:18.730230+0000 mon.a (mon.0) 595 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:11:20.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: audit 2024-09-20T19:11:18.739987+0000 mon.a (mon.0) 596 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:19 smithi137 bash[25001]: audit 2024-09-20T19:11:18.739987+0000 mon.a (mon.0) 596 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: cluster 2024-09-20T19:11:18.520620+0000 mgr.a (mgr.14152) 296 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 92 KiB/s, 0 objects/s recovering 2024-09-20T19:11:20.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: cluster 2024-09-20T19:11:18.520620+0000 mgr.a (mgr.14152) 296 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 92 KiB/s, 0 objects/s recovering 2024-09-20T19:11:20.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: cephadm 2024-09-20T19:11:18.695527+0000 mgr.a (mgr.14152) 297 : cephadm [INF] Detected new or changed devices on smithi137 2024-09-20T19:11:20.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: cephadm 2024-09-20T19:11:18.695527+0000 mgr.a (mgr.14152) 297 : cephadm [INF] Detected new or changed devices on smithi137 2024-09-20T19:11:20.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: audit 2024-09-20T19:11:18.703752+0000 mon.a (mon.0) 589 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: audit 2024-09-20T19:11:18.703752+0000 mon.a (mon.0) 589 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: audit 2024-09-20T19:11:18.711806+0000 mon.a (mon.0) 590 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: audit 2024-09-20T19:11:18.711806+0000 mon.a (mon.0) 590 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: audit 2024-09-20T19:11:18.714587+0000 mon.a (mon.0) 591 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-20T19:11:20.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: audit 2024-09-20T19:11:18.714587+0000 mon.a (mon.0) 591 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-20T19:11:20.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: audit 2024-09-20T19:11:18.716442+0000 mon.a (mon.0) 592 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-20T19:11:20.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: audit 2024-09-20T19:11:18.716442+0000 mon.a (mon.0) 592 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-20T19:11:20.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: cephadm 2024-09-20T19:11:18.717803+0000 mgr.a (mgr.14152) 298 : cephadm [INF] Adjusting osd_memory_target on smithi137 to 10680M 2024-09-20T19:11:20.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: cephadm 2024-09-20T19:11:18.717803+0000 mgr.a (mgr.14152) 298 : cephadm [INF] Adjusting osd_memory_target on smithi137 to 10680M 2024-09-20T19:11:20.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: audit 2024-09-20T19:11:18.724084+0000 mon.a (mon.0) 593 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: audit 2024-09-20T19:11:18.724084+0000 mon.a (mon.0) 593 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: audit 2024-09-20T19:11:18.728393+0000 mon.a (mon.0) 594 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:11:20.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: audit 2024-09-20T19:11:18.728393+0000 mon.a (mon.0) 594 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:11:20.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: audit 2024-09-20T19:11:18.730230+0000 mon.a (mon.0) 595 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:11:20.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: audit 2024-09-20T19:11:18.730230+0000 mon.a (mon.0) 595 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:11:20.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: audit 2024-09-20T19:11:18.739987+0000 mon.a (mon.0) 596 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:19 smithi018 bash[22763]: audit 2024-09-20T19:11:18.739987+0000 mon.a (mon.0) 596 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: cluster 2024-09-20T19:11:18.520620+0000 mgr.a (mgr.14152) 296 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 92 KiB/s, 0 objects/s recovering 2024-09-20T19:11:20.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: cluster 2024-09-20T19:11:18.520620+0000 mgr.a (mgr.14152) 296 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 92 KiB/s, 0 objects/s recovering 2024-09-20T19:11:20.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: cephadm 2024-09-20T19:11:18.695527+0000 mgr.a (mgr.14152) 297 : cephadm [INF] Detected new or changed devices on smithi137 2024-09-20T19:11:20.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: cephadm 2024-09-20T19:11:18.695527+0000 mgr.a (mgr.14152) 297 : cephadm [INF] Detected new or changed devices on smithi137 2024-09-20T19:11:20.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: audit 2024-09-20T19:11:18.703752+0000 mon.a (mon.0) 589 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: audit 2024-09-20T19:11:18.703752+0000 mon.a (mon.0) 589 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: audit 2024-09-20T19:11:18.711806+0000 mon.a (mon.0) 590 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: audit 2024-09-20T19:11:18.711806+0000 mon.a (mon.0) 590 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: audit 2024-09-20T19:11:18.714587+0000 mon.a (mon.0) 591 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-20T19:11:20.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: audit 2024-09-20T19:11:18.714587+0000 mon.a (mon.0) 591 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-20T19:11:20.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: audit 2024-09-20T19:11:18.716442+0000 mon.a (mon.0) 592 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-20T19:11:20.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: audit 2024-09-20T19:11:18.716442+0000 mon.a (mon.0) 592 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-20T19:11:20.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: cephadm 2024-09-20T19:11:18.717803+0000 mgr.a (mgr.14152) 298 : cephadm [INF] Adjusting osd_memory_target on smithi137 to 10680M 2024-09-20T19:11:20.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: cephadm 2024-09-20T19:11:18.717803+0000 mgr.a (mgr.14152) 298 : cephadm [INF] Adjusting osd_memory_target on smithi137 to 10680M 2024-09-20T19:11:20.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: audit 2024-09-20T19:11:18.724084+0000 mon.a (mon.0) 593 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: audit 2024-09-20T19:11:18.724084+0000 mon.a (mon.0) 593 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: audit 2024-09-20T19:11:18.728393+0000 mon.a (mon.0) 594 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:11:20.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: audit 2024-09-20T19:11:18.728393+0000 mon.a (mon.0) 594 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:11:20.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: audit 2024-09-20T19:11:18.730230+0000 mon.a (mon.0) 595 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:11:20.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: audit 2024-09-20T19:11:18.730230+0000 mon.a (mon.0) 595 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:11:20.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: audit 2024-09-20T19:11:18.739987+0000 mon.a (mon.0) 596 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:19 smithi082 bash[24745]: audit 2024-09-20T19:11:18.739987+0000 mon.a (mon.0) 596 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:11:20.812 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:11:21.977 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:21 smithi018 bash[22763]: cluster 2024-09-20T19:11:20.521163+0000 mgr.a (mgr.14152) 299 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-20T19:11:21.978 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:21 smithi018 bash[22763]: cluster 2024-09-20T19:11:20.521163+0000 mgr.a (mgr.14152) 299 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-20T19:11:22.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:21 smithi137 bash[25001]: cluster 2024-09-20T19:11:20.521163+0000 mgr.a (mgr.14152) 299 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-20T19:11:22.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:21 smithi137 bash[25001]: cluster 2024-09-20T19:11:20.521163+0000 mgr.a (mgr.14152) 299 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-20T19:11:22.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:21 smithi082 bash[24745]: cluster 2024-09-20T19:11:20.521163+0000 mgr.a (mgr.14152) 299 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-20T19:11:22.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:21 smithi082 bash[24745]: cluster 2024-09-20T19:11:20.521163+0000 mgr.a (mgr.14152) 299 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-20T19:11:22.340 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:11:22.340 INFO:teuthology.orchestra.run.smithi018.stdout:{"epoch":41,"fsid":"9ac321c2-7782-11ef-baf5-efdc52797490","created":"2024-09-20T19:02:32.574503+0000","modified":"2024-09-20T19:11:14.238012+0000","last_up_change":"2024-09-20T19:11:12.218937+0000","last_in_change":"2024-09-20T19:10:38.009252+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-20T19:08:23.057343+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"22","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"ead1e471-eb47-48a0-a4cb-458a6541fb61","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6802","nonce":301062426},{"type":"v1","addr":"172.21.15.18:6803","nonce":301062426}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6804","nonce":301062426},{"type":"v1","addr":"172.21.15.18:6805","nonce":301062426}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6808","nonce":301062426},{"type":"v1","addr":"172.21.15.18:6809","nonce":301062426}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6806","nonce":301062426},{"type":"v1","addr":"172.21.15.18:6807","nonce":301062426}]},"public_addr":"172.21.15.18:6803/301062426","cluster_addr":"172.21.15.18:6805/301062426","heartbeat_back_addr":"172.21.15.18:6809/301062426","heartbeat_front_addr":"172.21.15.18:6807/301062426","state":["exists","up"]},{"osd":1,"uuid":"e2e4614c-3858-4039-8ebc-3cc14de8622b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6810","nonce":2856259269},{"type":"v1","addr":"172.21.15.18:6811","nonce":2856259269}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6812","nonce":2856259269},{"type":"v1","addr":"172.21.15.18:6813","nonce":2856259269}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6816","nonce":2856259269},{"type":"v1","addr":"172.21.15.18:6817","nonce":2856259269}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6814","nonce":2856259269},{"type":"v1","addr":"172.21.15.18:6815","nonce":2856259269}]},"public_addr":"172.21.15.18:6811/2856259269","cluster_addr":"172.21.15.18:6813/2856259269","heartbeat_back_addr":"172.21.15.18:6817/2856259269","heartbeat_front_addr":"172.21.15.18:6815/2856259269","state":["exists","up"]},{"osd":2,"uuid":"e807d8e4-0f55-4ac0-aa61-982e782fc3c9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":20,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6800","nonce":1493467252},{"type":"v1","addr":"172.21.15.82:6801","nonce":1493467252}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6802","nonce":1493467252},{"type":"v1","addr":"172.21.15.82:6803","nonce":1493467252}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6806","nonce":1493467252},{"type":"v1","addr":"172.21.15.82:6807","nonce":1493467252}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6804","nonce":1493467252},{"type":"v1","addr":"172.21.15.82:6805","nonce":1493467252}]},"public_addr":"172.21.15.82:6801/1493467252","cluster_addr":"172.21.15.82:6803/1493467252","heartbeat_back_addr":"172.21.15.82:6807/1493467252","heartbeat_front_addr":"172.21.15.82:6805/1493467252","state":["exists","up"]},{"osd":3,"uuid":"295cbee2-aa2e-4316-a875-a966aaece7e9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6808","nonce":1698195735},{"type":"v1","addr":"172.21.15.82:6809","nonce":1698195735}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6810","nonce":1698195735},{"type":"v1","addr":"172.21.15.82:6811","nonce":1698195735}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6814","nonce":1698195735},{"type":"v1","addr":"172.21.15.82:6815","nonce":1698195735}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6812","nonce":1698195735},{"type":"v1","addr":"172.21.15.82:6813","nonce":1698195735}]},"public_addr":"172.21.15.82:6809/1698195735","cluster_addr":"172.21.15.82:6811/1698195735","heartbeat_back_addr":"172.21.15.82:6815/1698195735","heartbeat_front_addr":"172.21.15.82:6813/1698195735","state":["exists","up"]},{"osd":4,"uuid":"5b278825-78ca-4793-acd0-eb744e21f0f0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6800","nonce":276178861},{"type":"v1","addr":"172.21.15.137:6801","nonce":276178861}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6802","nonce":276178861},{"type":"v1","addr":"172.21.15.137:6803","nonce":276178861}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6806","nonce":276178861},{"type":"v1","addr":"172.21.15.137:6807","nonce":276178861}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6804","nonce":276178861},{"type":"v1","addr":"172.21.15.137:6805","nonce":276178861}]},"public_addr":"172.21.15.137:6801/276178861","cluster_addr":"172.21.15.137:6803/276178861","heartbeat_back_addr":"172.21.15.137:6807/276178861","heartbeat_front_addr":"172.21.15.137:6805/276178861","state":["exists","up"]},{"osd":5,"uuid":"04a91d00-f7df-4d13-aeba-8e90f4c25a02","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6808","nonce":357167866},{"type":"v1","addr":"172.21.15.137:6809","nonce":357167866}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6810","nonce":357167866},{"type":"v1","addr":"172.21.15.137:6811","nonce":357167866}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6814","nonce":357167866},{"type":"v1","addr":"172.21.15.137:6815","nonce":357167866}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6812","nonce":357167866},{"type":"v1","addr":"172.21.15.137:6813","nonce":357167866}]},"public_addr":"172.21.15.137:6809/357167866","cluster_addr":"172.21.15.137:6811/357167866","heartbeat_back_addr":"172.21.15.137:6815/357167866","heartbeat_front_addr":"172.21.15.137:6813/357167866","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-20T19:06:28.006040+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-20T19:07:25.772892+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-20T19:08:19.553456+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-20T19:09:18.339350+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-20T19:10:11.482274+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-20T19:11:10.261079+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.18:0/3024485331":"2024-09-21T19:03:38.407816+0000","172.21.15.18:6801/1479828273":"2024-09-21T19:03:38.407816+0000","172.21.15.18:0/3321357997":"2024-09-21T19:03:38.407816+0000","172.21.15.18:6800/1479828273":"2024-09-21T19:03:38.407816+0000","172.21.15.18:0/1053748981":"2024-09-21T19:03:38.407816+0000","172.21.15.18:0/3174195930":"2024-09-21T19:03:01.687284+0000","172.21.15.18:0/3891769490":"2024-09-21T19:03:01.687284+0000","172.21.15.18:6801/3833606545":"2024-09-21T19:03:01.687284+0000","172.21.15.18:6800/3833606545":"2024-09-21T19:03:01.687284+0000","172.21.15.18:0/2977895457":"2024-09-21T19:03:01.687284+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-20T19:11:22.956 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-20T19:08:23.057343+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'is_stretch_pool': False, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '22', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 6, 'score_stable': 6, 'optimal_score': 0.5, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-09-20T19:11:22.956 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph osd pool get .mgr pg_num 2024-09-20T19:11:22.967 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:22 smithi018 bash[22763]: audit 2024-09-20T19:11:22.338713+0000 mon.a (mon.0) 597 : audit [DBG] from='client.? 172.21.15.18:0/2640713166' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-20T19:11:22.967 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:22 smithi018 bash[22763]: audit 2024-09-20T19:11:22.338713+0000 mon.a (mon.0) 597 : audit [DBG] from='client.? 172.21.15.18:0/2640713166' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-20T19:11:23.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:22 smithi137 bash[25001]: audit 2024-09-20T19:11:22.338713+0000 mon.a (mon.0) 597 : audit [DBG] from='client.? 172.21.15.18:0/2640713166' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-20T19:11:23.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:22 smithi137 bash[25001]: audit 2024-09-20T19:11:22.338713+0000 mon.a (mon.0) 597 : audit [DBG] from='client.? 172.21.15.18:0/2640713166' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-20T19:11:23.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:22 smithi082 bash[24745]: audit 2024-09-20T19:11:22.338713+0000 mon.a (mon.0) 597 : audit [DBG] from='client.? 172.21.15.18:0/2640713166' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-20T19:11:23.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:22 smithi082 bash[24745]: audit 2024-09-20T19:11:22.338713+0000 mon.a (mon.0) 597 : audit [DBG] from='client.? 172.21.15.18:0/2640713166' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-20T19:11:24.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:23 smithi137 bash[25001]: cluster 2024-09-20T19:11:22.521765+0000 mgr.a (mgr.14152) 300 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-20T19:11:24.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:23 smithi137 bash[25001]: cluster 2024-09-20T19:11:22.521765+0000 mgr.a (mgr.14152) 300 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-20T19:11:24.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:23 smithi018 bash[22763]: cluster 2024-09-20T19:11:22.521765+0000 mgr.a (mgr.14152) 300 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-20T19:11:24.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:23 smithi018 bash[22763]: cluster 2024-09-20T19:11:22.521765+0000 mgr.a (mgr.14152) 300 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-20T19:11:24.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:23 smithi082 bash[24745]: cluster 2024-09-20T19:11:22.521765+0000 mgr.a (mgr.14152) 300 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-20T19:11:24.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:23 smithi082 bash[24745]: cluster 2024-09-20T19:11:22.521765+0000 mgr.a (mgr.14152) 300 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-20T19:11:26.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:25 smithi137 bash[25001]: cluster 2024-09-20T19:11:24.522366+0000 mgr.a (mgr.14152) 301 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 56 KiB/s, 0 objects/s recovering 2024-09-20T19:11:26.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:25 smithi137 bash[25001]: cluster 2024-09-20T19:11:24.522366+0000 mgr.a (mgr.14152) 301 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 56 KiB/s, 0 objects/s recovering 2024-09-20T19:11:26.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:25 smithi018 bash[22763]: cluster 2024-09-20T19:11:24.522366+0000 mgr.a (mgr.14152) 301 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 56 KiB/s, 0 objects/s recovering 2024-09-20T19:11:26.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:25 smithi018 bash[22763]: cluster 2024-09-20T19:11:24.522366+0000 mgr.a (mgr.14152) 301 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 56 KiB/s, 0 objects/s recovering 2024-09-20T19:11:26.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:25 smithi082 bash[24745]: cluster 2024-09-20T19:11:24.522366+0000 mgr.a (mgr.14152) 301 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 56 KiB/s, 0 objects/s recovering 2024-09-20T19:11:26.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:25 smithi082 bash[24745]: cluster 2024-09-20T19:11:24.522366+0000 mgr.a (mgr.14152) 301 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 56 KiB/s, 0 objects/s recovering 2024-09-20T19:11:27.707 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:11:28.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:27 smithi137 bash[25001]: cluster 2024-09-20T19:11:26.522966+0000 mgr.a (mgr.14152) 302 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-20T19:11:28.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:27 smithi137 bash[25001]: cluster 2024-09-20T19:11:26.522966+0000 mgr.a (mgr.14152) 302 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-20T19:11:28.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:27 smithi018 bash[22763]: cluster 2024-09-20T19:11:26.522966+0000 mgr.a (mgr.14152) 302 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-20T19:11:28.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:27 smithi018 bash[22763]: cluster 2024-09-20T19:11:26.522966+0000 mgr.a (mgr.14152) 302 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-20T19:11:28.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:27 smithi082 bash[24745]: cluster 2024-09-20T19:11:26.522966+0000 mgr.a (mgr.14152) 302 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-20T19:11:28.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:27 smithi082 bash[24745]: cluster 2024-09-20T19:11:26.522966+0000 mgr.a (mgr.14152) 302 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-20T19:11:29.100 INFO:teuthology.orchestra.run.smithi018.stdout:pg_num: 1 2024-09-20T19:11:29.772 INFO:tasks.cephadm:Setting up client nodes... 2024-09-20T19:11:29.773 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph config log 1 --format=json 2024-09-20T19:11:30.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:29 smithi137 bash[25001]: cluster 2024-09-20T19:11:28.523472+0000 mgr.a (mgr.14152) 303 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:30.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:29 smithi137 bash[25001]: cluster 2024-09-20T19:11:28.523472+0000 mgr.a (mgr.14152) 303 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:30.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:29 smithi137 bash[25001]: audit 2024-09-20T19:11:29.099559+0000 mon.a (mon.0) 598 : audit [DBG] from='client.? 172.21.15.18:0/2270890514' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-20T19:11:30.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:29 smithi137 bash[25001]: audit 2024-09-20T19:11:29.099559+0000 mon.a (mon.0) 598 : audit [DBG] from='client.? 172.21.15.18:0/2270890514' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-20T19:11:30.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:29 smithi018 bash[22763]: cluster 2024-09-20T19:11:28.523472+0000 mgr.a (mgr.14152) 303 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:30.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:29 smithi018 bash[22763]: cluster 2024-09-20T19:11:28.523472+0000 mgr.a (mgr.14152) 303 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:30.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:29 smithi018 bash[22763]: audit 2024-09-20T19:11:29.099559+0000 mon.a (mon.0) 598 : audit [DBG] from='client.? 172.21.15.18:0/2270890514' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-20T19:11:30.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:29 smithi018 bash[22763]: audit 2024-09-20T19:11:29.099559+0000 mon.a (mon.0) 598 : audit [DBG] from='client.? 172.21.15.18:0/2270890514' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-20T19:11:30.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:29 smithi082 bash[24745]: cluster 2024-09-20T19:11:28.523472+0000 mgr.a (mgr.14152) 303 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:30.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:29 smithi082 bash[24745]: cluster 2024-09-20T19:11:28.523472+0000 mgr.a (mgr.14152) 303 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:30.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:29 smithi082 bash[24745]: audit 2024-09-20T19:11:29.099559+0000 mon.a (mon.0) 598 : audit [DBG] from='client.? 172.21.15.18:0/2270890514' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-20T19:11:30.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:29 smithi082 bash[24745]: audit 2024-09-20T19:11:29.099559+0000 mon.a (mon.0) 598 : audit [DBG] from='client.? 172.21.15.18:0/2270890514' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-20T19:11:32.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:31 smithi137 bash[25001]: cluster 2024-09-20T19:11:30.524029+0000 mgr.a (mgr.14152) 304 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:32.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:31 smithi137 bash[25001]: cluster 2024-09-20T19:11:30.524029+0000 mgr.a (mgr.14152) 304 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:32.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:31 smithi018 bash[22763]: cluster 2024-09-20T19:11:30.524029+0000 mgr.a (mgr.14152) 304 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:32.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:31 smithi018 bash[22763]: cluster 2024-09-20T19:11:30.524029+0000 mgr.a (mgr.14152) 304 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:32.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:31 smithi082 bash[24745]: cluster 2024-09-20T19:11:30.524029+0000 mgr.a (mgr.14152) 304 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:32.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:31 smithi082 bash[24745]: cluster 2024-09-20T19:11:30.524029+0000 mgr.a (mgr.14152) 304 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:34.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:33 smithi137 bash[25001]: cluster 2024-09-20T19:11:32.524609+0000 mgr.a (mgr.14152) 305 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:34.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:33 smithi137 bash[25001]: cluster 2024-09-20T19:11:32.524609+0000 mgr.a (mgr.14152) 305 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:34.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:33 smithi018 bash[22763]: cluster 2024-09-20T19:11:32.524609+0000 mgr.a (mgr.14152) 305 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:34.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:33 smithi018 bash[22763]: cluster 2024-09-20T19:11:32.524609+0000 mgr.a (mgr.14152) 305 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:34.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:33 smithi082 bash[24745]: cluster 2024-09-20T19:11:32.524609+0000 mgr.a (mgr.14152) 305 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:34.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:33 smithi082 bash[24745]: cluster 2024-09-20T19:11:32.524609+0000 mgr.a (mgr.14152) 305 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:34.573 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:11:36.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:35 smithi137 bash[25001]: cluster 2024-09-20T19:11:34.525151+0000 mgr.a (mgr.14152) 306 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:36.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:35 smithi137 bash[25001]: cluster 2024-09-20T19:11:34.525151+0000 mgr.a (mgr.14152) 306 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:36.073 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:11:36.086 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:35 smithi018 bash[22763]: cluster 2024-09-20T19:11:34.525151+0000 mgr.a (mgr.14152) 306 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:36.087 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:35 smithi018 bash[22763]: cluster 2024-09-20T19:11:34.525151+0000 mgr.a (mgr.14152) 306 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:36.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:35 smithi082 bash[24745]: cluster 2024-09-20T19:11:34.525151+0000 mgr.a (mgr.14152) 306 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:36.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:35 smithi082 bash[24745]: cluster 2024-09-20T19:11:34.525151+0000 mgr.a (mgr.14152) 306 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:36.709 INFO:teuthology.orchestra.run.smithi018.stdout:[{"version":21,"timestamp":"2024-09-20T19:11:18.718461+0000","name":"","changes":[{"name":"osd/host:smithi137/osd_memory_target","previous_value":"22399124275","new_value":"11199562137"}]}] 2024-09-20T19:11:36.710 INFO:tasks.ceph_manager:config epoch is 21 2024-09-20T19:11:36.710 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-20T19:11:36.710 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-20T19:11:36.711 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph mgr dump --format=json 2024-09-20T19:11:37.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:36 smithi137 bash[25001]: audit 2024-09-20T19:11:36.072788+0000 mon.a (mon.0) 599 : audit [DBG] from='client.? 172.21.15.18:0/3829944160' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-20T19:11:37.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:36 smithi137 bash[25001]: audit 2024-09-20T19:11:36.072788+0000 mon.a (mon.0) 599 : audit [DBG] from='client.? 172.21.15.18:0/3829944160' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-20T19:11:37.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:36 smithi018 bash[22763]: audit 2024-09-20T19:11:36.072788+0000 mon.a (mon.0) 599 : audit [DBG] from='client.? 172.21.15.18:0/3829944160' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-20T19:11:37.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:36 smithi018 bash[22763]: audit 2024-09-20T19:11:36.072788+0000 mon.a (mon.0) 599 : audit [DBG] from='client.? 172.21.15.18:0/3829944160' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-20T19:11:37.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:36 smithi082 bash[24745]: audit 2024-09-20T19:11:36.072788+0000 mon.a (mon.0) 599 : audit [DBG] from='client.? 172.21.15.18:0/3829944160' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-20T19:11:37.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:36 smithi082 bash[24745]: audit 2024-09-20T19:11:36.072788+0000 mon.a (mon.0) 599 : audit [DBG] from='client.? 172.21.15.18:0/3829944160' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-20T19:11:38.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:37 smithi137 bash[25001]: cluster 2024-09-20T19:11:36.525760+0000 mgr.a (mgr.14152) 307 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:38.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:37 smithi137 bash[25001]: cluster 2024-09-20T19:11:36.525760+0000 mgr.a (mgr.14152) 307 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:38.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:37 smithi018 bash[22763]: cluster 2024-09-20T19:11:36.525760+0000 mgr.a (mgr.14152) 307 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:38.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:37 smithi018 bash[22763]: cluster 2024-09-20T19:11:36.525760+0000 mgr.a (mgr.14152) 307 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:38.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:37 smithi082 bash[24745]: cluster 2024-09-20T19:11:36.525760+0000 mgr.a (mgr.14152) 307 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:38.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:37 smithi082 bash[24745]: cluster 2024-09-20T19:11:36.525760+0000 mgr.a (mgr.14152) 307 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:40.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:39 smithi137 bash[25001]: cluster 2024-09-20T19:11:38.526299+0000 mgr.a (mgr.14152) 308 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:40.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:39 smithi137 bash[25001]: cluster 2024-09-20T19:11:38.526299+0000 mgr.a (mgr.14152) 308 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:40.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:39 smithi018 bash[22763]: cluster 2024-09-20T19:11:38.526299+0000 mgr.a (mgr.14152) 308 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:40.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:39 smithi018 bash[22763]: cluster 2024-09-20T19:11:38.526299+0000 mgr.a (mgr.14152) 308 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:40.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:39 smithi082 bash[24745]: cluster 2024-09-20T19:11:38.526299+0000 mgr.a (mgr.14152) 308 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:40.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:39 smithi082 bash[24745]: cluster 2024-09-20T19:11:38.526299+0000 mgr.a (mgr.14152) 308 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:41.468 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:11:41.920 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:41 smithi018 bash[22763]: cluster 2024-09-20T19:11:40.526850+0000 mgr.a (mgr.14152) 309 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:41.920 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:41 smithi018 bash[22763]: cluster 2024-09-20T19:11:40.526850+0000 mgr.a (mgr.14152) 309 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:42.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:41 smithi137 bash[25001]: cluster 2024-09-20T19:11:40.526850+0000 mgr.a (mgr.14152) 309 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:42.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:41 smithi137 bash[25001]: cluster 2024-09-20T19:11:40.526850+0000 mgr.a (mgr.14152) 309 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:42.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:41 smithi082 bash[24745]: cluster 2024-09-20T19:11:40.526850+0000 mgr.a (mgr.14152) 309 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:42.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:41 smithi082 bash[24745]: cluster 2024-09-20T19:11:40.526850+0000 mgr.a (mgr.14152) 309 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:42.971 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:11:43.709 INFO:teuthology.orchestra.run.smithi018.stdout:{"epoch":15,"flags":0,"active_gid":14152,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6800","nonce":10046976},{"type":"v1","addr":"172.21.15.18:6801","nonce":10046976}]},"active_addr":"172.21.15.18:6801/10046976","active_change":"2024-09-20T19:03:38.408061+0000","active_mgr_features":4540719139924082687,"available":true,"standbys":[{"gid":24110,"name":"b","mgr_features":4540719139924082687,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to, use commas to separate multiple","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.27.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:10.4.8","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:sclorg-nginx-126","min":"","max":"","enum_allowed":[],"desc":"Nginx container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.7.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.17","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"oauth2-proxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.51.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:latest","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB metrics exporter container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many times ssh connections can fail liveness checks before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often ssh connections are checked for liveness","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sso_oauth2":{"name":"sso_oauth2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_requests":{"name":"max_requests","type":"int","level":"advanced","flags":0,"default_value":"500","min":"","max":"","enum_allowed":[],"desc":"Maximum number of requests to keep in memory. When new request comes in, the oldest request will be removed if the number of requests exceeds the max request number.if un-finished request is removed, error message will be logged in the ceph-mgr log.","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","restful"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to, use commas to separate multiple","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.27.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:10.4.8","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:sclorg-nginx-126","min":"","max":"","enum_allowed":[],"desc":"Nginx container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.7.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.17","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"oauth2-proxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.51.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:latest","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB metrics exporter container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many times ssh connections can fail liveness checks before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often ssh connections are checked for liveness","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sso_oauth2":{"name":"sso_oauth2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_requests":{"name":"max_requests","type":"int","level":"advanced","flags":0,"default_value":"500","min":"","max":"","enum_allowed":[],"desc":"Maximum number of requests to keep in memory. When new request comes in, the oldest request will be removed if the number of requests exceeds the max request number.if un-finished request is removed, error message will be logged in the ceph-mgr log.","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://172.21.15.18:8443/"},"always_on_modules":{"octopus":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"pacific":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"quincy":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"reef":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"squid":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]},"last_failure_osd_epoch":3,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.18:0","nonce":1353511365}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.18:0","nonce":3159074435}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.18:0","nonce":2801945263}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.18:0","nonce":621252096}]}]} 2024-09-20T19:11:43.714 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-20T19:11:43.714 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-20T19:11:43.715 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph osd dump --format=json 2024-09-20T19:11:44.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:43 smithi137 bash[25001]: cluster 2024-09-20T19:11:42.527430+0000 mgr.a (mgr.14152) 310 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:44.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:43 smithi137 bash[25001]: cluster 2024-09-20T19:11:42.527430+0000 mgr.a (mgr.14152) 310 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:44.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:43 smithi137 bash[25001]: audit 2024-09-20T19:11:42.962498+0000 mon.a (mon.0) 600 : audit [DBG] from='client.? 172.21.15.18:0/654638310' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-20T19:11:44.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:43 smithi137 bash[25001]: audit 2024-09-20T19:11:42.962498+0000 mon.a (mon.0) 600 : audit [DBG] from='client.? 172.21.15.18:0/654638310' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-20T19:11:44.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:43 smithi018 bash[22763]: cluster 2024-09-20T19:11:42.527430+0000 mgr.a (mgr.14152) 310 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:44.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:43 smithi018 bash[22763]: cluster 2024-09-20T19:11:42.527430+0000 mgr.a (mgr.14152) 310 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:44.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:43 smithi018 bash[22763]: audit 2024-09-20T19:11:42.962498+0000 mon.a (mon.0) 600 : audit [DBG] from='client.? 172.21.15.18:0/654638310' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-20T19:11:44.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:43 smithi018 bash[22763]: audit 2024-09-20T19:11:42.962498+0000 mon.a (mon.0) 600 : audit [DBG] from='client.? 172.21.15.18:0/654638310' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-20T19:11:44.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:43 smithi082 bash[24745]: cluster 2024-09-20T19:11:42.527430+0000 mgr.a (mgr.14152) 310 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:44.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:43 smithi082 bash[24745]: cluster 2024-09-20T19:11:42.527430+0000 mgr.a (mgr.14152) 310 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:44.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:43 smithi082 bash[24745]: audit 2024-09-20T19:11:42.962498+0000 mon.a (mon.0) 600 : audit [DBG] from='client.? 172.21.15.18:0/654638310' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-20T19:11:44.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:43 smithi082 bash[24745]: audit 2024-09-20T19:11:42.962498+0000 mon.a (mon.0) 600 : audit [DBG] from='client.? 172.21.15.18:0/654638310' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-20T19:11:46.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:45 smithi137 bash[25001]: cluster 2024-09-20T19:11:44.527987+0000 mgr.a (mgr.14152) 311 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:46.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:45 smithi137 bash[25001]: cluster 2024-09-20T19:11:44.527987+0000 mgr.a (mgr.14152) 311 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:46.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:45 smithi018 bash[22763]: cluster 2024-09-20T19:11:44.527987+0000 mgr.a (mgr.14152) 311 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:46.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:45 smithi018 bash[22763]: cluster 2024-09-20T19:11:44.527987+0000 mgr.a (mgr.14152) 311 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:46.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:45 smithi082 bash[24745]: cluster 2024-09-20T19:11:44.527987+0000 mgr.a (mgr.14152) 311 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:46.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:45 smithi082 bash[24745]: cluster 2024-09-20T19:11:44.527987+0000 mgr.a (mgr.14152) 311 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:48.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:47 smithi137 bash[25001]: cluster 2024-09-20T19:11:46.528549+0000 mgr.a (mgr.14152) 312 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:48.049 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:47 smithi137 bash[25001]: cluster 2024-09-20T19:11:46.528549+0000 mgr.a (mgr.14152) 312 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:48.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:47 smithi018 bash[22763]: cluster 2024-09-20T19:11:46.528549+0000 mgr.a (mgr.14152) 312 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:48.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:47 smithi018 bash[22763]: cluster 2024-09-20T19:11:46.528549+0000 mgr.a (mgr.14152) 312 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:48.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:47 smithi082 bash[24745]: cluster 2024-09-20T19:11:46.528549+0000 mgr.a (mgr.14152) 312 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:48.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:47 smithi082 bash[24745]: cluster 2024-09-20T19:11:46.528549+0000 mgr.a (mgr.14152) 312 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:48.474 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:11:49.860 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:11:49.860 INFO:teuthology.orchestra.run.smithi018.stdout:{"epoch":41,"fsid":"9ac321c2-7782-11ef-baf5-efdc52797490","created":"2024-09-20T19:02:32.574503+0000","modified":"2024-09-20T19:11:14.238012+0000","last_up_change":"2024-09-20T19:11:12.218937+0000","last_in_change":"2024-09-20T19:10:38.009252+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-20T19:08:23.057343+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"22","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"ead1e471-eb47-48a0-a4cb-458a6541fb61","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6802","nonce":301062426},{"type":"v1","addr":"172.21.15.18:6803","nonce":301062426}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6804","nonce":301062426},{"type":"v1","addr":"172.21.15.18:6805","nonce":301062426}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6808","nonce":301062426},{"type":"v1","addr":"172.21.15.18:6809","nonce":301062426}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6806","nonce":301062426},{"type":"v1","addr":"172.21.15.18:6807","nonce":301062426}]},"public_addr":"172.21.15.18:6803/301062426","cluster_addr":"172.21.15.18:6805/301062426","heartbeat_back_addr":"172.21.15.18:6809/301062426","heartbeat_front_addr":"172.21.15.18:6807/301062426","state":["exists","up"]},{"osd":1,"uuid":"e2e4614c-3858-4039-8ebc-3cc14de8622b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6810","nonce":2856259269},{"type":"v1","addr":"172.21.15.18:6811","nonce":2856259269}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6812","nonce":2856259269},{"type":"v1","addr":"172.21.15.18:6813","nonce":2856259269}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6816","nonce":2856259269},{"type":"v1","addr":"172.21.15.18:6817","nonce":2856259269}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6814","nonce":2856259269},{"type":"v1","addr":"172.21.15.18:6815","nonce":2856259269}]},"public_addr":"172.21.15.18:6811/2856259269","cluster_addr":"172.21.15.18:6813/2856259269","heartbeat_back_addr":"172.21.15.18:6817/2856259269","heartbeat_front_addr":"172.21.15.18:6815/2856259269","state":["exists","up"]},{"osd":2,"uuid":"e807d8e4-0f55-4ac0-aa61-982e782fc3c9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":20,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6800","nonce":1493467252},{"type":"v1","addr":"172.21.15.82:6801","nonce":1493467252}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6802","nonce":1493467252},{"type":"v1","addr":"172.21.15.82:6803","nonce":1493467252}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6806","nonce":1493467252},{"type":"v1","addr":"172.21.15.82:6807","nonce":1493467252}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6804","nonce":1493467252},{"type":"v1","addr":"172.21.15.82:6805","nonce":1493467252}]},"public_addr":"172.21.15.82:6801/1493467252","cluster_addr":"172.21.15.82:6803/1493467252","heartbeat_back_addr":"172.21.15.82:6807/1493467252","heartbeat_front_addr":"172.21.15.82:6805/1493467252","state":["exists","up"]},{"osd":3,"uuid":"295cbee2-aa2e-4316-a875-a966aaece7e9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6808","nonce":1698195735},{"type":"v1","addr":"172.21.15.82:6809","nonce":1698195735}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6810","nonce":1698195735},{"type":"v1","addr":"172.21.15.82:6811","nonce":1698195735}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6814","nonce":1698195735},{"type":"v1","addr":"172.21.15.82:6815","nonce":1698195735}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6812","nonce":1698195735},{"type":"v1","addr":"172.21.15.82:6813","nonce":1698195735}]},"public_addr":"172.21.15.82:6809/1698195735","cluster_addr":"172.21.15.82:6811/1698195735","heartbeat_back_addr":"172.21.15.82:6815/1698195735","heartbeat_front_addr":"172.21.15.82:6813/1698195735","state":["exists","up"]},{"osd":4,"uuid":"5b278825-78ca-4793-acd0-eb744e21f0f0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6800","nonce":276178861},{"type":"v1","addr":"172.21.15.137:6801","nonce":276178861}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6802","nonce":276178861},{"type":"v1","addr":"172.21.15.137:6803","nonce":276178861}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6806","nonce":276178861},{"type":"v1","addr":"172.21.15.137:6807","nonce":276178861}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6804","nonce":276178861},{"type":"v1","addr":"172.21.15.137:6805","nonce":276178861}]},"public_addr":"172.21.15.137:6801/276178861","cluster_addr":"172.21.15.137:6803/276178861","heartbeat_back_addr":"172.21.15.137:6807/276178861","heartbeat_front_addr":"172.21.15.137:6805/276178861","state":["exists","up"]},{"osd":5,"uuid":"04a91d00-f7df-4d13-aeba-8e90f4c25a02","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6808","nonce":357167866},{"type":"v1","addr":"172.21.15.137:6809","nonce":357167866}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6810","nonce":357167866},{"type":"v1","addr":"172.21.15.137:6811","nonce":357167866}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6814","nonce":357167866},{"type":"v1","addr":"172.21.15.137:6815","nonce":357167866}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6812","nonce":357167866},{"type":"v1","addr":"172.21.15.137:6813","nonce":357167866}]},"public_addr":"172.21.15.137:6809/357167866","cluster_addr":"172.21.15.137:6811/357167866","heartbeat_back_addr":"172.21.15.137:6815/357167866","heartbeat_front_addr":"172.21.15.137:6813/357167866","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-20T19:06:28.006040+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-20T19:07:25.772892+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-20T19:08:19.553456+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-20T19:09:18.339350+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-20T19:10:11.482274+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-20T19:11:10.261079+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.18:0/3024485331":"2024-09-21T19:03:38.407816+0000","172.21.15.18:6801/1479828273":"2024-09-21T19:03:38.407816+0000","172.21.15.18:0/3321357997":"2024-09-21T19:03:38.407816+0000","172.21.15.18:6800/1479828273":"2024-09-21T19:03:38.407816+0000","172.21.15.18:0/1053748981":"2024-09-21T19:03:38.407816+0000","172.21.15.18:0/3174195930":"2024-09-21T19:03:01.687284+0000","172.21.15.18:0/3891769490":"2024-09-21T19:03:01.687284+0000","172.21.15.18:6801/3833606545":"2024-09-21T19:03:01.687284+0000","172.21.15.18:6800/3833606545":"2024-09-21T19:03:01.687284+0000","172.21.15.18:0/2977895457":"2024-09-21T19:03:01.687284+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-20T19:11:50.036 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:49 smithi018 bash[22763]: cluster 2024-09-20T19:11:48.529001+0000 mgr.a (mgr.14152) 313 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:50.037 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:49 smithi018 bash[22763]: cluster 2024-09-20T19:11:48.529001+0000 mgr.a (mgr.14152) 313 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:50.046 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:49 smithi137 bash[25001]: cluster 2024-09-20T19:11:48.529001+0000 mgr.a (mgr.14152) 313 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:50.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:49 smithi137 bash[25001]: cluster 2024-09-20T19:11:48.529001+0000 mgr.a (mgr.14152) 313 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:50.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:49 smithi082 bash[24745]: cluster 2024-09-20T19:11:48.529001+0000 mgr.a (mgr.14152) 313 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:50.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:49 smithi082 bash[24745]: cluster 2024-09-20T19:11:48.529001+0000 mgr.a (mgr.14152) 313 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:50.527 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-20T19:11:50.527 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph osd dump --format=json 2024-09-20T19:11:51.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:50 smithi137 bash[25001]: audit 2024-09-20T19:11:49.858753+0000 mon.a (mon.0) 601 : audit [DBG] from='client.? 172.21.15.18:0/860781121' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-20T19:11:51.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:50 smithi137 bash[25001]: audit 2024-09-20T19:11:49.858753+0000 mon.a (mon.0) 601 : audit [DBG] from='client.? 172.21.15.18:0/860781121' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-20T19:11:51.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:50 smithi018 bash[22763]: audit 2024-09-20T19:11:49.858753+0000 mon.a (mon.0) 601 : audit [DBG] from='client.? 172.21.15.18:0/860781121' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-20T19:11:51.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:50 smithi018 bash[22763]: audit 2024-09-20T19:11:49.858753+0000 mon.a (mon.0) 601 : audit [DBG] from='client.? 172.21.15.18:0/860781121' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-20T19:11:51.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:50 smithi082 bash[24745]: audit 2024-09-20T19:11:49.858753+0000 mon.a (mon.0) 601 : audit [DBG] from='client.? 172.21.15.18:0/860781121' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-20T19:11:51.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:50 smithi082 bash[24745]: audit 2024-09-20T19:11:49.858753+0000 mon.a (mon.0) 601 : audit [DBG] from='client.? 172.21.15.18:0/860781121' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-20T19:11:52.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:51 smithi137 bash[25001]: cluster 2024-09-20T19:11:50.529669+0000 mgr.a (mgr.14152) 314 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:52.047 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:51 smithi137 bash[25001]: cluster 2024-09-20T19:11:50.529669+0000 mgr.a (mgr.14152) 314 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:52.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:51 smithi018 bash[22763]: cluster 2024-09-20T19:11:50.529669+0000 mgr.a (mgr.14152) 314 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:52.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:51 smithi018 bash[22763]: cluster 2024-09-20T19:11:50.529669+0000 mgr.a (mgr.14152) 314 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:52.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:51 smithi082 bash[24745]: cluster 2024-09-20T19:11:50.529669+0000 mgr.a (mgr.14152) 314 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:52.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:51 smithi082 bash[24745]: cluster 2024-09-20T19:11:50.529669+0000 mgr.a (mgr.14152) 314 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:54.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:53 smithi018 bash[22763]: cluster 2024-09-20T19:11:52.530221+0000 mgr.a (mgr.14152) 315 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:54.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:53 smithi018 bash[22763]: cluster 2024-09-20T19:11:52.530221+0000 mgr.a (mgr.14152) 315 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:54.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:53 smithi082 bash[24745]: cluster 2024-09-20T19:11:52.530221+0000 mgr.a (mgr.14152) 315 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:54.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:53 smithi082 bash[24745]: cluster 2024-09-20T19:11:52.530221+0000 mgr.a (mgr.14152) 315 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:54.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:53 smithi137 bash[25001]: cluster 2024-09-20T19:11:52.530221+0000 mgr.a (mgr.14152) 315 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:54.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:53 smithi137 bash[25001]: cluster 2024-09-20T19:11:52.530221+0000 mgr.a (mgr.14152) 315 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:55.276 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:11:56.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:55 smithi018 bash[22763]: cluster 2024-09-20T19:11:54.530767+0000 mgr.a (mgr.14152) 316 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:56.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:55 smithi018 bash[22763]: cluster 2024-09-20T19:11:54.530767+0000 mgr.a (mgr.14152) 316 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:56.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:55 smithi082 bash[24745]: cluster 2024-09-20T19:11:54.530767+0000 mgr.a (mgr.14152) 316 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:56.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:55 smithi082 bash[24745]: cluster 2024-09-20T19:11:54.530767+0000 mgr.a (mgr.14152) 316 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:56.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:55 smithi137 bash[25001]: cluster 2024-09-20T19:11:54.530767+0000 mgr.a (mgr.14152) 316 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:56.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:55 smithi137 bash[25001]: cluster 2024-09-20T19:11:54.530767+0000 mgr.a (mgr.14152) 316 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:56.759 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:11:56.759 INFO:teuthology.orchestra.run.smithi018.stdout:{"epoch":41,"fsid":"9ac321c2-7782-11ef-baf5-efdc52797490","created":"2024-09-20T19:02:32.574503+0000","modified":"2024-09-20T19:11:14.238012+0000","last_up_change":"2024-09-20T19:11:12.218937+0000","last_in_change":"2024-09-20T19:10:38.009252+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-20T19:08:23.057343+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"22","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"ead1e471-eb47-48a0-a4cb-458a6541fb61","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6802","nonce":301062426},{"type":"v1","addr":"172.21.15.18:6803","nonce":301062426}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6804","nonce":301062426},{"type":"v1","addr":"172.21.15.18:6805","nonce":301062426}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6808","nonce":301062426},{"type":"v1","addr":"172.21.15.18:6809","nonce":301062426}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6806","nonce":301062426},{"type":"v1","addr":"172.21.15.18:6807","nonce":301062426}]},"public_addr":"172.21.15.18:6803/301062426","cluster_addr":"172.21.15.18:6805/301062426","heartbeat_back_addr":"172.21.15.18:6809/301062426","heartbeat_front_addr":"172.21.15.18:6807/301062426","state":["exists","up"]},{"osd":1,"uuid":"e2e4614c-3858-4039-8ebc-3cc14de8622b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6810","nonce":2856259269},{"type":"v1","addr":"172.21.15.18:6811","nonce":2856259269}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6812","nonce":2856259269},{"type":"v1","addr":"172.21.15.18:6813","nonce":2856259269}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6816","nonce":2856259269},{"type":"v1","addr":"172.21.15.18:6817","nonce":2856259269}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.18:6814","nonce":2856259269},{"type":"v1","addr":"172.21.15.18:6815","nonce":2856259269}]},"public_addr":"172.21.15.18:6811/2856259269","cluster_addr":"172.21.15.18:6813/2856259269","heartbeat_back_addr":"172.21.15.18:6817/2856259269","heartbeat_front_addr":"172.21.15.18:6815/2856259269","state":["exists","up"]},{"osd":2,"uuid":"e807d8e4-0f55-4ac0-aa61-982e782fc3c9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":20,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6800","nonce":1493467252},{"type":"v1","addr":"172.21.15.82:6801","nonce":1493467252}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6802","nonce":1493467252},{"type":"v1","addr":"172.21.15.82:6803","nonce":1493467252}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6806","nonce":1493467252},{"type":"v1","addr":"172.21.15.82:6807","nonce":1493467252}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6804","nonce":1493467252},{"type":"v1","addr":"172.21.15.82:6805","nonce":1493467252}]},"public_addr":"172.21.15.82:6801/1493467252","cluster_addr":"172.21.15.82:6803/1493467252","heartbeat_back_addr":"172.21.15.82:6807/1493467252","heartbeat_front_addr":"172.21.15.82:6805/1493467252","state":["exists","up"]},{"osd":3,"uuid":"295cbee2-aa2e-4316-a875-a966aaece7e9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6808","nonce":1698195735},{"type":"v1","addr":"172.21.15.82:6809","nonce":1698195735}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6810","nonce":1698195735},{"type":"v1","addr":"172.21.15.82:6811","nonce":1698195735}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6814","nonce":1698195735},{"type":"v1","addr":"172.21.15.82:6815","nonce":1698195735}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.82:6812","nonce":1698195735},{"type":"v1","addr":"172.21.15.82:6813","nonce":1698195735}]},"public_addr":"172.21.15.82:6809/1698195735","cluster_addr":"172.21.15.82:6811/1698195735","heartbeat_back_addr":"172.21.15.82:6815/1698195735","heartbeat_front_addr":"172.21.15.82:6813/1698195735","state":["exists","up"]},{"osd":4,"uuid":"5b278825-78ca-4793-acd0-eb744e21f0f0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6800","nonce":276178861},{"type":"v1","addr":"172.21.15.137:6801","nonce":276178861}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6802","nonce":276178861},{"type":"v1","addr":"172.21.15.137:6803","nonce":276178861}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6806","nonce":276178861},{"type":"v1","addr":"172.21.15.137:6807","nonce":276178861}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6804","nonce":276178861},{"type":"v1","addr":"172.21.15.137:6805","nonce":276178861}]},"public_addr":"172.21.15.137:6801/276178861","cluster_addr":"172.21.15.137:6803/276178861","heartbeat_back_addr":"172.21.15.137:6807/276178861","heartbeat_front_addr":"172.21.15.137:6805/276178861","state":["exists","up"]},{"osd":5,"uuid":"04a91d00-f7df-4d13-aeba-8e90f4c25a02","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6808","nonce":357167866},{"type":"v1","addr":"172.21.15.137:6809","nonce":357167866}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6810","nonce":357167866},{"type":"v1","addr":"172.21.15.137:6811","nonce":357167866}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6814","nonce":357167866},{"type":"v1","addr":"172.21.15.137:6815","nonce":357167866}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6812","nonce":357167866},{"type":"v1","addr":"172.21.15.137:6813","nonce":357167866}]},"public_addr":"172.21.15.137:6809/357167866","cluster_addr":"172.21.15.137:6811/357167866","heartbeat_back_addr":"172.21.15.137:6815/357167866","heartbeat_front_addr":"172.21.15.137:6813/357167866","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-20T19:06:28.006040+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-20T19:07:25.772892+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-20T19:08:19.553456+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-20T19:09:18.339350+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-20T19:10:11.482274+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-20T19:11:10.261079+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.18:0/3024485331":"2024-09-21T19:03:38.407816+0000","172.21.15.18:6801/1479828273":"2024-09-21T19:03:38.407816+0000","172.21.15.18:0/3321357997":"2024-09-21T19:03:38.407816+0000","172.21.15.18:6800/1479828273":"2024-09-21T19:03:38.407816+0000","172.21.15.18:0/1053748981":"2024-09-21T19:03:38.407816+0000","172.21.15.18:0/3174195930":"2024-09-21T19:03:01.687284+0000","172.21.15.18:0/3891769490":"2024-09-21T19:03:01.687284+0000","172.21.15.18:6801/3833606545":"2024-09-21T19:03:01.687284+0000","172.21.15.18:6800/3833606545":"2024-09-21T19:03:01.687284+0000","172.21.15.18:0/2977895457":"2024-09-21T19:03:01.687284+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-20T19:11:57.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:56 smithi018 bash[22763]: audit 2024-09-20T19:11:56.758368+0000 mon.a (mon.0) 602 : audit [DBG] from='client.? 172.21.15.18:0/3236216469' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-20T19:11:57.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:56 smithi018 bash[22763]: audit 2024-09-20T19:11:56.758368+0000 mon.a (mon.0) 602 : audit [DBG] from='client.? 172.21.15.18:0/3236216469' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-20T19:11:57.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:56 smithi082 bash[24745]: audit 2024-09-20T19:11:56.758368+0000 mon.a (mon.0) 602 : audit [DBG] from='client.? 172.21.15.18:0/3236216469' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-20T19:11:57.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:56 smithi082 bash[24745]: audit 2024-09-20T19:11:56.758368+0000 mon.a (mon.0) 602 : audit [DBG] from='client.? 172.21.15.18:0/3236216469' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-20T19:11:57.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:56 smithi137 bash[25001]: audit 2024-09-20T19:11:56.758368+0000 mon.a (mon.0) 602 : audit [DBG] from='client.? 172.21.15.18:0/3236216469' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-20T19:11:57.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:56 smithi137 bash[25001]: audit 2024-09-20T19:11:56.758368+0000 mon.a (mon.0) 602 : audit [DBG] from='client.? 172.21.15.18:0/3236216469' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-20T19:11:57.407 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph tell osd.0 flush_pg_stats 2024-09-20T19:11:57.408 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph tell osd.1 flush_pg_stats 2024-09-20T19:11:57.408 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph tell osd.2 flush_pg_stats 2024-09-20T19:11:57.409 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph tell osd.3 flush_pg_stats 2024-09-20T19:11:57.409 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph tell osd.4 flush_pg_stats 2024-09-20T19:11:57.409 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph tell osd.5 flush_pg_stats 2024-09-20T19:11:58.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:57 smithi018 bash[22763]: cluster 2024-09-20T19:11:56.531183+0000 mgr.a (mgr.14152) 317 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:58.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:57 smithi018 bash[22763]: cluster 2024-09-20T19:11:56.531183+0000 mgr.a (mgr.14152) 317 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:58.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:57 smithi082 bash[24745]: cluster 2024-09-20T19:11:56.531183+0000 mgr.a (mgr.14152) 317 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:58.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:57 smithi082 bash[24745]: cluster 2024-09-20T19:11:56.531183+0000 mgr.a (mgr.14152) 317 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:58.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:57 smithi137 bash[25001]: cluster 2024-09-20T19:11:56.531183+0000 mgr.a (mgr.14152) 317 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:11:58.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:57 smithi137 bash[25001]: cluster 2024-09-20T19:11:56.531183+0000 mgr.a (mgr.14152) 317 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:00.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:59 smithi018 bash[22763]: cluster 2024-09-20T19:11:58.531737+0000 mgr.a (mgr.14152) 318 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:00.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:11:59 smithi018 bash[22763]: cluster 2024-09-20T19:11:58.531737+0000 mgr.a (mgr.14152) 318 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:00.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:59 smithi082 bash[24745]: cluster 2024-09-20T19:11:58.531737+0000 mgr.a (mgr.14152) 318 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:00.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:11:59 smithi082 bash[24745]: cluster 2024-09-20T19:11:58.531737+0000 mgr.a (mgr.14152) 318 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:00.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:59 smithi137 bash[25001]: cluster 2024-09-20T19:11:58.531737+0000 mgr.a (mgr.14152) 318 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:00.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:11:59 smithi137 bash[25001]: cluster 2024-09-20T19:11:58.531737+0000 mgr.a (mgr.14152) 318 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:02.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:01 smithi018 bash[22763]: cluster 2024-09-20T19:12:00.532290+0000 mgr.a (mgr.14152) 319 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:02.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:01 smithi018 bash[22763]: cluster 2024-09-20T19:12:00.532290+0000 mgr.a (mgr.14152) 319 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:02.173 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:12:02.174 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:12:02.174 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:12:02.174 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:12:02.175 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:12:02.175 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:12:02.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:01 smithi082 bash[24745]: cluster 2024-09-20T19:12:00.532290+0000 mgr.a (mgr.14152) 319 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:02.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:01 smithi082 bash[24745]: cluster 2024-09-20T19:12:00.532290+0000 mgr.a (mgr.14152) 319 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:02.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:01 smithi137 bash[25001]: cluster 2024-09-20T19:12:00.532290+0000 mgr.a (mgr.14152) 319 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:02.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:01 smithi137 bash[25001]: cluster 2024-09-20T19:12:00.532290+0000 mgr.a (mgr.14152) 319 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:04.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:03 smithi018 bash[22763]: cluster 2024-09-20T19:12:02.532894+0000 mgr.a (mgr.14152) 320 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:04.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:03 smithi018 bash[22763]: cluster 2024-09-20T19:12:02.532894+0000 mgr.a (mgr.14152) 320 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:04.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:03 smithi082 bash[24745]: cluster 2024-09-20T19:12:02.532894+0000 mgr.a (mgr.14152) 320 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:04.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:03 smithi082 bash[24745]: cluster 2024-09-20T19:12:02.532894+0000 mgr.a (mgr.14152) 320 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:04.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:03 smithi137 bash[25001]: cluster 2024-09-20T19:12:02.532894+0000 mgr.a (mgr.14152) 320 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:04.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:03 smithi137 bash[25001]: cluster 2024-09-20T19:12:02.532894+0000 mgr.a (mgr.14152) 320 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:06.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:05 smithi018 bash[22763]: cluster 2024-09-20T19:12:04.533492+0000 mgr.a (mgr.14152) 321 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:06.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:05 smithi018 bash[22763]: cluster 2024-09-20T19:12:04.533492+0000 mgr.a (mgr.14152) 321 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:06.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:05 smithi082 bash[24745]: cluster 2024-09-20T19:12:04.533492+0000 mgr.a (mgr.14152) 321 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:06.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:05 smithi082 bash[24745]: cluster 2024-09-20T19:12:04.533492+0000 mgr.a (mgr.14152) 321 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:06.202 INFO:teuthology.orchestra.run.smithi018.stdout:141733920794 2024-09-20T19:12:06.202 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph osd last-stat-seq osd.4 2024-09-20T19:12:06.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:05 smithi137 bash[25001]: cluster 2024-09-20T19:12:04.533492+0000 mgr.a (mgr.14152) 321 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:06.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:05 smithi137 bash[25001]: cluster 2024-09-20T19:12:04.533492+0000 mgr.a (mgr.14152) 321 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:08.059 INFO:teuthology.orchestra.run.smithi018.stdout:167503724558 2024-09-20T19:12:08.060 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph osd last-stat-seq osd.5 2024-09-20T19:12:08.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:07 smithi018 bash[22763]: cluster 2024-09-20T19:12:06.533873+0000 mgr.a (mgr.14152) 322 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:08.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:07 smithi018 bash[22763]: cluster 2024-09-20T19:12:06.533873+0000 mgr.a (mgr.14152) 322 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:08.184 INFO:teuthology.orchestra.run.smithi018.stdout:77309411376 2024-09-20T19:12:08.185 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph osd last-stat-seq osd.2 2024-09-20T19:12:08.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:07 smithi082 bash[24745]: cluster 2024-09-20T19:12:06.533873+0000 mgr.a (mgr.14152) 322 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:08.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:07 smithi082 bash[24745]: cluster 2024-09-20T19:12:06.533873+0000 mgr.a (mgr.14152) 322 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:08.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:07 smithi137 bash[25001]: cluster 2024-09-20T19:12:06.533873+0000 mgr.a (mgr.14152) 322 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:08.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:07 smithi137 bash[25001]: cluster 2024-09-20T19:12:06.533873+0000 mgr.a (mgr.14152) 322 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:09.300 INFO:teuthology.orchestra.run.smithi018.stdout:55834574907 2024-09-20T19:12:09.300 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph osd last-stat-seq osd.1 2024-09-20T19:12:09.355 INFO:teuthology.orchestra.run.smithi018.stdout:115964117029 2024-09-20T19:12:09.356 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph osd last-stat-seq osd.3 2024-09-20T19:12:09.383 INFO:teuthology.orchestra.run.smithi018.stdout:34359738439 2024-09-20T19:12:09.383 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph osd last-stat-seq osd.0 2024-09-20T19:12:10.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:09 smithi018 bash[22763]: cluster 2024-09-20T19:12:08.534399+0000 mgr.a (mgr.14152) 323 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:10.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:09 smithi018 bash[22763]: cluster 2024-09-20T19:12:08.534399+0000 mgr.a (mgr.14152) 323 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:10.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:09 smithi082 bash[24745]: cluster 2024-09-20T19:12:08.534399+0000 mgr.a (mgr.14152) 323 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:10.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:09 smithi082 bash[24745]: cluster 2024-09-20T19:12:08.534399+0000 mgr.a (mgr.14152) 323 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:10.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:09 smithi137 bash[25001]: cluster 2024-09-20T19:12:08.534399+0000 mgr.a (mgr.14152) 323 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:10.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:09 smithi137 bash[25001]: cluster 2024-09-20T19:12:08.534399+0000 mgr.a (mgr.14152) 323 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:11.978 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:12:11.980 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:12:11.980 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:12:12.160 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:11 smithi018 bash[22763]: cluster 2024-09-20T19:12:10.534953+0000 mgr.a (mgr.14152) 324 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:12.160 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:11 smithi018 bash[22763]: cluster 2024-09-20T19:12:10.534953+0000 mgr.a (mgr.14152) 324 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:12.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:11 smithi082 bash[24745]: cluster 2024-09-20T19:12:10.534953+0000 mgr.a (mgr.14152) 324 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:12.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:11 smithi082 bash[24745]: cluster 2024-09-20T19:12:10.534953+0000 mgr.a (mgr.14152) 324 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:12.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:11 smithi137 bash[25001]: cluster 2024-09-20T19:12:10.534953+0000 mgr.a (mgr.14152) 324 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:12.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:11 smithi137 bash[25001]: cluster 2024-09-20T19:12:10.534953+0000 mgr.a (mgr.14152) 324 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:13.999 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:12:13.999 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:12:14.000 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:12:14.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:13 smithi018 bash[22763]: cluster 2024-09-20T19:12:12.535545+0000 mgr.a (mgr.14152) 325 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:14.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:13 smithi018 bash[22763]: cluster 2024-09-20T19:12:12.535545+0000 mgr.a (mgr.14152) 325 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:14.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:13 smithi082 bash[24745]: cluster 2024-09-20T19:12:12.535545+0000 mgr.a (mgr.14152) 325 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:14.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:13 smithi082 bash[24745]: cluster 2024-09-20T19:12:12.535545+0000 mgr.a (mgr.14152) 325 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:14.289 INFO:teuthology.orchestra.run.smithi018.stdout:167503724559 2024-09-20T19:12:14.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:13 smithi137 bash[25001]: cluster 2024-09-20T19:12:12.535545+0000 mgr.a (mgr.14152) 325 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:14.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:13 smithi137 bash[25001]: cluster 2024-09-20T19:12:12.535545+0000 mgr.a (mgr.14152) 325 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:14.329 INFO:teuthology.orchestra.run.smithi018.stdout:141733920795 2024-09-20T19:12:14.337 INFO:teuthology.orchestra.run.smithi018.stdout:77309411378 2024-09-20T19:12:15.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:14 smithi018 bash[22763]: audit 2024-09-20T19:12:14.289162+0000 mon.a (mon.0) 603 : audit [DBG] from='client.? 172.21.15.18:0/2378582081' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-20T19:12:15.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:14 smithi018 bash[22763]: audit 2024-09-20T19:12:14.289162+0000 mon.a (mon.0) 603 : audit [DBG] from='client.? 172.21.15.18:0/2378582081' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-20T19:12:15.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:14 smithi018 bash[22763]: audit 2024-09-20T19:12:14.329340+0000 mon.a (mon.0) 604 : audit [DBG] from='client.? 172.21.15.18:0/3055042036' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-20T19:12:15.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:14 smithi018 bash[22763]: audit 2024-09-20T19:12:14.329340+0000 mon.a (mon.0) 604 : audit [DBG] from='client.? 172.21.15.18:0/3055042036' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-20T19:12:15.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:14 smithi018 bash[22763]: audit 2024-09-20T19:12:14.336980+0000 mon.a (mon.0) 605 : audit [DBG] from='client.? 172.21.15.18:0/3132486194' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-20T19:12:15.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:14 smithi018 bash[22763]: audit 2024-09-20T19:12:14.336980+0000 mon.a (mon.0) 605 : audit [DBG] from='client.? 172.21.15.18:0/3132486194' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-20T19:12:15.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:14 smithi082 bash[24745]: audit 2024-09-20T19:12:14.289162+0000 mon.a (mon.0) 603 : audit [DBG] from='client.? 172.21.15.18:0/2378582081' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-20T19:12:15.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:14 smithi082 bash[24745]: audit 2024-09-20T19:12:14.289162+0000 mon.a (mon.0) 603 : audit [DBG] from='client.? 172.21.15.18:0/2378582081' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-20T19:12:15.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:14 smithi082 bash[24745]: audit 2024-09-20T19:12:14.329340+0000 mon.a (mon.0) 604 : audit [DBG] from='client.? 172.21.15.18:0/3055042036' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-20T19:12:15.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:14 smithi082 bash[24745]: audit 2024-09-20T19:12:14.329340+0000 mon.a (mon.0) 604 : audit [DBG] from='client.? 172.21.15.18:0/3055042036' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-20T19:12:15.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:14 smithi082 bash[24745]: audit 2024-09-20T19:12:14.336980+0000 mon.a (mon.0) 605 : audit [DBG] from='client.? 172.21.15.18:0/3132486194' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-20T19:12:15.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:14 smithi082 bash[24745]: audit 2024-09-20T19:12:14.336980+0000 mon.a (mon.0) 605 : audit [DBG] from='client.? 172.21.15.18:0/3132486194' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-20T19:12:15.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:14 smithi137 bash[25001]: audit 2024-09-20T19:12:14.289162+0000 mon.a (mon.0) 603 : audit [DBG] from='client.? 172.21.15.18:0/2378582081' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-20T19:12:15.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:14 smithi137 bash[25001]: audit 2024-09-20T19:12:14.289162+0000 mon.a (mon.0) 603 : audit [DBG] from='client.? 172.21.15.18:0/2378582081' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-20T19:12:15.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:14 smithi137 bash[25001]: audit 2024-09-20T19:12:14.329340+0000 mon.a (mon.0) 604 : audit [DBG] from='client.? 172.21.15.18:0/3055042036' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-20T19:12:15.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:14 smithi137 bash[25001]: audit 2024-09-20T19:12:14.329340+0000 mon.a (mon.0) 604 : audit [DBG] from='client.? 172.21.15.18:0/3055042036' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-20T19:12:15.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:14 smithi137 bash[25001]: audit 2024-09-20T19:12:14.336980+0000 mon.a (mon.0) 605 : audit [DBG] from='client.? 172.21.15.18:0/3132486194' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-20T19:12:15.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:14 smithi137 bash[25001]: audit 2024-09-20T19:12:14.336980+0000 mon.a (mon.0) 605 : audit [DBG] from='client.? 172.21.15.18:0/3132486194' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-20T19:12:16.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:15 smithi018 bash[22763]: cluster 2024-09-20T19:12:14.535925+0000 mgr.a (mgr.14152) 326 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:16.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:15 smithi018 bash[22763]: cluster 2024-09-20T19:12:14.535925+0000 mgr.a (mgr.14152) 326 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:16.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:15 smithi082 bash[24745]: cluster 2024-09-20T19:12:14.535925+0000 mgr.a (mgr.14152) 326 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:16.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:15 smithi082 bash[24745]: cluster 2024-09-20T19:12:14.535925+0000 mgr.a (mgr.14152) 326 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:16.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:15 smithi137 bash[25001]: cluster 2024-09-20T19:12:14.535925+0000 mgr.a (mgr.14152) 326 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:16.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:15 smithi137 bash[25001]: cluster 2024-09-20T19:12:14.535925+0000 mgr.a (mgr.14152) 326 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:17.111 INFO:tasks.cephadm.ceph_manager.ceph:need seq 141733920794 got 141733920795 for osd.4 2024-09-20T19:12:17.112 DEBUG:teuthology.parallel:result is None 2024-09-20T19:12:17.129 INFO:tasks.cephadm.ceph_manager.ceph:need seq 167503724558 got 167503724559 for osd.5 2024-09-20T19:12:17.129 DEBUG:teuthology.parallel:result is None 2024-09-20T19:12:17.248 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411376 got 77309411378 for osd.2 2024-09-20T19:12:17.248 DEBUG:teuthology.parallel:result is None 2024-09-20T19:12:17.920 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:17 smithi018 bash[22763]: cluster 2024-09-20T19:12:16.536441+0000 mgr.a (mgr.14152) 327 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:17.920 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:17 smithi018 bash[22763]: cluster 2024-09-20T19:12:16.536441+0000 mgr.a (mgr.14152) 327 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:18.014 INFO:teuthology.orchestra.run.smithi018.stdout:34359738441 2024-09-20T19:12:18.034 INFO:teuthology.orchestra.run.smithi018.stdout:55834574909 2024-09-20T19:12:18.137 INFO:teuthology.orchestra.run.smithi018.stdout:115964117031 2024-09-20T19:12:18.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:17 smithi082 bash[24745]: cluster 2024-09-20T19:12:16.536441+0000 mgr.a (mgr.14152) 327 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:18.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:17 smithi082 bash[24745]: cluster 2024-09-20T19:12:16.536441+0000 mgr.a (mgr.14152) 327 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:18.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:17 smithi137 bash[25001]: cluster 2024-09-20T19:12:16.536441+0000 mgr.a (mgr.14152) 327 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:18.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:17 smithi137 bash[25001]: cluster 2024-09-20T19:12:16.536441+0000 mgr.a (mgr.14152) 327 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:18.966 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:18 smithi018 bash[22763]: audit 2024-09-20T19:12:18.013702+0000 mon.a (mon.0) 606 : audit [DBG] from='client.? 172.21.15.18:0/4216526212' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-20T19:12:18.967 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:18 smithi018 bash[22763]: audit 2024-09-20T19:12:18.013702+0000 mon.a (mon.0) 606 : audit [DBG] from='client.? 172.21.15.18:0/4216526212' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-20T19:12:18.967 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:18 smithi018 bash[22763]: audit 2024-09-20T19:12:18.034674+0000 mon.a (mon.0) 607 : audit [DBG] from='client.? 172.21.15.18:0/3080087619' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-20T19:12:18.967 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:18 smithi018 bash[22763]: audit 2024-09-20T19:12:18.034674+0000 mon.a (mon.0) 607 : audit [DBG] from='client.? 172.21.15.18:0/3080087619' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-20T19:12:18.967 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:18 smithi018 bash[22763]: audit 2024-09-20T19:12:18.137709+0000 mon.a (mon.0) 608 : audit [DBG] from='client.? 172.21.15.18:0/918887407' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-20T19:12:18.967 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:18 smithi018 bash[22763]: audit 2024-09-20T19:12:18.137709+0000 mon.a (mon.0) 608 : audit [DBG] from='client.? 172.21.15.18:0/918887407' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-20T19:12:18.967 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:18 smithi018 bash[22763]: audit 2024-09-20T19:12:18.795517+0000 mon.a (mon.0) 609 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:12:18.967 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:18 smithi018 bash[22763]: audit 2024-09-20T19:12:18.795517+0000 mon.a (mon.0) 609 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:12:19.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:18 smithi082 bash[24745]: audit 2024-09-20T19:12:18.013702+0000 mon.a (mon.0) 606 : audit [DBG] from='client.? 172.21.15.18:0/4216526212' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-20T19:12:19.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:18 smithi082 bash[24745]: audit 2024-09-20T19:12:18.013702+0000 mon.a (mon.0) 606 : audit [DBG] from='client.? 172.21.15.18:0/4216526212' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-20T19:12:19.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:18 smithi082 bash[24745]: audit 2024-09-20T19:12:18.034674+0000 mon.a (mon.0) 607 : audit [DBG] from='client.? 172.21.15.18:0/3080087619' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-20T19:12:19.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:18 smithi082 bash[24745]: audit 2024-09-20T19:12:18.034674+0000 mon.a (mon.0) 607 : audit [DBG] from='client.? 172.21.15.18:0/3080087619' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-20T19:12:19.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:18 smithi082 bash[24745]: audit 2024-09-20T19:12:18.137709+0000 mon.a (mon.0) 608 : audit [DBG] from='client.? 172.21.15.18:0/918887407' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-20T19:12:19.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:18 smithi082 bash[24745]: audit 2024-09-20T19:12:18.137709+0000 mon.a (mon.0) 608 : audit [DBG] from='client.? 172.21.15.18:0/918887407' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-20T19:12:19.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:18 smithi082 bash[24745]: audit 2024-09-20T19:12:18.795517+0000 mon.a (mon.0) 609 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:12:19.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:18 smithi082 bash[24745]: audit 2024-09-20T19:12:18.795517+0000 mon.a (mon.0) 609 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:12:19.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:18 smithi137 bash[25001]: audit 2024-09-20T19:12:18.013702+0000 mon.a (mon.0) 606 : audit [DBG] from='client.? 172.21.15.18:0/4216526212' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-20T19:12:19.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:18 smithi137 bash[25001]: audit 2024-09-20T19:12:18.013702+0000 mon.a (mon.0) 606 : audit [DBG] from='client.? 172.21.15.18:0/4216526212' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-20T19:12:19.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:18 smithi137 bash[25001]: audit 2024-09-20T19:12:18.034674+0000 mon.a (mon.0) 607 : audit [DBG] from='client.? 172.21.15.18:0/3080087619' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-20T19:12:19.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:18 smithi137 bash[25001]: audit 2024-09-20T19:12:18.034674+0000 mon.a (mon.0) 607 : audit [DBG] from='client.? 172.21.15.18:0/3080087619' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-20T19:12:19.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:18 smithi137 bash[25001]: audit 2024-09-20T19:12:18.137709+0000 mon.a (mon.0) 608 : audit [DBG] from='client.? 172.21.15.18:0/918887407' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-20T19:12:19.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:18 smithi137 bash[25001]: audit 2024-09-20T19:12:18.137709+0000 mon.a (mon.0) 608 : audit [DBG] from='client.? 172.21.15.18:0/918887407' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-20T19:12:19.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:18 smithi137 bash[25001]: audit 2024-09-20T19:12:18.795517+0000 mon.a (mon.0) 609 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:12:19.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:18 smithi137 bash[25001]: audit 2024-09-20T19:12:18.795517+0000 mon.a (mon.0) 609 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:12:19.737 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738439 got 34359738441 for osd.0 2024-09-20T19:12:19.737 DEBUG:teuthology.parallel:result is None 2024-09-20T19:12:19.764 INFO:tasks.cephadm.ceph_manager.ceph:need seq 115964117029 got 115964117031 for osd.3 2024-09-20T19:12:19.764 DEBUG:teuthology.parallel:result is None 2024-09-20T19:12:19.793 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574907 got 55834574909 for osd.1 2024-09-20T19:12:19.793 DEBUG:teuthology.parallel:result is None 2024-09-20T19:12:19.794 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-20T19:12:19.794 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph pg dump --format=json 2024-09-20T19:12:20.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:19 smithi018 bash[22763]: cluster 2024-09-20T19:12:18.536991+0000 mgr.a (mgr.14152) 328 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:20.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:19 smithi018 bash[22763]: cluster 2024-09-20T19:12:18.536991+0000 mgr.a (mgr.14152) 328 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:20.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:19 smithi018 bash[22763]: audit 2024-09-20T19:12:19.575569+0000 mon.a (mon.0) 610 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:12:20.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:19 smithi018 bash[22763]: audit 2024-09-20T19:12:19.575569+0000 mon.a (mon.0) 610 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:12:20.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:19 smithi018 bash[22763]: audit 2024-09-20T19:12:19.576970+0000 mon.a (mon.0) 611 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:12:20.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:19 smithi018 bash[22763]: audit 2024-09-20T19:12:19.576970+0000 mon.a (mon.0) 611 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:12:20.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:19 smithi018 bash[22763]: audit 2024-09-20T19:12:19.585955+0000 mon.a (mon.0) 612 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:20.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:19 smithi018 bash[22763]: audit 2024-09-20T19:12:19.585955+0000 mon.a (mon.0) 612 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:20.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:19 smithi082 bash[24745]: cluster 2024-09-20T19:12:18.536991+0000 mgr.a (mgr.14152) 328 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:20.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:19 smithi082 bash[24745]: cluster 2024-09-20T19:12:18.536991+0000 mgr.a (mgr.14152) 328 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:20.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:19 smithi082 bash[24745]: audit 2024-09-20T19:12:19.575569+0000 mon.a (mon.0) 610 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:12:20.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:19 smithi082 bash[24745]: audit 2024-09-20T19:12:19.575569+0000 mon.a (mon.0) 610 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:12:20.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:19 smithi082 bash[24745]: audit 2024-09-20T19:12:19.576970+0000 mon.a (mon.0) 611 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:12:20.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:19 smithi082 bash[24745]: audit 2024-09-20T19:12:19.576970+0000 mon.a (mon.0) 611 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:12:20.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:19 smithi082 bash[24745]: audit 2024-09-20T19:12:19.585955+0000 mon.a (mon.0) 612 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:20.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:19 smithi082 bash[24745]: audit 2024-09-20T19:12:19.585955+0000 mon.a (mon.0) 612 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:20.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:19 smithi137 bash[25001]: cluster 2024-09-20T19:12:18.536991+0000 mgr.a (mgr.14152) 328 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:20.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:19 smithi137 bash[25001]: cluster 2024-09-20T19:12:18.536991+0000 mgr.a (mgr.14152) 328 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:20.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:19 smithi137 bash[25001]: audit 2024-09-20T19:12:19.575569+0000 mon.a (mon.0) 610 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:12:20.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:19 smithi137 bash[25001]: audit 2024-09-20T19:12:19.575569+0000 mon.a (mon.0) 610 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:12:20.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:19 smithi137 bash[25001]: audit 2024-09-20T19:12:19.576970+0000 mon.a (mon.0) 611 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:12:20.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:19 smithi137 bash[25001]: audit 2024-09-20T19:12:19.576970+0000 mon.a (mon.0) 611 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:12:20.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:19 smithi137 bash[25001]: audit 2024-09-20T19:12:19.585955+0000 mon.a (mon.0) 612 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:20.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:19 smithi137 bash[25001]: audit 2024-09-20T19:12:19.585955+0000 mon.a (mon.0) 612 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:22.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:21 smithi018 bash[22763]: cluster 2024-09-20T19:12:20.537652+0000 mgr.a (mgr.14152) 329 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:22.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:21 smithi018 bash[22763]: cluster 2024-09-20T19:12:20.537652+0000 mgr.a (mgr.14152) 329 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:22.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:21 smithi082 bash[24745]: cluster 2024-09-20T19:12:20.537652+0000 mgr.a (mgr.14152) 329 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:22.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:21 smithi082 bash[24745]: cluster 2024-09-20T19:12:20.537652+0000 mgr.a (mgr.14152) 329 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:22.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:21 smithi137 bash[25001]: cluster 2024-09-20T19:12:20.537652+0000 mgr.a (mgr.14152) 329 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:22.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:21 smithi137 bash[25001]: cluster 2024-09-20T19:12:20.537652+0000 mgr.a (mgr.14152) 329 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:24.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:23 smithi018 bash[22763]: cluster 2024-09-20T19:12:22.538264+0000 mgr.a (mgr.14152) 330 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:24.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:23 smithi018 bash[22763]: cluster 2024-09-20T19:12:22.538264+0000 mgr.a (mgr.14152) 330 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:24.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:23 smithi082 bash[24745]: cluster 2024-09-20T19:12:22.538264+0000 mgr.a (mgr.14152) 330 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:24.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:23 smithi082 bash[24745]: cluster 2024-09-20T19:12:22.538264+0000 mgr.a (mgr.14152) 330 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:24.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:23 smithi137 bash[25001]: cluster 2024-09-20T19:12:22.538264+0000 mgr.a (mgr.14152) 330 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:24.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:23 smithi137 bash[25001]: cluster 2024-09-20T19:12:22.538264+0000 mgr.a (mgr.14152) 330 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:24.588 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:12:26.113 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:12:26.114 INFO:teuthology.orchestra.run.smithi018.stderr:dumped all 2024-09-20T19:12:26.127 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:25 smithi018 bash[22763]: cluster 2024-09-20T19:12:24.538799+0000 mgr.a (mgr.14152) 331 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:26.127 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:25 smithi018 bash[22763]: cluster 2024-09-20T19:12:24.538799+0000 mgr.a (mgr.14152) 331 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:26.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:25 smithi082 bash[24745]: cluster 2024-09-20T19:12:24.538799+0000 mgr.a (mgr.14152) 331 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:26.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:25 smithi082 bash[24745]: cluster 2024-09-20T19:12:24.538799+0000 mgr.a (mgr.14152) 331 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:26.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:25 smithi137 bash[25001]: cluster 2024-09-20T19:12:24.538799+0000 mgr.a (mgr.14152) 331 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:26.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:25 smithi137 bash[25001]: cluster 2024-09-20T19:12:24.538799+0000 mgr.a (mgr.14152) 331 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:26.838 INFO:teuthology.orchestra.run.smithi018.stdout:{"pg_ready":true,"pg_map":{"version":294,"stamp":"2024-09-20T19:12:24.538542+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":92,"ondisk_log_size":92,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":562470912,"kb_used":186900,"kb_used_data":3900,"kb_used_omap":9,"kb_used_meta":182838,"kb_avail":562284012,"statfs":{"total":575970213888,"available":575778828288,"internally_reserved":0,"allocated":3993600,"data_stored":2615856,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9567,"internal_metadata":187226785},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.003289"},"pg_stats":[{"pgid":"1.0","version":"22'92","reported_seq":65,"reported_epoch":41,"state":"active+clean","last_fresh":"2024-09-20T19:11:14.531206+0000","last_change":"2024-09-20T19:11:14.530363+0000","last_active":"2024-09-20T19:11:14.531206+0000","last_peered":"2024-09-20T19:11:14.531206+0000","last_clean":"2024-09-20T19:11:14.531206+0000","last_became_active":"2024-09-20T19:11:14.519832+0000","last_became_peered":"2024-09-20T19:11:14.519832+0000","last_unstale":"2024-09-20T19:11:14.531206+0000","last_undegraded":"2024-09-20T19:11:14.531206+0000","last_fullsized":"2024-09-20T19:11:14.531206+0000","mapping_epoch":40,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":41,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-20T19:08:23.470212+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-20T19:08:23.470212+0000","last_clean_scrub_stamp":"2024-09-20T19:08:23.470212+0000","objects_scrubbed":0,"log_size":92,"log_dups_size":0,"ondisk_log_size":92,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-09-21T20:05:41.492624+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":3563520,"data_stored":3542208,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":92,"ondisk_log_size":92,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":39,"seq":167503724562,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32136,"kb_used_data":940,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713016,"statfs":{"total":95995035648,"available":95962128384,"internally_reserved":0,"allocated":962560,"data_stored":731160,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":31914438},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":33,"seq":141733920798,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31548,"kb_used_data":360,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713604,"statfs":{"total":95995035648,"available":95962730496,"internally_reserved":0,"allocated":368640,"data_stored":140792,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":27,"seq":115964117032,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27968,"kb_used_data":940,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717184,"statfs":{"total":95995035648,"available":95966396416,"internally_reserved":0,"allocated":962560,"data_stored":731160,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":18,"seq":77309411380,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27976,"kb_used_data":940,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717176,"statfs":{"total":95995035648,"available":95966388224,"internally_reserved":0,"allocated":962560,"data_stored":731160,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":13,"seq":55834574911,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":35716,"kb_used_data":360,"kb_used_omap":1,"kb_used_meta":35326,"kb_avail":93709436,"statfs":{"total":95995035648,"available":95958462464,"internally_reserved":0,"allocated":368640,"data_stored":140792,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":36174277},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738442,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31556,"kb_used_data":360,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713596,"statfs":{"total":95995035648,"available":95962722304,"internally_reserved":0,"allocated":368640,"data_stored":140792,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":5,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-20T19:12:26.839 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph pg dump --format=json 2024-09-20T19:12:27.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:26 smithi018 bash[22763]: audit 2024-09-20T19:12:26.111929+0000 mgr.a (mgr.14152) 332 : audit [DBG] from='client.14439 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:12:27.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:26 smithi018 bash[22763]: audit 2024-09-20T19:12:26.111929+0000 mgr.a (mgr.14152) 332 : audit [DBG] from='client.14439 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:12:27.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:26 smithi082 bash[24745]: audit 2024-09-20T19:12:26.111929+0000 mgr.a (mgr.14152) 332 : audit [DBG] from='client.14439 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:12:27.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:26 smithi082 bash[24745]: audit 2024-09-20T19:12:26.111929+0000 mgr.a (mgr.14152) 332 : audit [DBG] from='client.14439 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:12:27.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:26 smithi137 bash[25001]: audit 2024-09-20T19:12:26.111929+0000 mgr.a (mgr.14152) 332 : audit [DBG] from='client.14439 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:12:27.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:26 smithi137 bash[25001]: audit 2024-09-20T19:12:26.111929+0000 mgr.a (mgr.14152) 332 : audit [DBG] from='client.14439 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:12:28.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:27 smithi018 bash[22763]: cluster 2024-09-20T19:12:26.539393+0000 mgr.a (mgr.14152) 333 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:28.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:27 smithi018 bash[22763]: cluster 2024-09-20T19:12:26.539393+0000 mgr.a (mgr.14152) 333 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:28.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:27 smithi082 bash[24745]: cluster 2024-09-20T19:12:26.539393+0000 mgr.a (mgr.14152) 333 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:28.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:27 smithi082 bash[24745]: cluster 2024-09-20T19:12:26.539393+0000 mgr.a (mgr.14152) 333 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:28.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:27 smithi137 bash[25001]: cluster 2024-09-20T19:12:26.539393+0000 mgr.a (mgr.14152) 333 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:28.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:27 smithi137 bash[25001]: cluster 2024-09-20T19:12:26.539393+0000 mgr.a (mgr.14152) 333 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:30.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:29 smithi018 bash[22763]: cluster 2024-09-20T19:12:28.539953+0000 mgr.a (mgr.14152) 334 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:30.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:29 smithi018 bash[22763]: cluster 2024-09-20T19:12:28.539953+0000 mgr.a (mgr.14152) 334 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:30.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:29 smithi082 bash[24745]: cluster 2024-09-20T19:12:28.539953+0000 mgr.a (mgr.14152) 334 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:30.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:29 smithi082 bash[24745]: cluster 2024-09-20T19:12:28.539953+0000 mgr.a (mgr.14152) 334 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:30.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:29 smithi137 bash[25001]: cluster 2024-09-20T19:12:28.539953+0000 mgr.a (mgr.14152) 334 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:30.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:29 smithi137 bash[25001]: cluster 2024-09-20T19:12:28.539953+0000 mgr.a (mgr.14152) 334 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:31.595 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:12:32.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:31 smithi018 bash[22763]: cluster 2024-09-20T19:12:30.540511+0000 mgr.a (mgr.14152) 335 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:32.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:31 smithi018 bash[22763]: cluster 2024-09-20T19:12:30.540511+0000 mgr.a (mgr.14152) 335 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:32.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:31 smithi082 bash[24745]: cluster 2024-09-20T19:12:30.540511+0000 mgr.a (mgr.14152) 335 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:32.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:31 smithi082 bash[24745]: cluster 2024-09-20T19:12:30.540511+0000 mgr.a (mgr.14152) 335 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:32.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:31 smithi137 bash[25001]: cluster 2024-09-20T19:12:30.540511+0000 mgr.a (mgr.14152) 335 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:32.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:31 smithi137 bash[25001]: cluster 2024-09-20T19:12:30.540511+0000 mgr.a (mgr.14152) 335 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:33.143 INFO:teuthology.orchestra.run.smithi018.stderr:dumped all 2024-09-20T19:12:33.144 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:12:33.880 INFO:teuthology.orchestra.run.smithi018.stdout:{"pg_ready":true,"pg_map":{"version":298,"stamp":"2024-09-20T19:12:32.540761+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":92,"ondisk_log_size":92,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":562470912,"kb_used":186900,"kb_used_data":3900,"kb_used_omap":9,"kb_used_meta":182838,"kb_avail":562284012,"statfs":{"total":575970213888,"available":575778828288,"internally_reserved":0,"allocated":3993600,"data_stored":2615856,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9567,"internal_metadata":187226785},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.003459"},"pg_stats":[{"pgid":"1.0","version":"22'92","reported_seq":65,"reported_epoch":41,"state":"active+clean","last_fresh":"2024-09-20T19:11:14.531206+0000","last_change":"2024-09-20T19:11:14.530363+0000","last_active":"2024-09-20T19:11:14.531206+0000","last_peered":"2024-09-20T19:11:14.531206+0000","last_clean":"2024-09-20T19:11:14.531206+0000","last_became_active":"2024-09-20T19:11:14.519832+0000","last_became_peered":"2024-09-20T19:11:14.519832+0000","last_unstale":"2024-09-20T19:11:14.531206+0000","last_undegraded":"2024-09-20T19:11:14.531206+0000","last_fullsized":"2024-09-20T19:11:14.531206+0000","mapping_epoch":40,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":41,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-20T19:08:23.470212+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-20T19:08:23.470212+0000","last_clean_scrub_stamp":"2024-09-20T19:08:23.470212+0000","objects_scrubbed":0,"log_size":92,"log_dups_size":0,"ondisk_log_size":92,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-09-21T20:05:41.492624+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":3563520,"data_stored":3542208,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":92,"ondisk_log_size":92,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":39,"seq":167503724563,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32136,"kb_used_data":940,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713016,"statfs":{"total":95995035648,"available":95962128384,"internally_reserved":0,"allocated":962560,"data_stored":731160,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":31914438},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":33,"seq":141733920799,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31548,"kb_used_data":360,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713604,"statfs":{"total":95995035648,"available":95962730496,"internally_reserved":0,"allocated":368640,"data_stored":140792,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":27,"seq":115964117034,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27968,"kb_used_data":940,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717184,"statfs":{"total":95995035648,"available":95966396416,"internally_reserved":0,"allocated":962560,"data_stored":731160,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":18,"seq":77309411382,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27976,"kb_used_data":940,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717176,"statfs":{"total":95995035648,"available":95966388224,"internally_reserved":0,"allocated":962560,"data_stored":731160,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":13,"seq":55834574912,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":35716,"kb_used_data":360,"kb_used_omap":1,"kb_used_meta":35326,"kb_avail":93709436,"statfs":{"total":95995035648,"available":95958462464,"internally_reserved":0,"allocated":368640,"data_stored":140792,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":36174277},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738444,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31556,"kb_used_data":360,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713596,"statfs":{"total":95995035648,"available":95962722304,"internally_reserved":0,"allocated":368640,"data_stored":140792,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":5,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-20T19:12:33.881 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-20T19:12:33.881 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-20T19:12:33.881 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-20T19:12:33.881 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- ceph health --format=json 2024-09-20T19:12:34.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:33 smithi018 bash[22763]: cluster 2024-09-20T19:12:32.541035+0000 mgr.a (mgr.14152) 336 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:34.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:33 smithi018 bash[22763]: cluster 2024-09-20T19:12:32.541035+0000 mgr.a (mgr.14152) 336 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:34.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:33 smithi018 bash[22763]: audit 2024-09-20T19:12:33.142956+0000 mgr.a (mgr.14152) 337 : audit [DBG] from='client.14445 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:12:34.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:33 smithi018 bash[22763]: audit 2024-09-20T19:12:33.142956+0000 mgr.a (mgr.14152) 337 : audit [DBG] from='client.14445 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:12:34.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:33 smithi082 bash[24745]: cluster 2024-09-20T19:12:32.541035+0000 mgr.a (mgr.14152) 336 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:34.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:33 smithi082 bash[24745]: cluster 2024-09-20T19:12:32.541035+0000 mgr.a (mgr.14152) 336 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:34.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:33 smithi082 bash[24745]: audit 2024-09-20T19:12:33.142956+0000 mgr.a (mgr.14152) 337 : audit [DBG] from='client.14445 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:12:34.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:33 smithi082 bash[24745]: audit 2024-09-20T19:12:33.142956+0000 mgr.a (mgr.14152) 337 : audit [DBG] from='client.14445 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:12:34.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:33 smithi137 bash[25001]: cluster 2024-09-20T19:12:32.541035+0000 mgr.a (mgr.14152) 336 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:34.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:33 smithi137 bash[25001]: cluster 2024-09-20T19:12:32.541035+0000 mgr.a (mgr.14152) 336 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:34.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:33 smithi137 bash[25001]: audit 2024-09-20T19:12:33.142956+0000 mgr.a (mgr.14152) 337 : audit [DBG] from='client.14445 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:12:34.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:33 smithi137 bash[25001]: audit 2024-09-20T19:12:33.142956+0000 mgr.a (mgr.14152) 337 : audit [DBG] from='client.14445 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:12:36.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:35 smithi018 bash[22763]: cluster 2024-09-20T19:12:34.541612+0000 mgr.a (mgr.14152) 338 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:36.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:35 smithi018 bash[22763]: cluster 2024-09-20T19:12:34.541612+0000 mgr.a (mgr.14152) 338 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:36.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:35 smithi082 bash[24745]: cluster 2024-09-20T19:12:34.541612+0000 mgr.a (mgr.14152) 338 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:36.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:35 smithi082 bash[24745]: cluster 2024-09-20T19:12:34.541612+0000 mgr.a (mgr.14152) 338 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:36.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:35 smithi137 bash[25001]: cluster 2024-09-20T19:12:34.541612+0000 mgr.a (mgr.14152) 338 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:36.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:35 smithi137 bash[25001]: cluster 2024-09-20T19:12:34.541612+0000 mgr.a (mgr.14152) 338 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:38.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:37 smithi018 bash[22763]: cluster 2024-09-20T19:12:36.542159+0000 mgr.a (mgr.14152) 339 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:38.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:37 smithi018 bash[22763]: cluster 2024-09-20T19:12:36.542159+0000 mgr.a (mgr.14152) 339 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:38.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:37 smithi082 bash[24745]: cluster 2024-09-20T19:12:36.542159+0000 mgr.a (mgr.14152) 339 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:38.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:37 smithi082 bash[24745]: cluster 2024-09-20T19:12:36.542159+0000 mgr.a (mgr.14152) 339 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:38.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:37 smithi137 bash[25001]: cluster 2024-09-20T19:12:36.542159+0000 mgr.a (mgr.14152) 339 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:38.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:37 smithi137 bash[25001]: cluster 2024-09-20T19:12:36.542159+0000 mgr.a (mgr.14152) 339 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:38.639 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:12:40.141 INFO:teuthology.orchestra.run.smithi018.stdout: 2024-09-20T19:12:40.141 INFO:teuthology.orchestra.run.smithi018.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-20T19:12:40.154 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:39 smithi018 bash[22763]: cluster 2024-09-20T19:12:38.542698+0000 mgr.a (mgr.14152) 340 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:40.154 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:39 smithi018 bash[22763]: cluster 2024-09-20T19:12:38.542698+0000 mgr.a (mgr.14152) 340 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:40.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:39 smithi082 bash[24745]: cluster 2024-09-20T19:12:38.542698+0000 mgr.a (mgr.14152) 340 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:40.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:39 smithi082 bash[24745]: cluster 2024-09-20T19:12:38.542698+0000 mgr.a (mgr.14152) 340 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:40.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:39 smithi137 bash[25001]: cluster 2024-09-20T19:12:38.542698+0000 mgr.a (mgr.14152) 340 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:40.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:39 smithi137 bash[25001]: cluster 2024-09-20T19:12:38.542698+0000 mgr.a (mgr.14152) 340 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:40.854 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-20T19:12:40.855 INFO:tasks.cephadm:Setup complete, yielding 2024-09-20T19:12:40.855 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-20T19:12:40.864 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi018.front.sepia.ceph.com 2024-09-20T19:12:40.864 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:88deadb8082f4a33832e228ccefc59cedba158a5 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 -- bash -c 'set -ex 2024-09-20T19:12:40.864 DEBUG:teuthology.orchestra.run.smithi018:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-09-20T19:12:40.865 DEBUG:teuthology.orchestra.run.smithi018:> for host in $HOSTNAMES; do 2024-09-20T19:12:40.865 DEBUG:teuthology.orchestra.run.smithi018:> # find the hostname for "host.c" which will have no mgr 2024-09-20T19:12:40.865 DEBUG:teuthology.orchestra.run.smithi018:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-09-20T19:12:40.865 DEBUG:teuthology.orchestra.run.smithi018:> if [ "$HAS_MGRS" == "false" ]; then 2024-09-20T19:12:40.865 DEBUG:teuthology.orchestra.run.smithi018:> HOST_C="${host}" 2024-09-20T19:12:40.865 DEBUG:teuthology.orchestra.run.smithi018:> fi 2024-09-20T19:12:40.865 DEBUG:teuthology.orchestra.run.smithi018:> done 2024-09-20T19:12:40.865 DEBUG:teuthology.orchestra.run.smithi018:> # One last thing to worry about before draining the host 2024-09-20T19:12:40.865 DEBUG:teuthology.orchestra.run.smithi018:> # is that the teuthology test tends to put the explicit 2024-09-20T19:12:40.865 DEBUG:teuthology.orchestra.run.smithi018:> # hostnames in the placement for the mon service. 2024-09-20T19:12:40.865 DEBUG:teuthology.orchestra.run.smithi018:> # We want to make sure we can drain without providing 2024-09-20T19:12:40.865 DEBUG:teuthology.orchestra.run.smithi018:> # --force and there is a check for the host being removed 2024-09-20T19:12:40.865 DEBUG:teuthology.orchestra.run.smithi018:> # being listed explicitly in the placements. Therefore, 2024-09-20T19:12:40.865 DEBUG:teuthology.orchestra.run.smithi018:> # we should remove it from the mon placement. 2024-09-20T19:12:40.865 DEBUG:teuthology.orchestra.run.smithi018:> ceph orch ls mon --export > mon.yaml 2024-09-20T19:12:40.865 DEBUG:teuthology.orchestra.run.smithi018:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2024-09-20T19:12:40.866 DEBUG:teuthology.orchestra.run.smithi018:> ceph orch apply -i mon_adjusted.yaml 2024-09-20T19:12:40.866 DEBUG:teuthology.orchestra.run.smithi018:> # now drain that host 2024-09-20T19:12:40.866 DEBUG:teuthology.orchestra.run.smithi018:> ceph orch host drain $HOST_C --zap-osd-devices 2024-09-20T19:12:40.866 DEBUG:teuthology.orchestra.run.smithi018:> # wait for drain to complete 2024-09-20T19:12:40.866 DEBUG:teuthology.orchestra.run.smithi018:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-20T19:12:40.866 DEBUG:teuthology.orchestra.run.smithi018:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-09-20T19:12:40.866 DEBUG:teuthology.orchestra.run.smithi018:> sleep 15 2024-09-20T19:12:40.866 DEBUG:teuthology.orchestra.run.smithi018:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-20T19:12:40.866 DEBUG:teuthology.orchestra.run.smithi018:> done 2024-09-20T19:12:40.866 DEBUG:teuthology.orchestra.run.smithi018:> # we want to check the ability to remove the host from 2024-09-20T19:12:40.866 DEBUG:teuthology.orchestra.run.smithi018:> # the CRUSH map, so we should first verify the host is in 2024-09-20T19:12:40.866 DEBUG:teuthology.orchestra.run.smithi018:> # the CRUSH map. 2024-09-20T19:12:40.866 DEBUG:teuthology.orchestra.run.smithi018:> ceph osd getcrushmap -o compiled-crushmap 2024-09-20T19:12:40.866 DEBUG:teuthology.orchestra.run.smithi018:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-20T19:12:40.866 DEBUG:teuthology.orchestra.run.smithi018:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-20T19:12:40.866 DEBUG:teuthology.orchestra.run.smithi018:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-20T19:12:40.867 DEBUG:teuthology.orchestra.run.smithi018:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-09-20T19:12:40.867 DEBUG:teuthology.orchestra.run.smithi018:> exit 1 2024-09-20T19:12:40.867 DEBUG:teuthology.orchestra.run.smithi018:> fi 2024-09-20T19:12:40.867 DEBUG:teuthology.orchestra.run.smithi018:> # If the drain was successful, we should be able to remove the 2024-09-20T19:12:40.867 DEBUG:teuthology.orchestra.run.smithi018:> # host without force with no issues. If there are still daemons 2024-09-20T19:12:40.867 DEBUG:teuthology.orchestra.run.smithi018:> # we will get a response telling us to drain the host and a 2024-09-20T19:12:40.867 DEBUG:teuthology.orchestra.run.smithi018:> # non-zero return code 2024-09-20T19:12:40.867 DEBUG:teuthology.orchestra.run.smithi018:> ceph orch host rm $HOST_C --rm-crush-entry 2024-09-20T19:12:40.867 DEBUG:teuthology.orchestra.run.smithi018:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-09-20T19:12:40.867 DEBUG:teuthology.orchestra.run.smithi018:> sleep 30 2024-09-20T19:12:40.867 DEBUG:teuthology.orchestra.run.smithi018:> ceph osd getcrushmap -o compiled-crushmap 2024-09-20T19:12:40.867 DEBUG:teuthology.orchestra.run.smithi018:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-20T19:12:40.867 DEBUG:teuthology.orchestra.run.smithi018:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-20T19:12:40.867 DEBUG:teuthology.orchestra.run.smithi018:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-20T19:12:40.868 DEBUG:teuthology.orchestra.run.smithi018:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-09-20T19:12:40.868 DEBUG:teuthology.orchestra.run.smithi018:> exit 1 2024-09-20T19:12:40.868 DEBUG:teuthology.orchestra.run.smithi018:> fi 2024-09-20T19:12:40.868 DEBUG:teuthology.orchestra.run.smithi018:> ' 2024-09-20T19:12:41.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:40 smithi018 bash[22763]: audit 2024-09-20T19:12:40.140791+0000 mon.a (mon.0) 613 : audit [DBG] from='client.? 172.21.15.18:0/2832408213' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-20T19:12:41.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:40 smithi018 bash[22763]: audit 2024-09-20T19:12:40.140791+0000 mon.a (mon.0) 613 : audit [DBG] from='client.? 172.21.15.18:0/2832408213' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-20T19:12:41.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:40 smithi082 bash[24745]: audit 2024-09-20T19:12:40.140791+0000 mon.a (mon.0) 613 : audit [DBG] from='client.? 172.21.15.18:0/2832408213' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-20T19:12:41.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:40 smithi082 bash[24745]: audit 2024-09-20T19:12:40.140791+0000 mon.a (mon.0) 613 : audit [DBG] from='client.? 172.21.15.18:0/2832408213' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-20T19:12:41.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:40 smithi137 bash[25001]: audit 2024-09-20T19:12:40.140791+0000 mon.a (mon.0) 613 : audit [DBG] from='client.? 172.21.15.18:0/2832408213' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-20T19:12:41.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:40 smithi137 bash[25001]: audit 2024-09-20T19:12:40.140791+0000 mon.a (mon.0) 613 : audit [DBG] from='client.? 172.21.15.18:0/2832408213' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-20T19:12:42.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:41 smithi082 bash[24745]: cluster 2024-09-20T19:12:40.543260+0000 mgr.a (mgr.14152) 341 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:42.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:41 smithi082 bash[24745]: cluster 2024-09-20T19:12:40.543260+0000 mgr.a (mgr.14152) 341 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:42.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:41 smithi137 bash[25001]: cluster 2024-09-20T19:12:40.543260+0000 mgr.a (mgr.14152) 341 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:42.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:41 smithi137 bash[25001]: cluster 2024-09-20T19:12:40.543260+0000 mgr.a (mgr.14152) 341 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:42.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:41 smithi018 bash[22763]: cluster 2024-09-20T19:12:40.543260+0000 mgr.a (mgr.14152) 341 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:42.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:41 smithi018 bash[22763]: cluster 2024-09-20T19:12:40.543260+0000 mgr.a (mgr.14152) 341 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:44.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:43 smithi082 bash[24745]: cluster 2024-09-20T19:12:42.543812+0000 mgr.a (mgr.14152) 342 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:44.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:43 smithi082 bash[24745]: cluster 2024-09-20T19:12:42.543812+0000 mgr.a (mgr.14152) 342 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:44.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:43 smithi137 bash[25001]: cluster 2024-09-20T19:12:42.543812+0000 mgr.a (mgr.14152) 342 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:44.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:43 smithi137 bash[25001]: cluster 2024-09-20T19:12:42.543812+0000 mgr.a (mgr.14152) 342 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:44.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:43 smithi018 bash[22763]: cluster 2024-09-20T19:12:42.543812+0000 mgr.a (mgr.14152) 342 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:44.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:43 smithi018 bash[22763]: cluster 2024-09-20T19:12:42.543812+0000 mgr.a (mgr.14152) 342 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:45.621 INFO:teuthology.orchestra.run.smithi018.stderr:Inferring config /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/mon.a/config 2024-09-20T19:12:46.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:45 smithi018 bash[22763]: cluster 2024-09-20T19:12:44.544363+0000 mgr.a (mgr.14152) 343 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:46.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:45 smithi018 bash[22763]: cluster 2024-09-20T19:12:44.544363+0000 mgr.a (mgr.14152) 343 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:46.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:45 smithi082 bash[24745]: cluster 2024-09-20T19:12:44.544363+0000 mgr.a (mgr.14152) 343 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:46.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:45 smithi082 bash[24745]: cluster 2024-09-20T19:12:44.544363+0000 mgr.a (mgr.14152) 343 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:46.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:45 smithi137 bash[25001]: cluster 2024-09-20T19:12:44.544363+0000 mgr.a (mgr.14152) 343 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:46.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:45 smithi137 bash[25001]: cluster 2024-09-20T19:12:44.544363+0000 mgr.a (mgr.14152) 343 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:46.798 INFO:teuthology.orchestra.run.smithi018.stderr:++ ceph orch host ls --format json 2024-09-20T19:12:46.798 INFO:teuthology.orchestra.run.smithi018.stderr:++ jq -r '.[] | .hostname' 2024-09-20T19:12:47.118 INFO:teuthology.orchestra.run.smithi018.stderr:+ HOSTNAMES='smithi018 2024-09-20T19:12:47.118 INFO:teuthology.orchestra.run.smithi018.stderr:smithi082 2024-09-20T19:12:47.118 INFO:teuthology.orchestra.run.smithi018.stderr:smithi137' 2024-09-20T19:12:47.119 INFO:teuthology.orchestra.run.smithi018.stderr:+ for host in $HOSTNAMES 2024-09-20T19:12:47.119 INFO:teuthology.orchestra.run.smithi018.stderr:++ ceph orch ps --hostname smithi018 --format json 2024-09-20T19:12:47.119 INFO:teuthology.orchestra.run.smithi018.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-20T19:12:47.436 INFO:teuthology.orchestra.run.smithi018.stderr:+ HAS_MGRS=true 2024-09-20T19:12:47.436 INFO:teuthology.orchestra.run.smithi018.stderr:+ '[' true == false ']' 2024-09-20T19:12:47.436 INFO:teuthology.orchestra.run.smithi018.stderr:+ for host in $HOSTNAMES 2024-09-20T19:12:47.437 INFO:teuthology.orchestra.run.smithi018.stderr:++ ceph orch ps --hostname smithi082 --format json 2024-09-20T19:12:47.437 INFO:teuthology.orchestra.run.smithi018.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-20T19:12:47.765 INFO:teuthology.orchestra.run.smithi018.stderr:+ HAS_MGRS=true 2024-09-20T19:12:47.765 INFO:teuthology.orchestra.run.smithi018.stderr:+ '[' true == false ']' 2024-09-20T19:12:47.765 INFO:teuthology.orchestra.run.smithi018.stderr:+ for host in $HOSTNAMES 2024-09-20T19:12:47.766 INFO:teuthology.orchestra.run.smithi018.stderr:++ ceph orch ps --hostname smithi137 --format json 2024-09-20T19:12:47.766 INFO:teuthology.orchestra.run.smithi018.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-20T19:12:48.089 INFO:teuthology.orchestra.run.smithi018.stderr:+ HAS_MGRS=false 2024-09-20T19:12:48.089 INFO:teuthology.orchestra.run.smithi018.stderr:+ '[' false == false ']' 2024-09-20T19:12:48.089 INFO:teuthology.orchestra.run.smithi018.stderr:+ HOST_C=smithi137 2024-09-20T19:12:48.089 INFO:teuthology.orchestra.run.smithi018.stderr:+ ceph orch ls mon --export 2024-09-20T19:12:48.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:47 smithi082 bash[24745]: cluster 2024-09-20T19:12:46.544971+0000 mgr.a (mgr.14152) 344 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:48.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:47 smithi082 bash[24745]: cluster 2024-09-20T19:12:46.544971+0000 mgr.a (mgr.14152) 344 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:48.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:47 smithi082 bash[24745]: audit 2024-09-20T19:12:47.102892+0000 mgr.a (mgr.14152) 345 : audit [DBG] from='client.14457 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:12:48.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:47 smithi082 bash[24745]: audit 2024-09-20T19:12:47.102892+0000 mgr.a (mgr.14152) 345 : audit [DBG] from='client.14457 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:12:48.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:47 smithi137 bash[25001]: cluster 2024-09-20T19:12:46.544971+0000 mgr.a (mgr.14152) 344 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:48.296 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:47 smithi137 bash[25001]: cluster 2024-09-20T19:12:46.544971+0000 mgr.a (mgr.14152) 344 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:48.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:47 smithi137 bash[25001]: audit 2024-09-20T19:12:47.102892+0000 mgr.a (mgr.14152) 345 : audit [DBG] from='client.14457 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:12:48.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:47 smithi137 bash[25001]: audit 2024-09-20T19:12:47.102892+0000 mgr.a (mgr.14152) 345 : audit [DBG] from='client.14457 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:12:48.409 INFO:teuthology.orchestra.run.smithi018.stderr:+ sed /smithi137/d mon.yaml 2024-09-20T19:12:48.410 INFO:teuthology.orchestra.run.smithi018.stderr:+ ceph orch apply -i mon_adjusted.yaml 2024-09-20T19:12:48.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:47 smithi018 bash[22763]: cluster 2024-09-20T19:12:46.544971+0000 mgr.a (mgr.14152) 344 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:48.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:47 smithi018 bash[22763]: cluster 2024-09-20T19:12:46.544971+0000 mgr.a (mgr.14152) 344 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:48.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:47 smithi018 bash[22763]: audit 2024-09-20T19:12:47.102892+0000 mgr.a (mgr.14152) 345 : audit [DBG] from='client.14457 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:12:48.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:47 smithi018 bash[22763]: audit 2024-09-20T19:12:47.102892+0000 mgr.a (mgr.14152) 345 : audit [DBG] from='client.14457 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-20T19:12:48.708 INFO:teuthology.orchestra.run.smithi018.stdout:Scheduled mon update... 2024-09-20T19:12:48.720 INFO:teuthology.orchestra.run.smithi018.stderr:+ ceph orch host drain smithi137 --zap-osd-devices 2024-09-20T19:12:49.796 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:49 smithi137 systemd[1]: ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mon.c.service: Deactivated successfully. 2024-09-20T19:12:51.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: audit 2024-09-20T19:12:48.388398+0000 mgr.a (mgr.14152) 349 : audit [DBG] from='client.14481 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:12:51.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: audit 2024-09-20T19:12:48.388398+0000 mgr.a (mgr.14152) 349 : audit [DBG] from='client.14481 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:12:51.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:48.545346+0000 mgr.a (mgr.14152) 350 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:51.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:48.545346+0000 mgr.a (mgr.14152) 350 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:51.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: audit 2024-09-20T19:12:48.701191+0000 mgr.a (mgr.14152) 351 : audit [DBG] from='client.14487 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:12:51.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: audit 2024-09-20T19:12:48.701191+0000 mgr.a (mgr.14152) 351 : audit [DBG] from='client.14487 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:12:51.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cephadm 2024-09-20T19:12:48.703447+0000 mgr.a (mgr.14152) 352 : cephadm [INF] Saving service mon spec with placement smithi018:172.21.15.18=a;smithi082:172.21.15.82=b;count:3 2024-09-20T19:12:51.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cephadm 2024-09-20T19:12:48.703447+0000 mgr.a (mgr.14152) 352 : cephadm [INF] Saving service mon spec with placement smithi018:172.21.15.18=a;smithi082:172.21.15.82=b;count:3 2024-09-20T19:12:51.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cephadm 2024-09-20T19:12:48.723406+0000 mgr.a (mgr.14152) 353 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-20T19:12:51.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cephadm 2024-09-20T19:12:48.723406+0000 mgr.a (mgr.14152) 353 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-20T19:12:51.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cephadm 2024-09-20T19:12:48.723493+0000 mgr.a (mgr.14152) 354 : cephadm [INF] Removing monitor c from monmap... 2024-09-20T19:12:51.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cephadm 2024-09-20T19:12:48.723493+0000 mgr.a (mgr.14152) 354 : cephadm [INF] Removing monitor c from monmap... 2024-09-20T19:12:51.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: audit 2024-09-20T19:12:48.725451+0000 mon.a (mon.0) 622 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-09-20T19:12:51.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: audit 2024-09-20T19:12:48.725451+0000 mon.a (mon.0) 622 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-09-20T19:12:51.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: audit 2024-09-20T19:12:48.727967+0000 mon.a (mon.0) 623 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:12:51.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: audit 2024-09-20T19:12:48.727967+0000 mon.a (mon.0) 623 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:12:51.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: audit 2024-09-20T19:12:48.728066+0000 mon.a (mon.0) 624 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:12:51.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: audit 2024-09-20T19:12:48.728066+0000 mon.a (mon.0) 624 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:12:51.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:48.742948+0000 mon.b (mon.1) 17 : cluster [INF] mon.b calling monitor election 2024-09-20T19:12:51.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:48.742948+0000 mon.b (mon.1) 17 : cluster [INF] mon.b calling monitor election 2024-09-20T19:12:51.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.728842+0000 mon.a (mon.0) 625 : cluster [INF] mon.a calling monitor election 2024-09-20T19:12:51.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.728842+0000 mon.a (mon.0) 625 : cluster [INF] mon.a calling monitor election 2024-09-20T19:12:51.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.750914+0000 mon.a (mon.0) 626 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-20T19:12:51.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.750914+0000 mon.a (mon.0) 626 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-20T19:12:51.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.757756+0000 mon.a (mon.0) 627 : cluster [DBG] monmap epoch 4 2024-09-20T19:12:51.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.757756+0000 mon.a (mon.0) 627 : cluster [DBG] monmap epoch 4 2024-09-20T19:12:51.173 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.757784+0000 mon.a (mon.0) 628 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:12:51.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.757784+0000 mon.a (mon.0) 628 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:12:51.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.757803+0000 mon.a (mon.0) 629 : cluster [DBG] last_changed 2024-09-20T19:12:48.723882+0000 2024-09-20T19:12:51.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.757803+0000 mon.a (mon.0) 629 : cluster [DBG] last_changed 2024-09-20T19:12:48.723882+0000 2024-09-20T19:12:51.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.757819+0000 mon.a (mon.0) 630 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:12:51.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.757819+0000 mon.a (mon.0) 630 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:12:51.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.757834+0000 mon.a (mon.0) 631 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:12:51.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.757834+0000 mon.a (mon.0) 631 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:12:51.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.757853+0000 mon.a (mon.0) 632 : cluster [DBG] election_strategy: 1 2024-09-20T19:12:51.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.757853+0000 mon.a (mon.0) 632 : cluster [DBG] election_strategy: 1 2024-09-20T19:12:51.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.757874+0000 mon.a (mon.0) 633 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:12:51.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.757874+0000 mon.a (mon.0) 633 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:12:51.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.757895+0000 mon.a (mon.0) 634 : cluster [DBG] 1: [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] mon.b 2024-09-20T19:12:51.174 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.757895+0000 mon.a (mon.0) 634 : cluster [DBG] 1: [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] mon.b 2024-09-20T19:12:51.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.778333+0000 mon.a (mon.0) 635 : cluster [DBG] fsmap 2024-09-20T19:12:51.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.778333+0000 mon.a (mon.0) 635 : cluster [DBG] fsmap 2024-09-20T19:12:51.175 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.778385+0000 mon.a (mon.0) 636 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-20T19:12:51.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.778385+0000 mon.a (mon.0) 636 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-20T19:12:51.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.778994+0000 mon.a (mon.0) 637 : cluster [DBG] mgrmap e15: a(active, since 9m), standbys: b 2024-09-20T19:12:51.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.778994+0000 mon.a (mon.0) 637 : cluster [DBG] mgrmap e15: a(active, since 9m), standbys: b 2024-09-20T19:12:51.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.779234+0000 mon.a (mon.0) 638 : cluster [INF] overall HEALTH_OK 2024-09-20T19:12:51.176 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:50 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.779234+0000 mon.a (mon.0) 638 : cluster [INF] overall HEALTH_OK 2024-09-20T19:12:51.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: audit 2024-09-20T19:12:48.388398+0000 mgr.a (mgr.14152) 349 : audit [DBG] from='client.14481 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:12:51.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: audit 2024-09-20T19:12:48.388398+0000 mgr.a (mgr.14152) 349 : audit [DBG] from='client.14481 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:12:51.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:48.545346+0000 mgr.a (mgr.14152) 350 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:51.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:48.545346+0000 mgr.a (mgr.14152) 350 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:51.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: audit 2024-09-20T19:12:48.701191+0000 mgr.a (mgr.14152) 351 : audit [DBG] from='client.14487 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:12:51.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: audit 2024-09-20T19:12:48.701191+0000 mgr.a (mgr.14152) 351 : audit [DBG] from='client.14487 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:12:51.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cephadm 2024-09-20T19:12:48.703447+0000 mgr.a (mgr.14152) 352 : cephadm [INF] Saving service mon spec with placement smithi018:172.21.15.18=a;smithi082:172.21.15.82=b;count:3 2024-09-20T19:12:51.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cephadm 2024-09-20T19:12:48.703447+0000 mgr.a (mgr.14152) 352 : cephadm [INF] Saving service mon spec with placement smithi018:172.21.15.18=a;smithi082:172.21.15.82=b;count:3 2024-09-20T19:12:51.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cephadm 2024-09-20T19:12:48.723406+0000 mgr.a (mgr.14152) 353 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-20T19:12:51.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cephadm 2024-09-20T19:12:48.723406+0000 mgr.a (mgr.14152) 353 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-20T19:12:51.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cephadm 2024-09-20T19:12:48.723493+0000 mgr.a (mgr.14152) 354 : cephadm [INF] Removing monitor c from monmap... 2024-09-20T19:12:51.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cephadm 2024-09-20T19:12:48.723493+0000 mgr.a (mgr.14152) 354 : cephadm [INF] Removing monitor c from monmap... 2024-09-20T19:12:51.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: audit 2024-09-20T19:12:48.725451+0000 mon.a (mon.0) 622 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-09-20T19:12:51.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: audit 2024-09-20T19:12:48.725451+0000 mon.a (mon.0) 622 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-09-20T19:12:51.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: audit 2024-09-20T19:12:48.727967+0000 mon.a (mon.0) 623 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:12:51.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: audit 2024-09-20T19:12:48.727967+0000 mon.a (mon.0) 623 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-20T19:12:51.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: audit 2024-09-20T19:12:48.728066+0000 mon.a (mon.0) 624 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:12:51.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: audit 2024-09-20T19:12:48.728066+0000 mon.a (mon.0) 624 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-20T19:12:51.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:48.742948+0000 mon.b (mon.1) 17 : cluster [INF] mon.b calling monitor election 2024-09-20T19:12:51.198 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:48.742948+0000 mon.b (mon.1) 17 : cluster [INF] mon.b calling monitor election 2024-09-20T19:12:51.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.728842+0000 mon.a (mon.0) 625 : cluster [INF] mon.a calling monitor election 2024-09-20T19:12:51.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.728842+0000 mon.a (mon.0) 625 : cluster [INF] mon.a calling monitor election 2024-09-20T19:12:51.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.750914+0000 mon.a (mon.0) 626 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-20T19:12:51.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.750914+0000 mon.a (mon.0) 626 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-20T19:12:51.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.757756+0000 mon.a (mon.0) 627 : cluster [DBG] monmap epoch 4 2024-09-20T19:12:51.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.757756+0000 mon.a (mon.0) 627 : cluster [DBG] monmap epoch 4 2024-09-20T19:12:51.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.757784+0000 mon.a (mon.0) 628 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:12:51.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.757784+0000 mon.a (mon.0) 628 : cluster [DBG] fsid 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:12:51.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.757803+0000 mon.a (mon.0) 629 : cluster [DBG] last_changed 2024-09-20T19:12:48.723882+0000 2024-09-20T19:12:51.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.757803+0000 mon.a (mon.0) 629 : cluster [DBG] last_changed 2024-09-20T19:12:48.723882+0000 2024-09-20T19:12:51.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.757819+0000 mon.a (mon.0) 630 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:12:51.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.757819+0000 mon.a (mon.0) 630 : cluster [DBG] created 2024-09-20T19:02:27.869950+0000 2024-09-20T19:12:51.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.757834+0000 mon.a (mon.0) 631 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:12:51.199 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.757834+0000 mon.a (mon.0) 631 : cluster [DBG] min_mon_release 19 (squid) 2024-09-20T19:12:51.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.757853+0000 mon.a (mon.0) 632 : cluster [DBG] election_strategy: 1 2024-09-20T19:12:51.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.757853+0000 mon.a (mon.0) 632 : cluster [DBG] election_strategy: 1 2024-09-20T19:12:51.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.757874+0000 mon.a (mon.0) 633 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:12:51.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.757874+0000 mon.a (mon.0) 633 : cluster [DBG] 0: [v2:172.21.15.18:3300/0,v1:172.21.15.18:6789/0] mon.a 2024-09-20T19:12:51.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.757895+0000 mon.a (mon.0) 634 : cluster [DBG] 1: [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] mon.b 2024-09-20T19:12:51.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.757895+0000 mon.a (mon.0) 634 : cluster [DBG] 1: [v2:172.21.15.82:3300/0,v1:172.21.15.82:6789/0] mon.b 2024-09-20T19:12:51.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.778333+0000 mon.a (mon.0) 635 : cluster [DBG] fsmap 2024-09-20T19:12:51.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.778333+0000 mon.a (mon.0) 635 : cluster [DBG] fsmap 2024-09-20T19:12:51.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.778385+0000 mon.a (mon.0) 636 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-20T19:12:51.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.778385+0000 mon.a (mon.0) 636 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-20T19:12:51.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.778994+0000 mon.a (mon.0) 637 : cluster [DBG] mgrmap e15: a(active, since 9m), standbys: b 2024-09-20T19:12:51.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.778994+0000 mon.a (mon.0) 637 : cluster [DBG] mgrmap e15: a(active, since 9m), standbys: b 2024-09-20T19:12:51.200 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.779234+0000 mon.a (mon.0) 638 : cluster [INF] overall HEALTH_OK 2024-09-20T19:12:51.201 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:50 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.779234+0000 mon.a (mon.0) 638 : cluster [INF] overall HEALTH_OK 2024-09-20T19:12:52.059 INFO:teuthology.orchestra.run.smithi018.stdout:Scheduled to remove the following daemons from host 'smithi137' 2024-09-20T19:12:52.059 INFO:teuthology.orchestra.run.smithi018.stdout:type id 2024-09-20T19:12:52.059 INFO:teuthology.orchestra.run.smithi018.stdout:-------------------- --------------- 2024-09-20T19:12:52.060 INFO:teuthology.orchestra.run.smithi018.stdout:mon c 2024-09-20T19:12:52.060 INFO:teuthology.orchestra.run.smithi018.stdout:osd 4 2024-09-20T19:12:52.060 INFO:teuthology.orchestra.run.smithi018.stdout:osd 5 2024-09-20T19:12:52.074 INFO:teuthology.orchestra.run.smithi018.stderr:++ ceph orch ps --hostname smithi137 2024-09-20T19:12:52.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:51 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.545994+0000 mgr.a (mgr.14152) 355 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:52.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:51 smithi018 bash[22763]: cluster 2024-09-20T19:12:50.545994+0000 mgr.a (mgr.14152) 355 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:52.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:51 smithi018 bash[22763]: cephadm 2024-09-20T19:12:50.781221+0000 mgr.a (mgr.14152) 356 : cephadm [INF] Removing daemon mon.c from smithi137 -- ports [] 2024-09-20T19:12:52.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:51 smithi018 bash[22763]: cephadm 2024-09-20T19:12:50.781221+0000 mgr.a (mgr.14152) 356 : cephadm [INF] Removing daemon mon.c from smithi137 -- ports [] 2024-09-20T19:12:52.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:51 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.545994+0000 mgr.a (mgr.14152) 355 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:52.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:51 smithi082 bash[24745]: cluster 2024-09-20T19:12:50.545994+0000 mgr.a (mgr.14152) 355 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:52.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:51 smithi082 bash[24745]: cephadm 2024-09-20T19:12:50.781221+0000 mgr.a (mgr.14152) 356 : cephadm [INF] Removing daemon mon.c from smithi137 -- ports [] 2024-09-20T19:12:52.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:51 smithi082 bash[24745]: cephadm 2024-09-20T19:12:50.781221+0000 mgr.a (mgr.14152) 356 : cephadm [INF] Removing daemon mon.c from smithi137 -- ports [] 2024-09-20T19:12:52.389 INFO:teuthology.orchestra.run.smithi018.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-20T19:12:52.389 INFO:teuthology.orchestra.run.smithi018.stderr:mon.c smithi137 running (7m) 110s ago 7m 37.6M 2048M 19.3.0-5099-g88deadb8 441f9a3fe515 c411640ffba6 2024-09-20T19:12:52.389 INFO:teuthology.orchestra.run.smithi018.stderr:osd.4 smithi137 running (2m) 110s ago 2m 40.1M 10.4G 19.3.0-5099-g88deadb8 441f9a3fe515 c26f1a31d3b9 2024-09-20T19:12:52.389 INFO:teuthology.orchestra.run.smithi018.stderr:osd.5 smithi137 running 110s ago 116s - 10.4G ' 2024-09-20T19:12:52.389 INFO:teuthology.orchestra.run.smithi018.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-20T19:12:52.389 INFO:teuthology.orchestra.run.smithi018.stderr:mon.c smithi137 running (7m) 110s ago 7m 37.6M 2048M 19.3.0-5099-g88deadb8 441f9a3fe515 c411640ffba6 2024-09-20T19:12:52.389 INFO:teuthology.orchestra.run.smithi018.stderr:osd.4 smithi137 running (2m) 110s ago 2m 40.1M 10.4G 19.3.0-5099-g88deadb8 441f9a3fe515 c26f1a31d3b9 2024-09-20T19:12:52.389 INFO:teuthology.orchestra.run.smithi018.stderr:osd.5 smithi137 running 110s ago 116s - 10.4G ' '!=' 'No daemons reported' ']' 2024-09-20T19:12:52.389 INFO:teuthology.orchestra.run.smithi018.stderr:+ sleep 15 2024-09-20T19:12:53.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:53 smithi018 bash[22763]: audit 2024-09-20T19:12:52.041199+0000 mgr.a (mgr.14152) 357 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi137", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:12:53.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:53 smithi018 bash[22763]: audit 2024-09-20T19:12:52.041199+0000 mgr.a (mgr.14152) 357 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi137", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:12:53.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:53 smithi018 bash[22763]: audit 2024-09-20T19:12:52.048131+0000 mon.a (mon.0) 639 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:53.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:53 smithi018 bash[22763]: audit 2024-09-20T19:12:52.048131+0000 mon.a (mon.0) 639 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:53.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:53 smithi018 bash[22763]: cephadm 2024-09-20T19:12:52.048673+0000 mgr.a (mgr.14152) 358 : cephadm [INF] Added label _no_schedule to host smithi137 2024-09-20T19:12:53.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:53 smithi018 bash[22763]: cephadm 2024-09-20T19:12:52.048673+0000 mgr.a (mgr.14152) 358 : cephadm [INF] Added label _no_schedule to host smithi137 2024-09-20T19:12:53.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:53 smithi018 bash[22763]: audit 2024-09-20T19:12:52.054113+0000 mon.a (mon.0) 640 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:53.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:53 smithi018 bash[22763]: audit 2024-09-20T19:12:52.054113+0000 mon.a (mon.0) 640 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:53.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:53 smithi018 bash[22763]: cephadm 2024-09-20T19:12:52.054607+0000 mgr.a (mgr.14152) 359 : cephadm [INF] Added label _no_conf_keyring to host smithi137 2024-09-20T19:12:53.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:53 smithi018 bash[22763]: cephadm 2024-09-20T19:12:52.054607+0000 mgr.a (mgr.14152) 359 : cephadm [INF] Added label _no_conf_keyring to host smithi137 2024-09-20T19:12:53.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:53 smithi018 bash[22763]: audit 2024-09-20T19:12:52.055599+0000 mon.a (mon.0) 641 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-20T19:12:53.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:53 smithi018 bash[22763]: audit 2024-09-20T19:12:52.055599+0000 mon.a (mon.0) 641 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-20T19:12:53.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:53 smithi018 bash[22763]: cephadm 2024-09-20T19:12:52.056872+0000 mgr.a (mgr.14152) 360 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-20T19:12:53.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:53 smithi018 bash[22763]: cephadm 2024-09-20T19:12:52.056872+0000 mgr.a (mgr.14152) 360 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-20T19:12:53.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:53 smithi018 bash[22763]: audit 2024-09-20T19:12:52.057725+0000 mon.a (mon.0) 642 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-20T19:12:53.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:53 smithi018 bash[22763]: audit 2024-09-20T19:12:52.057725+0000 mon.a (mon.0) 642 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-20T19:12:53.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:53 smithi018 bash[22763]: cephadm 2024-09-20T19:12:52.059061+0000 mgr.a (mgr.14152) 361 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-20T19:12:53.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:53 smithi018 bash[22763]: cephadm 2024-09-20T19:12:52.059061+0000 mgr.a (mgr.14152) 361 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-20T19:12:53.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:53 smithi082 bash[24745]: audit 2024-09-20T19:12:52.041199+0000 mgr.a (mgr.14152) 357 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi137", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:12:53.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:53 smithi082 bash[24745]: audit 2024-09-20T19:12:52.041199+0000 mgr.a (mgr.14152) 357 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi137", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:12:53.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:53 smithi082 bash[24745]: audit 2024-09-20T19:12:52.048131+0000 mon.a (mon.0) 639 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:53.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:53 smithi082 bash[24745]: audit 2024-09-20T19:12:52.048131+0000 mon.a (mon.0) 639 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:53.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:53 smithi082 bash[24745]: cephadm 2024-09-20T19:12:52.048673+0000 mgr.a (mgr.14152) 358 : cephadm [INF] Added label _no_schedule to host smithi137 2024-09-20T19:12:53.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:53 smithi082 bash[24745]: cephadm 2024-09-20T19:12:52.048673+0000 mgr.a (mgr.14152) 358 : cephadm [INF] Added label _no_schedule to host smithi137 2024-09-20T19:12:53.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:53 smithi082 bash[24745]: audit 2024-09-20T19:12:52.054113+0000 mon.a (mon.0) 640 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:53.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:53 smithi082 bash[24745]: audit 2024-09-20T19:12:52.054113+0000 mon.a (mon.0) 640 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:53.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:53 smithi082 bash[24745]: cephadm 2024-09-20T19:12:52.054607+0000 mgr.a (mgr.14152) 359 : cephadm [INF] Added label _no_conf_keyring to host smithi137 2024-09-20T19:12:53.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:53 smithi082 bash[24745]: cephadm 2024-09-20T19:12:52.054607+0000 mgr.a (mgr.14152) 359 : cephadm [INF] Added label _no_conf_keyring to host smithi137 2024-09-20T19:12:53.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:53 smithi082 bash[24745]: audit 2024-09-20T19:12:52.055599+0000 mon.a (mon.0) 641 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-20T19:12:53.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:53 smithi082 bash[24745]: audit 2024-09-20T19:12:52.055599+0000 mon.a (mon.0) 641 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-20T19:12:53.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:53 smithi082 bash[24745]: cephadm 2024-09-20T19:12:52.056872+0000 mgr.a (mgr.14152) 360 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-20T19:12:53.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:53 smithi082 bash[24745]: cephadm 2024-09-20T19:12:52.056872+0000 mgr.a (mgr.14152) 360 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-20T19:12:53.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:53 smithi082 bash[24745]: audit 2024-09-20T19:12:52.057725+0000 mon.a (mon.0) 642 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-20T19:12:53.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:53 smithi082 bash[24745]: audit 2024-09-20T19:12:52.057725+0000 mon.a (mon.0) 642 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-20T19:12:53.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:53 smithi082 bash[24745]: cephadm 2024-09-20T19:12:52.059061+0000 mgr.a (mgr.14152) 361 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-20T19:12:53.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:53 smithi082 bash[24745]: cephadm 2024-09-20T19:12:52.059061+0000 mgr.a (mgr.14152) 361 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-20T19:12:54.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:54 smithi018 bash[22763]: audit 2024-09-20T19:12:52.372966+0000 mgr.a (mgr.14152) 362 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi137", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:12:54.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:54 smithi018 bash[22763]: audit 2024-09-20T19:12:52.372966+0000 mgr.a (mgr.14152) 362 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi137", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:12:54.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:54 smithi018 bash[22763]: cluster 2024-09-20T19:12:52.546530+0000 mgr.a (mgr.14152) 363 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:54.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:54 smithi018 bash[22763]: cluster 2024-09-20T19:12:52.546530+0000 mgr.a (mgr.14152) 363 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:54.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:54 smithi082 bash[24745]: audit 2024-09-20T19:12:52.372966+0000 mgr.a (mgr.14152) 362 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi137", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:12:54.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:54 smithi082 bash[24745]: audit 2024-09-20T19:12:52.372966+0000 mgr.a (mgr.14152) 362 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi137", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:12:54.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:54 smithi082 bash[24745]: cluster 2024-09-20T19:12:52.546530+0000 mgr.a (mgr.14152) 363 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:54.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:54 smithi082 bash[24745]: cluster 2024-09-20T19:12:52.546530+0000 mgr.a (mgr.14152) 363 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:56.296 INFO:journalctl@ceph.osd.5.smithi137.stdout:Sep 20 19:12:55 smithi137 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:12:56.297 INFO:journalctl@ceph.mon.c.smithi137.stdout:Sep 20 19:12:56 smithi137 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:12:56.297 INFO:journalctl@ceph.osd.4.smithi137.stdout:Sep 20 19:12:55 smithi137 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:12:56.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:56 smithi018 bash[22763]: cluster 2024-09-20T19:12:54.547063+0000 mgr.a (mgr.14152) 364 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:56.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:56 smithi018 bash[22763]: cluster 2024-09-20T19:12:54.547063+0000 mgr.a (mgr.14152) 364 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:56.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:56 smithi082 bash[24745]: cluster 2024-09-20T19:12:54.547063+0000 mgr.a (mgr.14152) 364 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:56.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:56 smithi082 bash[24745]: cluster 2024-09-20T19:12:54.547063+0000 mgr.a (mgr.14152) 364 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:57.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:57 smithi018 bash[22763]: audit 2024-09-20T19:12:56.146271+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:57.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:57 smithi018 bash[22763]: audit 2024-09-20T19:12:56.146271+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:57.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:57 smithi018 bash[22763]: audit 2024-09-20T19:12:56.154204+0000 mon.a (mon.0) 644 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:57.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:57 smithi018 bash[22763]: audit 2024-09-20T19:12:56.154204+0000 mon.a (mon.0) 644 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:57.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:57 smithi018 bash[22763]: audit 2024-09-20T19:12:56.204596+0000 mon.a (mon.0) 645 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:12:57.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:57 smithi018 bash[22763]: audit 2024-09-20T19:12:56.204596+0000 mon.a (mon.0) 645 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:12:57.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:57 smithi018 bash[22763]: audit 2024-09-20T19:12:56.370654+0000 mon.a (mon.0) 646 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:57.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:57 smithi018 bash[22763]: audit 2024-09-20T19:12:56.370654+0000 mon.a (mon.0) 646 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:57.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:57 smithi082 bash[24745]: audit 2024-09-20T19:12:56.146271+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:57.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:57 smithi082 bash[24745]: audit 2024-09-20T19:12:56.146271+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:57.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:57 smithi082 bash[24745]: audit 2024-09-20T19:12:56.154204+0000 mon.a (mon.0) 644 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:57.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:57 smithi082 bash[24745]: audit 2024-09-20T19:12:56.154204+0000 mon.a (mon.0) 644 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:57.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:57 smithi082 bash[24745]: audit 2024-09-20T19:12:56.204596+0000 mon.a (mon.0) 645 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:12:57.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:57 smithi082 bash[24745]: audit 2024-09-20T19:12:56.204596+0000 mon.a (mon.0) 645 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:12:57.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:57 smithi082 bash[24745]: audit 2024-09-20T19:12:56.370654+0000 mon.a (mon.0) 646 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:57.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:57 smithi082 bash[24745]: audit 2024-09-20T19:12:56.370654+0000 mon.a (mon.0) 646 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:12:58.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:58 smithi018 bash[22763]: cluster 2024-09-20T19:12:56.547642+0000 mgr.a (mgr.14152) 365 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:58.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:12:58 smithi018 bash[22763]: cluster 2024-09-20T19:12:56.547642+0000 mgr.a (mgr.14152) 365 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:58.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:58 smithi082 bash[24745]: cluster 2024-09-20T19:12:56.547642+0000 mgr.a (mgr.14152) 365 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:12:58.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:12:58 smithi082 bash[24745]: cluster 2024-09-20T19:12:56.547642+0000 mgr.a (mgr.14152) 365 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:13:00.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:00 smithi018 bash[22763]: cluster 2024-09-20T19:12:58.548207+0000 mgr.a (mgr.14152) 366 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:13:00.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:00 smithi018 bash[22763]: cluster 2024-09-20T19:12:58.548207+0000 mgr.a (mgr.14152) 366 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:13:00.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:00 smithi082 bash[24745]: cluster 2024-09-20T19:12:58.548207+0000 mgr.a (mgr.14152) 366 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:13:00.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:00 smithi082 bash[24745]: cluster 2024-09-20T19:12:58.548207+0000 mgr.a (mgr.14152) 366 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:13:02.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: cluster 2024-09-20T19:13:00.548845+0000 mgr.a (mgr.14152) 367 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:13:02.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: cluster 2024-09-20T19:13:00.548845+0000 mgr.a (mgr.14152) 367 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:13:02.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.464380+0000 mon.a (mon.0) 647 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.464380+0000 mon.a (mon.0) 647 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.471775+0000 mon.a (mon.0) 648 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.471775+0000 mon.a (mon.0) 648 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.473500+0000 mon.a (mon.0) 649 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:02.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.473500+0000 mon.a (mon.0) 649 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:02.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.475353+0000 mon.a (mon.0) 650 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:13:02.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.475353+0000 mon.a (mon.0) 650 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:13:02.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.602851+0000 mon.a (mon.0) 651 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.602851+0000 mon.a (mon.0) 651 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.610617+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.610617+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.764062+0000 mon.a (mon.0) 653 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.764062+0000 mon.a (mon.0) 653 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.769649+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.769649+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.774845+0000 mon.a (mon.0) 655 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.774845+0000 mon.a (mon.0) 655 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.780045+0000 mon.a (mon.0) 656 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.780045+0000 mon.a (mon.0) 656 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.782731+0000 mon.a (mon.0) 657 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-20T19:13:02.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.782731+0000 mon.a (mon.0) 657 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-20T19:13:02.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.784208+0000 mon.a (mon.0) 658 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-20T19:13:02.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.784208+0000 mon.a (mon.0) 658 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-20T19:13:02.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.785313+0000 mon.a (mon.0) 659 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2024-09-20T19:13:02.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.785313+0000 mon.a (mon.0) 659 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2024-09-20T19:13:02.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.786625+0000 mon.a (mon.0) 660 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2024-09-20T19:13:02.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: audit 2024-09-20T19:13:01.786625+0000 mon.a (mon.0) 660 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2024-09-20T19:13:02.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: cluster 2024-09-20T19:13:00.548845+0000 mgr.a (mgr.14152) 367 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:13:02.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: cluster 2024-09-20T19:13:00.548845+0000 mgr.a (mgr.14152) 367 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:13:02.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.464380+0000 mon.a (mon.0) 647 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.464380+0000 mon.a (mon.0) 647 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.471775+0000 mon.a (mon.0) 648 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.471775+0000 mon.a (mon.0) 648 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.473500+0000 mon.a (mon.0) 649 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:02.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.473500+0000 mon.a (mon.0) 649 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:02.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.475353+0000 mon.a (mon.0) 650 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:13:02.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.475353+0000 mon.a (mon.0) 650 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:13:02.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.602851+0000 mon.a (mon.0) 651 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.602851+0000 mon.a (mon.0) 651 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.610617+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.610617+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.764062+0000 mon.a (mon.0) 653 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.764062+0000 mon.a (mon.0) 653 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.769649+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.769649+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.774845+0000 mon.a (mon.0) 655 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.774845+0000 mon.a (mon.0) 655 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.780045+0000 mon.a (mon.0) 656 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.780045+0000 mon.a (mon.0) 656 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:02.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.782731+0000 mon.a (mon.0) 657 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-20T19:13:02.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.782731+0000 mon.a (mon.0) 657 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-20T19:13:02.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.784208+0000 mon.a (mon.0) 658 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-20T19:13:02.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.784208+0000 mon.a (mon.0) 658 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-20T19:13:02.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.785313+0000 mon.a (mon.0) 659 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2024-09-20T19:13:02.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.785313+0000 mon.a (mon.0) 659 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2024-09-20T19:13:02.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.786625+0000 mon.a (mon.0) 660 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2024-09-20T19:13:02.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:02 smithi082 bash[24745]: audit 2024-09-20T19:13:01.786625+0000 mon.a (mon.0) 660 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2024-09-20T19:13:03.163 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:02 smithi018 bash[22763]: debug 2024-09-20T19:13:02.793+0000 7f7e2620e640 -1 mon.a@0(leader).osd e42 definitely_dead 0 2024-09-20T19:13:03.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: cephadm 2024-09-20T19:13:01.477762+0000 mgr.a (mgr.14152) 368 : cephadm [INF] Updating smithi018:/etc/ceph/ceph.conf 2024-09-20T19:13:03.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: cephadm 2024-09-20T19:13:01.477762+0000 mgr.a (mgr.14152) 368 : cephadm [INF] Updating smithi018:/etc/ceph/ceph.conf 2024-09-20T19:13:03.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: cephadm 2024-09-20T19:13:01.478206+0000 mgr.a (mgr.14152) 369 : cephadm [INF] Updating smithi082:/etc/ceph/ceph.conf 2024-09-20T19:13:03.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: cephadm 2024-09-20T19:13:01.478206+0000 mgr.a (mgr.14152) 369 : cephadm [INF] Updating smithi082:/etc/ceph/ceph.conf 2024-09-20T19:13:03.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: cephadm 2024-09-20T19:13:01.479740+0000 mgr.a (mgr.14152) 370 : cephadm [INF] Removing smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:13:03.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: cephadm 2024-09-20T19:13:01.479740+0000 mgr.a (mgr.14152) 370 : cephadm [INF] Removing smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:13:03.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: cephadm 2024-09-20T19:13:01.520560+0000 mgr.a (mgr.14152) 371 : cephadm [INF] Removing smithi137:/etc/ceph/ceph.client.admin.keyring 2024-09-20T19:13:03.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: cephadm 2024-09-20T19:13:01.520560+0000 mgr.a (mgr.14152) 371 : cephadm [INF] Removing smithi137:/etc/ceph/ceph.client.admin.keyring 2024-09-20T19:13:03.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: cephadm 2024-09-20T19:13:01.565077+0000 mgr.a (mgr.14152) 372 : cephadm [INF] Removing smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.client.admin.keyring 2024-09-20T19:13:03.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: cephadm 2024-09-20T19:13:01.565077+0000 mgr.a (mgr.14152) 372 : cephadm [INF] Removing smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.client.admin.keyring 2024-09-20T19:13:03.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: cephadm 2024-09-20T19:13:01.661051+0000 mgr.a (mgr.14152) 373 : cephadm [INF] Updating smithi082:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:13:03.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: cephadm 2024-09-20T19:13:01.661051+0000 mgr.a (mgr.14152) 373 : cephadm [INF] Updating smithi082:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:13:03.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: cephadm 2024-09-20T19:13:01.661407+0000 mgr.a (mgr.14152) 374 : cephadm [INF] Updating smithi018:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:13:03.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: cephadm 2024-09-20T19:13:01.661407+0000 mgr.a (mgr.14152) 374 : cephadm [INF] Updating smithi018:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:13:03.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: audit 2024-09-20T19:13:01.782901+0000 mgr.a (mgr.14152) 375 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-20T19:13:03.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: audit 2024-09-20T19:13:01.782901+0000 mgr.a (mgr.14152) 375 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-20T19:13:03.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: audit 2024-09-20T19:13:01.784349+0000 mgr.a (mgr.14152) 376 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-20T19:13:03.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: audit 2024-09-20T19:13:01.784349+0000 mgr.a (mgr.14152) 376 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-20T19:13:03.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: audit 2024-09-20T19:13:01.785473+0000 mgr.a (mgr.14152) 377 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-20T19:13:03.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: audit 2024-09-20T19:13:01.785473+0000 mgr.a (mgr.14152) 377 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-20T19:13:03.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: audit 2024-09-20T19:13:02.781466+0000 mon.a (mon.0) 661 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-20T19:13:03.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: audit 2024-09-20T19:13:02.781466+0000 mon.a (mon.0) 661 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-20T19:13:03.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: cluster 2024-09-20T19:13:02.786951+0000 mon.a (mon.0) 662 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-09-20T19:13:03.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: cluster 2024-09-20T19:13:02.786951+0000 mon.a (mon.0) 662 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-09-20T19:13:03.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: audit 2024-09-20T19:13:02.788958+0000 mon.a (mon.0) 663 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-20T19:13:03.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: audit 2024-09-20T19:13:02.788958+0000 mon.a (mon.0) 663 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-20T19:13:03.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: audit 2024-09-20T19:13:02.791593+0000 mon.a (mon.0) 664 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2024-09-20T19:13:03.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: audit 2024-09-20T19:13:02.791593+0000 mon.a (mon.0) 664 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2024-09-20T19:13:03.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: audit 2024-09-20T19:13:02.793915+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2024-09-20T19:13:03.423 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:03 smithi018 bash[22763]: audit 2024-09-20T19:13:02.793915+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2024-09-20T19:13:03.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: cephadm 2024-09-20T19:13:01.477762+0000 mgr.a (mgr.14152) 368 : cephadm [INF] Updating smithi018:/etc/ceph/ceph.conf 2024-09-20T19:13:03.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: cephadm 2024-09-20T19:13:01.477762+0000 mgr.a (mgr.14152) 368 : cephadm [INF] Updating smithi018:/etc/ceph/ceph.conf 2024-09-20T19:13:03.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: cephadm 2024-09-20T19:13:01.478206+0000 mgr.a (mgr.14152) 369 : cephadm [INF] Updating smithi082:/etc/ceph/ceph.conf 2024-09-20T19:13:03.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: cephadm 2024-09-20T19:13:01.478206+0000 mgr.a (mgr.14152) 369 : cephadm [INF] Updating smithi082:/etc/ceph/ceph.conf 2024-09-20T19:13:03.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: cephadm 2024-09-20T19:13:01.479740+0000 mgr.a (mgr.14152) 370 : cephadm [INF] Removing smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:13:03.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: cephadm 2024-09-20T19:13:01.479740+0000 mgr.a (mgr.14152) 370 : cephadm [INF] Removing smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:13:03.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: cephadm 2024-09-20T19:13:01.520560+0000 mgr.a (mgr.14152) 371 : cephadm [INF] Removing smithi137:/etc/ceph/ceph.client.admin.keyring 2024-09-20T19:13:03.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: cephadm 2024-09-20T19:13:01.520560+0000 mgr.a (mgr.14152) 371 : cephadm [INF] Removing smithi137:/etc/ceph/ceph.client.admin.keyring 2024-09-20T19:13:03.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: cephadm 2024-09-20T19:13:01.565077+0000 mgr.a (mgr.14152) 372 : cephadm [INF] Removing smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.client.admin.keyring 2024-09-20T19:13:03.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: cephadm 2024-09-20T19:13:01.565077+0000 mgr.a (mgr.14152) 372 : cephadm [INF] Removing smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.client.admin.keyring 2024-09-20T19:13:03.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: cephadm 2024-09-20T19:13:01.661051+0000 mgr.a (mgr.14152) 373 : cephadm [INF] Updating smithi082:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:13:03.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: cephadm 2024-09-20T19:13:01.661051+0000 mgr.a (mgr.14152) 373 : cephadm [INF] Updating smithi082:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:13:03.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: cephadm 2024-09-20T19:13:01.661407+0000 mgr.a (mgr.14152) 374 : cephadm [INF] Updating smithi018:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:13:03.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: cephadm 2024-09-20T19:13:01.661407+0000 mgr.a (mgr.14152) 374 : cephadm [INF] Updating smithi018:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/config/ceph.conf 2024-09-20T19:13:03.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: audit 2024-09-20T19:13:01.782901+0000 mgr.a (mgr.14152) 375 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-20T19:13:03.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: audit 2024-09-20T19:13:01.782901+0000 mgr.a (mgr.14152) 375 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-20T19:13:03.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: audit 2024-09-20T19:13:01.784349+0000 mgr.a (mgr.14152) 376 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-20T19:13:03.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: audit 2024-09-20T19:13:01.784349+0000 mgr.a (mgr.14152) 376 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-20T19:13:03.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: audit 2024-09-20T19:13:01.785473+0000 mgr.a (mgr.14152) 377 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-20T19:13:03.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: audit 2024-09-20T19:13:01.785473+0000 mgr.a (mgr.14152) 377 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-20T19:13:03.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: audit 2024-09-20T19:13:02.781466+0000 mon.a (mon.0) 661 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-20T19:13:03.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: audit 2024-09-20T19:13:02.781466+0000 mon.a (mon.0) 661 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-20T19:13:03.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: cluster 2024-09-20T19:13:02.786951+0000 mon.a (mon.0) 662 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-09-20T19:13:03.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: cluster 2024-09-20T19:13:02.786951+0000 mon.a (mon.0) 662 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-09-20T19:13:03.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: audit 2024-09-20T19:13:02.788958+0000 mon.a (mon.0) 663 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-20T19:13:03.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: audit 2024-09-20T19:13:02.788958+0000 mon.a (mon.0) 663 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-20T19:13:03.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: audit 2024-09-20T19:13:02.791593+0000 mon.a (mon.0) 664 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2024-09-20T19:13:03.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: audit 2024-09-20T19:13:02.791593+0000 mon.a (mon.0) 664 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2024-09-20T19:13:03.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: audit 2024-09-20T19:13:02.793915+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2024-09-20T19:13:03.449 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:03 smithi082 bash[24745]: audit 2024-09-20T19:13:02.793915+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2024-09-20T19:13:04.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:04 smithi018 bash[22763]: cluster 2024-09-20T19:13:02.549457+0000 mgr.a (mgr.14152) 378 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:13:04.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:04 smithi018 bash[22763]: cluster 2024-09-20T19:13:02.549457+0000 mgr.a (mgr.14152) 378 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:13:04.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:04 smithi018 bash[22763]: cephadm 2024-09-20T19:13:02.788142+0000 mgr.a (mgr.14152) 379 : cephadm [INF] osd.5 weight is now 0.0 2024-09-20T19:13:04.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:04 smithi018 bash[22763]: cephadm 2024-09-20T19:13:02.788142+0000 mgr.a (mgr.14152) 379 : cephadm [INF] osd.5 weight is now 0.0 2024-09-20T19:13:04.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:04 smithi018 bash[22763]: audit 2024-09-20T19:13:02.789326+0000 mgr.a (mgr.14152) 380 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-20T19:13:04.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:04 smithi018 bash[22763]: audit 2024-09-20T19:13:02.789326+0000 mgr.a (mgr.14152) 380 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-20T19:13:04.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:04 smithi018 bash[22763]: audit 2024-09-20T19:13:02.791938+0000 mgr.a (mgr.14152) 381 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-20T19:13:04.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:04 smithi018 bash[22763]: audit 2024-09-20T19:13:02.791938+0000 mgr.a (mgr.14152) 381 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-20T19:13:04.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:04 smithi018 bash[22763]: cluster 2024-09-20T19:13:03.781716+0000 mon.a (mon.0) 666 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-20T19:13:04.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:04 smithi018 bash[22763]: cluster 2024-09-20T19:13:03.781716+0000 mon.a (mon.0) 666 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-20T19:13:04.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:04 smithi018 bash[22763]: audit 2024-09-20T19:13:03.783831+0000 mon.a (mon.0) 667 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-20T19:13:04.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:04 smithi018 bash[22763]: audit 2024-09-20T19:13:03.783831+0000 mon.a (mon.0) 667 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-20T19:13:04.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:04 smithi018 bash[22763]: cluster 2024-09-20T19:13:03.789035+0000 mon.a (mon.0) 668 : cluster [DBG] osdmap e43: 6 total, 5 up, 6 in 2024-09-20T19:13:04.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:04 smithi018 bash[22763]: cluster 2024-09-20T19:13:03.789035+0000 mon.a (mon.0) 668 : cluster [DBG] osdmap e43: 6 total, 5 up, 6 in 2024-09-20T19:13:04.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:04 smithi082 bash[24745]: cluster 2024-09-20T19:13:02.549457+0000 mgr.a (mgr.14152) 378 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:13:04.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:04 smithi082 bash[24745]: cluster 2024-09-20T19:13:02.549457+0000 mgr.a (mgr.14152) 378 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:13:04.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:04 smithi082 bash[24745]: cephadm 2024-09-20T19:13:02.788142+0000 mgr.a (mgr.14152) 379 : cephadm [INF] osd.5 weight is now 0.0 2024-09-20T19:13:04.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:04 smithi082 bash[24745]: cephadm 2024-09-20T19:13:02.788142+0000 mgr.a (mgr.14152) 379 : cephadm [INF] osd.5 weight is now 0.0 2024-09-20T19:13:04.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:04 smithi082 bash[24745]: audit 2024-09-20T19:13:02.789326+0000 mgr.a (mgr.14152) 380 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-20T19:13:04.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:04 smithi082 bash[24745]: audit 2024-09-20T19:13:02.789326+0000 mgr.a (mgr.14152) 380 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-20T19:13:04.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:04 smithi082 bash[24745]: audit 2024-09-20T19:13:02.791938+0000 mgr.a (mgr.14152) 381 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-20T19:13:04.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:04 smithi082 bash[24745]: audit 2024-09-20T19:13:02.791938+0000 mgr.a (mgr.14152) 381 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-20T19:13:04.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:04 smithi082 bash[24745]: cluster 2024-09-20T19:13:03.781716+0000 mon.a (mon.0) 666 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-20T19:13:04.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:04 smithi082 bash[24745]: cluster 2024-09-20T19:13:03.781716+0000 mon.a (mon.0) 666 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-20T19:13:04.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:04 smithi082 bash[24745]: audit 2024-09-20T19:13:03.783831+0000 mon.a (mon.0) 667 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-20T19:13:04.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:04 smithi082 bash[24745]: audit 2024-09-20T19:13:03.783831+0000 mon.a (mon.0) 667 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-20T19:13:04.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:04 smithi082 bash[24745]: cluster 2024-09-20T19:13:03.789035+0000 mon.a (mon.0) 668 : cluster [DBG] osdmap e43: 6 total, 5 up, 6 in 2024-09-20T19:13:04.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:04 smithi082 bash[24745]: cluster 2024-09-20T19:13:03.789035+0000 mon.a (mon.0) 668 : cluster [DBG] osdmap e43: 6 total, 5 up, 6 in 2024-09-20T19:13:04.546 INFO:journalctl@ceph.osd.4.smithi137.stdout:Sep 20 19:13:04 smithi137 systemd[1]: Stopping Ceph osd.4 for 9ac321c2-7782-11ef-baf5-efdc52797490... 2024-09-20T19:13:04.546 INFO:journalctl@ceph.osd.4.smithi137.stdout:Sep 20 19:13:04 smithi137 bash[27950]: debug 2024-09-20T19:13:04.401+0000 7efdc2d8b640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.4 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-20T19:13:04.547 INFO:journalctl@ceph.osd.4.smithi137.stdout:Sep 20 19:13:04 smithi137 bash[27950]: debug 2024-09-20T19:13:04.401+0000 7efdc2d8b640 -1 osd.4 42 *** Got signal Terminated *** 2024-09-20T19:13:04.547 INFO:journalctl@ceph.osd.4.smithi137.stdout:Sep 20 19:13:04 smithi137 bash[27950]: debug 2024-09-20T19:13:04.401+0000 7efdc2d8b640 -1 osd.4 42 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-20T19:13:05.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:05 smithi018 bash[22763]: cephadm 2024-09-20T19:13:03.790443+0000 mgr.a (mgr.14152) 382 : cephadm [INF] osd.4 now down 2024-09-20T19:13:05.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:05 smithi018 bash[22763]: cephadm 2024-09-20T19:13:03.790443+0000 mgr.a (mgr.14152) 382 : cephadm [INF] osd.4 now down 2024-09-20T19:13:05.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:05 smithi018 bash[22763]: cephadm 2024-09-20T19:13:03.790949+0000 mgr.a (mgr.14152) 383 : cephadm [INF] Removing daemon osd.4 from smithi137 -- ports [] 2024-09-20T19:13:05.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:05 smithi018 bash[22763]: cephadm 2024-09-20T19:13:03.790949+0000 mgr.a (mgr.14152) 383 : cephadm [INF] Removing daemon osd.4 from smithi137 -- ports [] 2024-09-20T19:13:05.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:05 smithi018 bash[22763]: cluster 2024-09-20T19:13:04.378071+0000 mon.a (mon.0) 669 : cluster [DBG] osdmap e44: 6 total, 5 up, 6 in 2024-09-20T19:13:05.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:05 smithi018 bash[22763]: cluster 2024-09-20T19:13:04.378071+0000 mon.a (mon.0) 669 : cluster [DBG] osdmap e44: 6 total, 5 up, 6 in 2024-09-20T19:13:05.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:05 smithi082 bash[24745]: cephadm 2024-09-20T19:13:03.790443+0000 mgr.a (mgr.14152) 382 : cephadm [INF] osd.4 now down 2024-09-20T19:13:05.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:05 smithi082 bash[24745]: cephadm 2024-09-20T19:13:03.790443+0000 mgr.a (mgr.14152) 382 : cephadm [INF] osd.4 now down 2024-09-20T19:13:05.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:05 smithi082 bash[24745]: cephadm 2024-09-20T19:13:03.790949+0000 mgr.a (mgr.14152) 383 : cephadm [INF] Removing daemon osd.4 from smithi137 -- ports [] 2024-09-20T19:13:05.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:05 smithi082 bash[24745]: cephadm 2024-09-20T19:13:03.790949+0000 mgr.a (mgr.14152) 383 : cephadm [INF] Removing daemon osd.4 from smithi137 -- ports [] 2024-09-20T19:13:05.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:05 smithi082 bash[24745]: cluster 2024-09-20T19:13:04.378071+0000 mon.a (mon.0) 669 : cluster [DBG] osdmap e44: 6 total, 5 up, 6 in 2024-09-20T19:13:05.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:05 smithi082 bash[24745]: cluster 2024-09-20T19:13:04.378071+0000 mon.a (mon.0) 669 : cluster [DBG] osdmap e44: 6 total, 5 up, 6 in 2024-09-20T19:13:05.709 INFO:journalctl@ceph.osd.4.smithi137.stdout:Sep 20 19:13:05 smithi137 bash[36545]: ceph-9ac321c2-7782-11ef-baf5-efdc52797490-osd-4 2024-09-20T19:13:05.709 INFO:journalctl@ceph.osd.4.smithi137.stdout:Sep 20 19:13:05 smithi137 bash[36606]: Error response from daemon: No such container: ceph-9ac321c2-7782-11ef-baf5-efdc52797490-osd-4 2024-09-20T19:13:06.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:06 smithi018 bash[22763]: cluster 2024-09-20T19:13:04.549920+0000 mgr.a (mgr.14152) 384 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:13:06.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:06 smithi018 bash[22763]: cluster 2024-09-20T19:13:04.549920+0000 mgr.a (mgr.14152) 384 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:13:06.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:06 smithi018 bash[22763]: cluster 2024-09-20T19:13:05.387060+0000 mon.a (mon.0) 670 : cluster [DBG] osdmap e45: 6 total, 5 up, 6 in 2024-09-20T19:13:06.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:06 smithi018 bash[22763]: cluster 2024-09-20T19:13:05.387060+0000 mon.a (mon.0) 670 : cluster [DBG] osdmap e45: 6 total, 5 up, 6 in 2024-09-20T19:13:06.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:06 smithi082 bash[24745]: cluster 2024-09-20T19:13:04.549920+0000 mgr.a (mgr.14152) 384 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:13:06.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:06 smithi082 bash[24745]: cluster 2024-09-20T19:13:04.549920+0000 mgr.a (mgr.14152) 384 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail 2024-09-20T19:13:06.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:06 smithi082 bash[24745]: cluster 2024-09-20T19:13:05.387060+0000 mon.a (mon.0) 670 : cluster [DBG] osdmap e45: 6 total, 5 up, 6 in 2024-09-20T19:13:06.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:06 smithi082 bash[24745]: cluster 2024-09-20T19:13:05.387060+0000 mon.a (mon.0) 670 : cluster [DBG] osdmap e45: 6 total, 5 up, 6 in 2024-09-20T19:13:07.391 INFO:teuthology.orchestra.run.smithi018.stderr:++ ceph orch ps --hostname smithi137 2024-09-20T19:13:07.732 INFO:teuthology.orchestra.run.smithi018.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-20T19:13:07.732 INFO:teuthology.orchestra.run.smithi018.stderr:osd.5 smithi137 running (2m) 6s ago 2m 44.5M 10.4G 19.3.0-5099-g88deadb8 441f9a3fe515 644f638352e3 ' 2024-09-20T19:13:07.732 INFO:teuthology.orchestra.run.smithi018.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-20T19:13:07.732 INFO:teuthology.orchestra.run.smithi018.stderr:osd.5 smithi137 running (2m) 6s ago 2m 44.5M 10.4G 19.3.0-5099-g88deadb8 441f9a3fe515 644f638352e3 ' '!=' 'No daemons reported' ']' 2024-09-20T19:13:07.732 INFO:teuthology.orchestra.run.smithi018.stderr:+ sleep 15 2024-09-20T19:13:07.796 INFO:journalctl@ceph.osd.5.smithi137.stdout:Sep 20 19:13:07 smithi137 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:13:07.796 INFO:journalctl@ceph.osd.4.smithi137.stdout:Sep 20 19:13:07 smithi137 systemd[1]: ceph-9ac321c2-7782-11ef-baf5-efdc52797490@osd.4.service: Deactivated successfully. 2024-09-20T19:13:07.797 INFO:journalctl@ceph.osd.4.smithi137.stdout:Sep 20 19:13:07 smithi137 systemd[1]: Stopped Ceph osd.4 for 9ac321c2-7782-11ef-baf5-efdc52797490. 2024-09-20T19:13:07.797 INFO:journalctl@ceph.osd.4.smithi137.stdout:Sep 20 19:13:07 smithi137 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:13:08.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:08 smithi082 bash[24745]: cluster 2024-09-20T19:13:06.550498+0000 mgr.a (mgr.14152) 385 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-20T19:13:08.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:08 smithi082 bash[24745]: cluster 2024-09-20T19:13:06.550498+0000 mgr.a (mgr.14152) 385 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-20T19:13:08.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:08 smithi082 bash[24745]: audit 2024-09-20T19:13:07.676163+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2024-09-20T19:13:08.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:08 smithi082 bash[24745]: audit 2024-09-20T19:13:07.676163+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2024-09-20T19:13:08.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:08 smithi082 bash[24745]: audit 2024-09-20T19:13:07.678883+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-20T19:13:08.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:08 smithi082 bash[24745]: audit 2024-09-20T19:13:07.678883+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-20T19:13:08.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:08 smithi082 bash[24745]: audit 2024-09-20T19:13:07.684470+0000 mon.a (mon.0) 673 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2024-09-20T19:13:08.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:08 smithi082 bash[24745]: audit 2024-09-20T19:13:07.684470+0000 mon.a (mon.0) 673 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2024-09-20T19:13:08.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:08 smithi082 bash[24745]: cluster 2024-09-20T19:13:07.685613+0000 mon.a (mon.0) 674 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-20T19:13:08.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:08 smithi082 bash[24745]: cluster 2024-09-20T19:13:07.685613+0000 mon.a (mon.0) 674 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-20T19:13:08.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:08 smithi082 bash[24745]: cluster 2024-09-20T19:13:07.685654+0000 mon.a (mon.0) 675 : cluster [INF] Cluster is now healthy 2024-09-20T19:13:08.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:08 smithi082 bash[24745]: cluster 2024-09-20T19:13:07.685654+0000 mon.a (mon.0) 675 : cluster [INF] Cluster is now healthy 2024-09-20T19:13:08.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:08 smithi082 bash[24745]: audit 2024-09-20T19:13:07.687466+0000 mon.a (mon.0) 676 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-20T19:13:08.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:08 smithi082 bash[24745]: audit 2024-09-20T19:13:07.687466+0000 mon.a (mon.0) 676 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-20T19:13:08.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:08 smithi082 bash[24745]: cluster 2024-09-20T19:13:07.693093+0000 mon.a (mon.0) 677 : cluster [DBG] osdmap e46: 5 total, 5 up, 5 in 2024-09-20T19:13:08.448 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:08 smithi082 bash[24745]: cluster 2024-09-20T19:13:07.693093+0000 mon.a (mon.0) 677 : cluster [DBG] osdmap e46: 5 total, 5 up, 5 in 2024-09-20T19:13:08.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:08 smithi018 bash[22763]: cluster 2024-09-20T19:13:06.550498+0000 mgr.a (mgr.14152) 385 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-20T19:13:08.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:08 smithi018 bash[22763]: cluster 2024-09-20T19:13:06.550498+0000 mgr.a (mgr.14152) 385 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 183 MiB used, 536 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-20T19:13:08.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:08 smithi018 bash[22763]: audit 2024-09-20T19:13:07.676163+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2024-09-20T19:13:08.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:08 smithi018 bash[22763]: audit 2024-09-20T19:13:07.676163+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2024-09-20T19:13:08.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:08 smithi018 bash[22763]: audit 2024-09-20T19:13:07.678883+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-20T19:13:08.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:08 smithi018 bash[22763]: audit 2024-09-20T19:13:07.678883+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-20T19:13:08.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:08 smithi018 bash[22763]: audit 2024-09-20T19:13:07.684470+0000 mon.a (mon.0) 673 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2024-09-20T19:13:08.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:08 smithi018 bash[22763]: audit 2024-09-20T19:13:07.684470+0000 mon.a (mon.0) 673 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2024-09-20T19:13:08.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:08 smithi018 bash[22763]: cluster 2024-09-20T19:13:07.685613+0000 mon.a (mon.0) 674 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-20T19:13:08.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:08 smithi018 bash[22763]: cluster 2024-09-20T19:13:07.685613+0000 mon.a (mon.0) 674 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-20T19:13:08.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:08 smithi018 bash[22763]: cluster 2024-09-20T19:13:07.685654+0000 mon.a (mon.0) 675 : cluster [INF] Cluster is now healthy 2024-09-20T19:13:08.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:08 smithi018 bash[22763]: cluster 2024-09-20T19:13:07.685654+0000 mon.a (mon.0) 675 : cluster [INF] Cluster is now healthy 2024-09-20T19:13:08.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:08 smithi018 bash[22763]: audit 2024-09-20T19:13:07.687466+0000 mon.a (mon.0) 676 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-20T19:13:08.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:08 smithi018 bash[22763]: audit 2024-09-20T19:13:07.687466+0000 mon.a (mon.0) 676 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-20T19:13:08.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:08 smithi018 bash[22763]: cluster 2024-09-20T19:13:07.693093+0000 mon.a (mon.0) 677 : cluster [DBG] osdmap e46: 5 total, 5 up, 5 in 2024-09-20T19:13:08.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:08 smithi018 bash[22763]: cluster 2024-09-20T19:13:07.693093+0000 mon.a (mon.0) 677 : cluster [DBG] osdmap e46: 5 total, 5 up, 5 in 2024-09-20T19:13:09.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:09 smithi082 bash[24745]: cephadm 2024-09-20T19:13:07.675621+0000 mgr.a (mgr.14152) 386 : cephadm [INF] Removing key for osd.4 2024-09-20T19:13:09.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:09 smithi082 bash[24745]: cephadm 2024-09-20T19:13:07.675621+0000 mgr.a (mgr.14152) 386 : cephadm [INF] Removing key for osd.4 2024-09-20T19:13:09.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:09 smithi082 bash[24745]: cephadm 2024-09-20T19:13:07.684026+0000 mgr.a (mgr.14152) 387 : cephadm [INF] Successfully removed osd.4 on smithi137 2024-09-20T19:13:09.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:09 smithi082 bash[24745]: cephadm 2024-09-20T19:13:07.684026+0000 mgr.a (mgr.14152) 387 : cephadm [INF] Successfully removed osd.4 on smithi137 2024-09-20T19:13:09.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:09 smithi082 bash[24745]: cephadm 2024-09-20T19:13:07.694521+0000 mgr.a (mgr.14152) 388 : cephadm [INF] Successfully purged osd.4 on smithi137 2024-09-20T19:13:09.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:09 smithi082 bash[24745]: cephadm 2024-09-20T19:13:07.694521+0000 mgr.a (mgr.14152) 388 : cephadm [INF] Successfully purged osd.4 on smithi137 2024-09-20T19:13:09.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:09 smithi082 bash[24745]: cephadm 2024-09-20T19:13:07.694665+0000 mgr.a (mgr.14152) 389 : cephadm [INF] Zapping devices for osd.4 on smithi137 2024-09-20T19:13:09.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:09 smithi082 bash[24745]: cephadm 2024-09-20T19:13:07.694665+0000 mgr.a (mgr.14152) 389 : cephadm [INF] Zapping devices for osd.4 on smithi137 2024-09-20T19:13:09.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:09 smithi082 bash[24745]: audit 2024-09-20T19:13:07.710994+0000 mgr.a (mgr.14152) 390 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi137", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:13:09.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:09 smithi082 bash[24745]: audit 2024-09-20T19:13:07.710994+0000 mgr.a (mgr.14152) 390 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi137", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:13:09.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:09 smithi082 bash[24745]: cluster 2024-09-20T19:13:08.694956+0000 mon.a (mon.0) 678 : cluster [DBG] osdmap e47: 5 total, 5 up, 5 in 2024-09-20T19:13:09.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:09 smithi082 bash[24745]: cluster 2024-09-20T19:13:08.694956+0000 mon.a (mon.0) 678 : cluster [DBG] osdmap e47: 5 total, 5 up, 5 in 2024-09-20T19:13:09.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:09 smithi018 bash[22763]: cephadm 2024-09-20T19:13:07.675621+0000 mgr.a (mgr.14152) 386 : cephadm [INF] Removing key for osd.4 2024-09-20T19:13:09.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:09 smithi018 bash[22763]: cephadm 2024-09-20T19:13:07.675621+0000 mgr.a (mgr.14152) 386 : cephadm [INF] Removing key for osd.4 2024-09-20T19:13:09.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:09 smithi018 bash[22763]: cephadm 2024-09-20T19:13:07.684026+0000 mgr.a (mgr.14152) 387 : cephadm [INF] Successfully removed osd.4 on smithi137 2024-09-20T19:13:09.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:09 smithi018 bash[22763]: cephadm 2024-09-20T19:13:07.684026+0000 mgr.a (mgr.14152) 387 : cephadm [INF] Successfully removed osd.4 on smithi137 2024-09-20T19:13:09.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:09 smithi018 bash[22763]: cephadm 2024-09-20T19:13:07.694521+0000 mgr.a (mgr.14152) 388 : cephadm [INF] Successfully purged osd.4 on smithi137 2024-09-20T19:13:09.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:09 smithi018 bash[22763]: cephadm 2024-09-20T19:13:07.694521+0000 mgr.a (mgr.14152) 388 : cephadm [INF] Successfully purged osd.4 on smithi137 2024-09-20T19:13:09.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:09 smithi018 bash[22763]: cephadm 2024-09-20T19:13:07.694665+0000 mgr.a (mgr.14152) 389 : cephadm [INF] Zapping devices for osd.4 on smithi137 2024-09-20T19:13:09.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:09 smithi018 bash[22763]: cephadm 2024-09-20T19:13:07.694665+0000 mgr.a (mgr.14152) 389 : cephadm [INF] Zapping devices for osd.4 on smithi137 2024-09-20T19:13:09.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:09 smithi018 bash[22763]: audit 2024-09-20T19:13:07.710994+0000 mgr.a (mgr.14152) 390 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi137", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:13:09.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:09 smithi018 bash[22763]: audit 2024-09-20T19:13:07.710994+0000 mgr.a (mgr.14152) 390 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi137", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:13:09.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:09 smithi018 bash[22763]: cluster 2024-09-20T19:13:08.694956+0000 mon.a (mon.0) 678 : cluster [DBG] osdmap e47: 5 total, 5 up, 5 in 2024-09-20T19:13:09.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:09 smithi018 bash[22763]: cluster 2024-09-20T19:13:08.694956+0000 mon.a (mon.0) 678 : cluster [DBG] osdmap e47: 5 total, 5 up, 5 in 2024-09-20T19:13:10.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:10 smithi082 bash[24745]: cluster 2024-09-20T19:13:08.551049+0000 mgr.a (mgr.14152) 391 : cluster [DBG] pgmap v321: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-20T19:13:10.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:10 smithi082 bash[24745]: cluster 2024-09-20T19:13:08.551049+0000 mgr.a (mgr.14152) 391 : cluster [DBG] pgmap v321: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-20T19:13:10.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:10 smithi082 bash[24745]: cluster 2024-09-20T19:13:09.697187+0000 mon.a (mon.0) 679 : cluster [DBG] osdmap e48: 5 total, 5 up, 5 in 2024-09-20T19:13:10.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:10 smithi082 bash[24745]: cluster 2024-09-20T19:13:09.697187+0000 mon.a (mon.0) 679 : cluster [DBG] osdmap e48: 5 total, 5 up, 5 in 2024-09-20T19:13:10.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:10 smithi018 bash[22763]: cluster 2024-09-20T19:13:08.551049+0000 mgr.a (mgr.14152) 391 : cluster [DBG] pgmap v321: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-20T19:13:10.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:10 smithi018 bash[22763]: cluster 2024-09-20T19:13:08.551049+0000 mgr.a (mgr.14152) 391 : cluster [DBG] pgmap v321: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-20T19:13:10.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:10 smithi018 bash[22763]: cluster 2024-09-20T19:13:09.697187+0000 mon.a (mon.0) 679 : cluster [DBG] osdmap e48: 5 total, 5 up, 5 in 2024-09-20T19:13:10.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:10 smithi018 bash[22763]: cluster 2024-09-20T19:13:09.697187+0000 mon.a (mon.0) 679 : cluster [DBG] osdmap e48: 5 total, 5 up, 5 in 2024-09-20T19:13:12.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:12 smithi082 bash[24745]: cluster 2024-09-20T19:13:10.551582+0000 mgr.a (mgr.14152) 392 : cluster [DBG] pgmap v324: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-20T19:13:12.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:12 smithi082 bash[24745]: cluster 2024-09-20T19:13:10.551582+0000 mgr.a (mgr.14152) 392 : cluster [DBG] pgmap v324: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-20T19:13:12.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:12 smithi018 bash[22763]: cluster 2024-09-20T19:13:10.551582+0000 mgr.a (mgr.14152) 392 : cluster [DBG] pgmap v324: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-20T19:13:12.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:12 smithi018 bash[22763]: cluster 2024-09-20T19:13:10.551582+0000 mgr.a (mgr.14152) 392 : cluster [DBG] pgmap v324: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-20T19:13:14.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:14 smithi082 bash[24745]: cluster 2024-09-20T19:13:12.552189+0000 mgr.a (mgr.14152) 393 : cluster [DBG] pgmap v325: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-20T19:13:14.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:14 smithi082 bash[24745]: cluster 2024-09-20T19:13:12.552189+0000 mgr.a (mgr.14152) 393 : cluster [DBG] pgmap v325: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-20T19:13:14.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:14 smithi018 bash[22763]: cluster 2024-09-20T19:13:12.552189+0000 mgr.a (mgr.14152) 393 : cluster [DBG] pgmap v325: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-20T19:13:14.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:14 smithi018 bash[22763]: cluster 2024-09-20T19:13:12.552189+0000 mgr.a (mgr.14152) 393 : cluster [DBG] pgmap v325: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-20T19:13:16.602 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:16 smithi018 bash[22763]: cluster 2024-09-20T19:13:14.552781+0000 mgr.a (mgr.14152) 394 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-09-20T19:13:16.603 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:16 smithi018 bash[22763]: cluster 2024-09-20T19:13:14.552781+0000 mgr.a (mgr.14152) 394 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-09-20T19:13:16.603 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:16 smithi018 bash[22763]: debug 2024-09-20T19:13:16.600+0000 7f7e2620e640 -1 mon.a@0(leader).osd e48 definitely_dead 0 2024-09-20T19:13:16.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:16 smithi082 bash[24745]: cluster 2024-09-20T19:13:14.552781+0000 mgr.a (mgr.14152) 394 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-09-20T19:13:16.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:16 smithi082 bash[24745]: cluster 2024-09-20T19:13:14.552781+0000 mgr.a (mgr.14152) 394 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-09-20T19:13:17.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:17 smithi018 bash[22763]: audit 2024-09-20T19:13:16.596661+0000 mon.a (mon.0) 680 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-20T19:13:17.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:17 smithi018 bash[22763]: audit 2024-09-20T19:13:16.596661+0000 mon.a (mon.0) 680 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-20T19:13:17.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:17 smithi018 bash[22763]: audit 2024-09-20T19:13:16.599521+0000 mon.a (mon.0) 681 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2024-09-20T19:13:17.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:17 smithi018 bash[22763]: audit 2024-09-20T19:13:16.599521+0000 mon.a (mon.0) 681 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2024-09-20T19:13:17.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:17 smithi018 bash[22763]: audit 2024-09-20T19:13:16.602098+0000 mon.a (mon.0) 682 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["5"]} : dispatch 2024-09-20T19:13:17.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:17 smithi018 bash[22763]: audit 2024-09-20T19:13:16.602098+0000 mon.a (mon.0) 682 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["5"]} : dispatch 2024-09-20T19:13:17.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:17 smithi082 bash[24745]: audit 2024-09-20T19:13:16.596661+0000 mon.a (mon.0) 680 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-20T19:13:17.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:17 smithi082 bash[24745]: audit 2024-09-20T19:13:16.596661+0000 mon.a (mon.0) 680 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-20T19:13:17.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:17 smithi082 bash[24745]: audit 2024-09-20T19:13:16.599521+0000 mon.a (mon.0) 681 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2024-09-20T19:13:17.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:17 smithi082 bash[24745]: audit 2024-09-20T19:13:16.599521+0000 mon.a (mon.0) 681 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2024-09-20T19:13:17.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:17 smithi082 bash[24745]: audit 2024-09-20T19:13:16.602098+0000 mon.a (mon.0) 682 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["5"]} : dispatch 2024-09-20T19:13:17.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:17 smithi082 bash[24745]: audit 2024-09-20T19:13:16.602098+0000 mon.a (mon.0) 682 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["5"]} : dispatch 2024-09-20T19:13:18.046 INFO:journalctl@ceph.osd.5.smithi137.stdout:Sep 20 19:13:17 smithi137 systemd[1]: Stopping Ceph osd.5 for 9ac321c2-7782-11ef-baf5-efdc52797490... 2024-09-20T19:13:18.046 INFO:journalctl@ceph.osd.5.smithi137.stdout:Sep 20 19:13:17 smithi137 bash[33214]: debug 2024-09-20T19:13:17.825+0000 7f9e0dbc1640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.5 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-20T19:13:18.046 INFO:journalctl@ceph.osd.5.smithi137.stdout:Sep 20 19:13:17 smithi137 bash[33214]: debug 2024-09-20T19:13:17.825+0000 7f9e0dbc1640 -1 osd.5 48 *** Got signal Terminated *** 2024-09-20T19:13:18.047 INFO:journalctl@ceph.osd.5.smithi137.stdout:Sep 20 19:13:17 smithi137 bash[33214]: debug 2024-09-20T19:13:17.825+0000 7f9e0dbc1640 -1 osd.5 48 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-20T19:13:18.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:18 smithi018 bash[22763]: cluster 2024-09-20T19:13:16.553412+0000 mgr.a (mgr.14152) 395 : cluster [DBG] pgmap v327: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-20T19:13:18.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:18 smithi018 bash[22763]: cluster 2024-09-20T19:13:16.553412+0000 mgr.a (mgr.14152) 395 : cluster [DBG] pgmap v327: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-20T19:13:18.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:18 smithi018 bash[22763]: cephadm 2024-09-20T19:13:16.595996+0000 mgr.a (mgr.14152) 396 : cephadm [INF] Successfully zapped devices for osd.4 on smithi137 2024-09-20T19:13:18.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:18 smithi018 bash[22763]: cephadm 2024-09-20T19:13:16.595996+0000 mgr.a (mgr.14152) 396 : cephadm [INF] Successfully zapped devices for osd.4 on smithi137 2024-09-20T19:13:18.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:18 smithi018 bash[22763]: audit 2024-09-20T19:13:16.597106+0000 mgr.a (mgr.14152) 397 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-20T19:13:18.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:18 smithi018 bash[22763]: audit 2024-09-20T19:13:16.597106+0000 mgr.a (mgr.14152) 397 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-20T19:13:18.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:18 smithi018 bash[22763]: audit 2024-09-20T19:13:16.599951+0000 mgr.a (mgr.14152) 398 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-20T19:13:18.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:18 smithi018 bash[22763]: audit 2024-09-20T19:13:16.599951+0000 mgr.a (mgr.14152) 398 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-20T19:13:18.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:18 smithi018 bash[22763]: cluster 2024-09-20T19:13:17.197155+0000 mon.a (mon.0) 683 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-20T19:13:18.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:18 smithi018 bash[22763]: cluster 2024-09-20T19:13:17.197155+0000 mon.a (mon.0) 683 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-20T19:13:18.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:18 smithi018 bash[22763]: cluster 2024-09-20T19:13:17.197200+0000 mon.a (mon.0) 684 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-20T19:13:18.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:18 smithi018 bash[22763]: cluster 2024-09-20T19:13:17.197200+0000 mon.a (mon.0) 684 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-20T19:13:18.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:18 smithi018 bash[22763]: audit 2024-09-20T19:13:17.204556+0000 mon.a (mon.0) 685 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-20T19:13:18.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:18 smithi018 bash[22763]: audit 2024-09-20T19:13:17.204556+0000 mon.a (mon.0) 685 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-20T19:13:18.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:18 smithi018 bash[22763]: cluster 2024-09-20T19:13:17.211071+0000 mon.a (mon.0) 686 : cluster [DBG] osdmap e49: 5 total, 4 up, 5 in 2024-09-20T19:13:18.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:18 smithi018 bash[22763]: cluster 2024-09-20T19:13:17.211071+0000 mon.a (mon.0) 686 : cluster [DBG] osdmap e49: 5 total, 4 up, 5 in 2024-09-20T19:13:18.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:18 smithi018 bash[22763]: cephadm 2024-09-20T19:13:17.212366+0000 mgr.a (mgr.14152) 399 : cephadm [INF] osd.5 now down 2024-09-20T19:13:18.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:18 smithi018 bash[22763]: cephadm 2024-09-20T19:13:17.212366+0000 mgr.a (mgr.14152) 399 : cephadm [INF] osd.5 now down 2024-09-20T19:13:18.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:18 smithi018 bash[22763]: cephadm 2024-09-20T19:13:17.212874+0000 mgr.a (mgr.14152) 400 : cephadm [INF] Removing daemon osd.5 from smithi137 -- ports [] 2024-09-20T19:13:18.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:18 smithi018 bash[22763]: cephadm 2024-09-20T19:13:17.212874+0000 mgr.a (mgr.14152) 400 : cephadm [INF] Removing daemon osd.5 from smithi137 -- ports [] 2024-09-20T19:13:18.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:18 smithi082 bash[24745]: cluster 2024-09-20T19:13:16.553412+0000 mgr.a (mgr.14152) 395 : cluster [DBG] pgmap v327: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-20T19:13:18.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:18 smithi082 bash[24745]: cluster 2024-09-20T19:13:16.553412+0000 mgr.a (mgr.14152) 395 : cluster [DBG] pgmap v327: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-20T19:13:18.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:18 smithi082 bash[24745]: cephadm 2024-09-20T19:13:16.595996+0000 mgr.a (mgr.14152) 396 : cephadm [INF] Successfully zapped devices for osd.4 on smithi137 2024-09-20T19:13:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:18 smithi082 bash[24745]: cephadm 2024-09-20T19:13:16.595996+0000 mgr.a (mgr.14152) 396 : cephadm [INF] Successfully zapped devices for osd.4 on smithi137 2024-09-20T19:13:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:18 smithi082 bash[24745]: audit 2024-09-20T19:13:16.597106+0000 mgr.a (mgr.14152) 397 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-20T19:13:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:18 smithi082 bash[24745]: audit 2024-09-20T19:13:16.597106+0000 mgr.a (mgr.14152) 397 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-20T19:13:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:18 smithi082 bash[24745]: audit 2024-09-20T19:13:16.599951+0000 mgr.a (mgr.14152) 398 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-20T19:13:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:18 smithi082 bash[24745]: audit 2024-09-20T19:13:16.599951+0000 mgr.a (mgr.14152) 398 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-20T19:13:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:18 smithi082 bash[24745]: cluster 2024-09-20T19:13:17.197155+0000 mon.a (mon.0) 683 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-20T19:13:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:18 smithi082 bash[24745]: cluster 2024-09-20T19:13:17.197155+0000 mon.a (mon.0) 683 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-20T19:13:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:18 smithi082 bash[24745]: cluster 2024-09-20T19:13:17.197200+0000 mon.a (mon.0) 684 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-20T19:13:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:18 smithi082 bash[24745]: cluster 2024-09-20T19:13:17.197200+0000 mon.a (mon.0) 684 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-20T19:13:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:18 smithi082 bash[24745]: audit 2024-09-20T19:13:17.204556+0000 mon.a (mon.0) 685 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-20T19:13:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:18 smithi082 bash[24745]: audit 2024-09-20T19:13:17.204556+0000 mon.a (mon.0) 685 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-20T19:13:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:18 smithi082 bash[24745]: cluster 2024-09-20T19:13:17.211071+0000 mon.a (mon.0) 686 : cluster [DBG] osdmap e49: 5 total, 4 up, 5 in 2024-09-20T19:13:18.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:18 smithi082 bash[24745]: cluster 2024-09-20T19:13:17.211071+0000 mon.a (mon.0) 686 : cluster [DBG] osdmap e49: 5 total, 4 up, 5 in 2024-09-20T19:13:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:18 smithi082 bash[24745]: cephadm 2024-09-20T19:13:17.212366+0000 mgr.a (mgr.14152) 399 : cephadm [INF] osd.5 now down 2024-09-20T19:13:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:18 smithi082 bash[24745]: cephadm 2024-09-20T19:13:17.212366+0000 mgr.a (mgr.14152) 399 : cephadm [INF] osd.5 now down 2024-09-20T19:13:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:18 smithi082 bash[24745]: cephadm 2024-09-20T19:13:17.212874+0000 mgr.a (mgr.14152) 400 : cephadm [INF] Removing daemon osd.5 from smithi137 -- ports [] 2024-09-20T19:13:18.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:18 smithi082 bash[24745]: cephadm 2024-09-20T19:13:17.212874+0000 mgr.a (mgr.14152) 400 : cephadm [INF] Removing daemon osd.5 from smithi137 -- ports [] 2024-09-20T19:13:19.046 INFO:journalctl@ceph.osd.5.smithi137.stdout:Sep 20 19:13:18 smithi137 bash[37063]: ceph-9ac321c2-7782-11ef-baf5-efdc52797490-osd-5 2024-09-20T19:13:19.046 INFO:journalctl@ceph.osd.5.smithi137.stdout:Sep 20 19:13:18 smithi137 bash[37128]: Error response from daemon: No such container: ceph-9ac321c2-7782-11ef-baf5-efdc52797490-osd-5 2024-09-20T19:13:20.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:20 smithi018 bash[22763]: cluster 2024-09-20T19:13:18.553998+0000 mgr.a (mgr.14152) 401 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-09-20T19:13:20.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:20 smithi018 bash[22763]: cluster 2024-09-20T19:13:18.553998+0000 mgr.a (mgr.14152) 401 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-09-20T19:13:20.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:20 smithi082 bash[24745]: cluster 2024-09-20T19:13:18.553998+0000 mgr.a (mgr.14152) 401 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-09-20T19:13:20.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:20 smithi082 bash[24745]: cluster 2024-09-20T19:13:18.553998+0000 mgr.a (mgr.14152) 401 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-09-20T19:13:21.046 INFO:journalctl@ceph.osd.5.smithi137.stdout:Sep 20 19:13:20 smithi137 systemd[1]: ceph-9ac321c2-7782-11ef-baf5-efdc52797490@osd.5.service: Deactivated successfully. 2024-09-20T19:13:21.046 INFO:journalctl@ceph.osd.5.smithi137.stdout:Sep 20 19:13:20 smithi137 systemd[1]: Stopped Ceph osd.5 for 9ac321c2-7782-11ef-baf5-efdc52797490. 2024-09-20T19:13:21.046 INFO:journalctl@ceph.osd.5.smithi137.stdout:Sep 20 19:13:20 smithi137 systemd[1]: /etc/systemd/system/ceph-9ac321c2-7782-11ef-baf5-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-20T19:13:21.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:21 smithi018 bash[22763]: audit 2024-09-20T19:13:20.893616+0000 mon.a (mon.0) 687 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.5"} : dispatch 2024-09-20T19:13:21.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:21 smithi018 bash[22763]: audit 2024-09-20T19:13:20.893616+0000 mon.a (mon.0) 687 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.5"} : dispatch 2024-09-20T19:13:21.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:21 smithi018 bash[22763]: audit 2024-09-20T19:13:20.896441+0000 mon.a (mon.0) 688 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-20T19:13:21.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:21 smithi018 bash[22763]: audit 2024-09-20T19:13:20.896441+0000 mon.a (mon.0) 688 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-20T19:13:21.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:21 smithi018 bash[22763]: audit 2024-09-20T19:13:20.902432+0000 mon.a (mon.0) 689 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true} : dispatch 2024-09-20T19:13:21.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:21 smithi018 bash[22763]: audit 2024-09-20T19:13:20.902432+0000 mon.a (mon.0) 689 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true} : dispatch 2024-09-20T19:13:21.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:21 smithi018 bash[22763]: cluster 2024-09-20T19:13:20.903544+0000 mon.a (mon.0) 690 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-20T19:13:21.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:21 smithi018 bash[22763]: cluster 2024-09-20T19:13:20.903544+0000 mon.a (mon.0) 690 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-20T19:13:21.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:21 smithi018 bash[22763]: cluster 2024-09-20T19:13:20.903588+0000 mon.a (mon.0) 691 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-20T19:13:21.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:21 smithi018 bash[22763]: cluster 2024-09-20T19:13:20.903588+0000 mon.a (mon.0) 691 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-20T19:13:21.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:21 smithi018 bash[22763]: cluster 2024-09-20T19:13:20.903612+0000 mon.a (mon.0) 692 : cluster [INF] Cluster is now healthy 2024-09-20T19:13:21.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:21 smithi018 bash[22763]: cluster 2024-09-20T19:13:20.903612+0000 mon.a (mon.0) 692 : cluster [INF] Cluster is now healthy 2024-09-20T19:13:21.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:21 smithi018 bash[22763]: audit 2024-09-20T19:13:20.905573+0000 mon.a (mon.0) 693 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-20T19:13:21.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:21 smithi018 bash[22763]: audit 2024-09-20T19:13:20.905573+0000 mon.a (mon.0) 693 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-20T19:13:21.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:21 smithi018 bash[22763]: cluster 2024-09-20T19:13:20.910756+0000 mon.a (mon.0) 694 : cluster [DBG] osdmap e50: 4 total, 4 up, 4 in 2024-09-20T19:13:21.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:21 smithi018 bash[22763]: cluster 2024-09-20T19:13:20.910756+0000 mon.a (mon.0) 694 : cluster [DBG] osdmap e50: 4 total, 4 up, 4 in 2024-09-20T19:13:21.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:21 smithi082 bash[24745]: audit 2024-09-20T19:13:20.893616+0000 mon.a (mon.0) 687 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.5"} : dispatch 2024-09-20T19:13:21.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:21 smithi082 bash[24745]: audit 2024-09-20T19:13:20.893616+0000 mon.a (mon.0) 687 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.5"} : dispatch 2024-09-20T19:13:21.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:21 smithi082 bash[24745]: audit 2024-09-20T19:13:20.896441+0000 mon.a (mon.0) 688 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-20T19:13:21.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:21 smithi082 bash[24745]: audit 2024-09-20T19:13:20.896441+0000 mon.a (mon.0) 688 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-20T19:13:21.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:21 smithi082 bash[24745]: audit 2024-09-20T19:13:20.902432+0000 mon.a (mon.0) 689 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true} : dispatch 2024-09-20T19:13:21.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:21 smithi082 bash[24745]: audit 2024-09-20T19:13:20.902432+0000 mon.a (mon.0) 689 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true} : dispatch 2024-09-20T19:13:21.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:21 smithi082 bash[24745]: cluster 2024-09-20T19:13:20.903544+0000 mon.a (mon.0) 690 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-20T19:13:21.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:21 smithi082 bash[24745]: cluster 2024-09-20T19:13:20.903544+0000 mon.a (mon.0) 690 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-20T19:13:21.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:21 smithi082 bash[24745]: cluster 2024-09-20T19:13:20.903588+0000 mon.a (mon.0) 691 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-20T19:13:21.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:21 smithi082 bash[24745]: cluster 2024-09-20T19:13:20.903588+0000 mon.a (mon.0) 691 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-20T19:13:21.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:21 smithi082 bash[24745]: cluster 2024-09-20T19:13:20.903612+0000 mon.a (mon.0) 692 : cluster [INF] Cluster is now healthy 2024-09-20T19:13:21.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:21 smithi082 bash[24745]: cluster 2024-09-20T19:13:20.903612+0000 mon.a (mon.0) 692 : cluster [INF] Cluster is now healthy 2024-09-20T19:13:21.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:21 smithi082 bash[24745]: audit 2024-09-20T19:13:20.905573+0000 mon.a (mon.0) 693 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-20T19:13:21.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:21 smithi082 bash[24745]: audit 2024-09-20T19:13:20.905573+0000 mon.a (mon.0) 693 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-20T19:13:21.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:21 smithi082 bash[24745]: cluster 2024-09-20T19:13:20.910756+0000 mon.a (mon.0) 694 : cluster [DBG] osdmap e50: 4 total, 4 up, 4 in 2024-09-20T19:13:21.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:21 smithi082 bash[24745]: cluster 2024-09-20T19:13:20.910756+0000 mon.a (mon.0) 694 : cluster [DBG] osdmap e50: 4 total, 4 up, 4 in 2024-09-20T19:13:22.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:22 smithi018 bash[22763]: cluster 2024-09-20T19:13:20.554559+0000 mgr.a (mgr.14152) 402 : cluster [DBG] pgmap v330: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-20T19:13:22.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:22 smithi018 bash[22763]: cluster 2024-09-20T19:13:20.554559+0000 mgr.a (mgr.14152) 402 : cluster [DBG] pgmap v330: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-20T19:13:22.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:22 smithi018 bash[22763]: cephadm 2024-09-20T19:13:20.893009+0000 mgr.a (mgr.14152) 403 : cephadm [INF] Removing key for osd.5 2024-09-20T19:13:22.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:22 smithi018 bash[22763]: cephadm 2024-09-20T19:13:20.893009+0000 mgr.a (mgr.14152) 403 : cephadm [INF] Removing key for osd.5 2024-09-20T19:13:22.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:22 smithi018 bash[22763]: cephadm 2024-09-20T19:13:20.901832+0000 mgr.a (mgr.14152) 404 : cephadm [INF] Successfully removed osd.5 on smithi137 2024-09-20T19:13:22.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:22 smithi018 bash[22763]: cephadm 2024-09-20T19:13:20.901832+0000 mgr.a (mgr.14152) 404 : cephadm [INF] Successfully removed osd.5 on smithi137 2024-09-20T19:13:22.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:22 smithi018 bash[22763]: cephadm 2024-09-20T19:13:20.911939+0000 mgr.a (mgr.14152) 405 : cephadm [INF] Successfully purged osd.5 on smithi137 2024-09-20T19:13:22.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:22 smithi018 bash[22763]: cephadm 2024-09-20T19:13:20.911939+0000 mgr.a (mgr.14152) 405 : cephadm [INF] Successfully purged osd.5 on smithi137 2024-09-20T19:13:22.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:22 smithi018 bash[22763]: cephadm 2024-09-20T19:13:20.912158+0000 mgr.a (mgr.14152) 406 : cephadm [INF] Zapping devices for osd.5 on smithi137 2024-09-20T19:13:22.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:22 smithi018 bash[22763]: cephadm 2024-09-20T19:13:20.912158+0000 mgr.a (mgr.14152) 406 : cephadm [INF] Zapping devices for osd.5 on smithi137 2024-09-20T19:13:22.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:22 smithi082 bash[24745]: cluster 2024-09-20T19:13:20.554559+0000 mgr.a (mgr.14152) 402 : cluster [DBG] pgmap v330: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-20T19:13:22.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:22 smithi082 bash[24745]: cluster 2024-09-20T19:13:20.554559+0000 mgr.a (mgr.14152) 402 : cluster [DBG] pgmap v330: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-20T19:13:22.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:22 smithi082 bash[24745]: cephadm 2024-09-20T19:13:20.893009+0000 mgr.a (mgr.14152) 403 : cephadm [INF] Removing key for osd.5 2024-09-20T19:13:22.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:22 smithi082 bash[24745]: cephadm 2024-09-20T19:13:20.893009+0000 mgr.a (mgr.14152) 403 : cephadm [INF] Removing key for osd.5 2024-09-20T19:13:22.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:22 smithi082 bash[24745]: cephadm 2024-09-20T19:13:20.901832+0000 mgr.a (mgr.14152) 404 : cephadm [INF] Successfully removed osd.5 on smithi137 2024-09-20T19:13:22.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:22 smithi082 bash[24745]: cephadm 2024-09-20T19:13:20.901832+0000 mgr.a (mgr.14152) 404 : cephadm [INF] Successfully removed osd.5 on smithi137 2024-09-20T19:13:22.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:22 smithi082 bash[24745]: cephadm 2024-09-20T19:13:20.911939+0000 mgr.a (mgr.14152) 405 : cephadm [INF] Successfully purged osd.5 on smithi137 2024-09-20T19:13:22.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:22 smithi082 bash[24745]: cephadm 2024-09-20T19:13:20.911939+0000 mgr.a (mgr.14152) 405 : cephadm [INF] Successfully purged osd.5 on smithi137 2024-09-20T19:13:22.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:22 smithi082 bash[24745]: cephadm 2024-09-20T19:13:20.912158+0000 mgr.a (mgr.14152) 406 : cephadm [INF] Zapping devices for osd.5 on smithi137 2024-09-20T19:13:22.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:22 smithi082 bash[24745]: cephadm 2024-09-20T19:13:20.912158+0000 mgr.a (mgr.14152) 406 : cephadm [INF] Zapping devices for osd.5 on smithi137 2024-09-20T19:13:22.734 INFO:teuthology.orchestra.run.smithi018.stderr:++ ceph orch ps --hostname smithi137 2024-09-20T19:13:23.074 INFO:teuthology.orchestra.run.smithi018.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-09-20T19:13:23.074 INFO:teuthology.orchestra.run.smithi018.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-09-20T19:13:23.074 INFO:teuthology.orchestra.run.smithi018.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-20T19:13:23.374 INFO:teuthology.orchestra.run.smithi018.stderr:17 2024-09-20T19:13:23.387 INFO:teuthology.orchestra.run.smithi018.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-20T19:13:23.400 INFO:teuthology.orchestra.run.smithi018.stderr:++ cat crushmap.txt 2024-09-20T19:13:23.401 INFO:teuthology.orchestra.run.smithi018.stderr:+ CRUSH_MAP='# begin crush map 2024-09-20T19:13:23.401 INFO:teuthology.orchestra.run.smithi018.stderr:tunable choose_local_tries 0 2024-09-20T19:13:23.401 INFO:teuthology.orchestra.run.smithi018.stderr:tunable choose_local_fallback_tries 0 2024-09-20T19:13:23.401 INFO:teuthology.orchestra.run.smithi018.stderr:tunable choose_total_tries 50 2024-09-20T19:13:23.402 INFO:teuthology.orchestra.run.smithi018.stderr:tunable chooseleaf_descend_once 1 2024-09-20T19:13:23.402 INFO:teuthology.orchestra.run.smithi018.stderr:tunable chooseleaf_vary_r 1 2024-09-20T19:13:23.402 INFO:teuthology.orchestra.run.smithi018.stderr:tunable chooseleaf_stable 1 2024-09-20T19:13:23.402 INFO:teuthology.orchestra.run.smithi018.stderr:tunable straw_calc_version 1 2024-09-20T19:13:23.402 INFO:teuthology.orchestra.run.smithi018.stderr:tunable allowed_bucket_algs 54 2024-09-20T19:13:23.402 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-20T19:13:23.402 INFO:teuthology.orchestra.run.smithi018.stderr:# devices 2024-09-20T19:13:23.402 INFO:teuthology.orchestra.run.smithi018.stderr:device 0 osd.0 class ssd 2024-09-20T19:13:23.402 INFO:teuthology.orchestra.run.smithi018.stderr:device 1 osd.1 class ssd 2024-09-20T19:13:23.402 INFO:teuthology.orchestra.run.smithi018.stderr:device 2 osd.2 class ssd 2024-09-20T19:13:23.402 INFO:teuthology.orchestra.run.smithi018.stderr:device 3 osd.3 class ssd 2024-09-20T19:13:23.402 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-20T19:13:23.402 INFO:teuthology.orchestra.run.smithi018.stderr:# types 2024-09-20T19:13:23.403 INFO:teuthology.orchestra.run.smithi018.stderr:type 0 osd 2024-09-20T19:13:23.403 INFO:teuthology.orchestra.run.smithi018.stderr:type 1 host 2024-09-20T19:13:23.403 INFO:teuthology.orchestra.run.smithi018.stderr:type 2 chassis 2024-09-20T19:13:23.403 INFO:teuthology.orchestra.run.smithi018.stderr:type 3 rack 2024-09-20T19:13:23.403 INFO:teuthology.orchestra.run.smithi018.stderr:type 4 row 2024-09-20T19:13:23.403 INFO:teuthology.orchestra.run.smithi018.stderr:type 5 pdu 2024-09-20T19:13:23.403 INFO:teuthology.orchestra.run.smithi018.stderr:type 6 pod 2024-09-20T19:13:23.403 INFO:teuthology.orchestra.run.smithi018.stderr:type 7 room 2024-09-20T19:13:23.403 INFO:teuthology.orchestra.run.smithi018.stderr:type 8 datacenter 2024-09-20T19:13:23.403 INFO:teuthology.orchestra.run.smithi018.stderr:type 9 zone 2024-09-20T19:13:23.403 INFO:teuthology.orchestra.run.smithi018.stderr:type 10 region 2024-09-20T19:13:23.403 INFO:teuthology.orchestra.run.smithi018.stderr:type 11 root 2024-09-20T19:13:23.403 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-20T19:13:23.403 INFO:teuthology.orchestra.run.smithi018.stderr:# buckets 2024-09-20T19:13:23.403 INFO:teuthology.orchestra.run.smithi018.stderr:host smithi018 { 2024-09-20T19:13:23.404 INFO:teuthology.orchestra.run.smithi018.stderr: id -3 # do not change unnecessarily 2024-09-20T19:13:23.404 INFO:teuthology.orchestra.run.smithi018.stderr: id -4 class ssd # do not change unnecessarily 2024-09-20T19:13:23.404 INFO:teuthology.orchestra.run.smithi018.stderr: # weight 0.17459 2024-09-20T19:13:23.404 INFO:teuthology.orchestra.run.smithi018.stderr: alg straw2 2024-09-20T19:13:23.404 INFO:teuthology.orchestra.run.smithi018.stderr: hash 0 # rjenkins1 2024-09-20T19:13:23.404 INFO:teuthology.orchestra.run.smithi018.stderr: item osd.0 weight 0.08730 2024-09-20T19:13:23.404 INFO:teuthology.orchestra.run.smithi018.stderr: item osd.1 weight 0.08730 2024-09-20T19:13:23.404 INFO:teuthology.orchestra.run.smithi018.stderr:} 2024-09-20T19:13:23.404 INFO:teuthology.orchestra.run.smithi018.stderr:host smithi082 { 2024-09-20T19:13:23.404 INFO:teuthology.orchestra.run.smithi018.stderr: id -5 # do not change unnecessarily 2024-09-20T19:13:23.404 INFO:teuthology.orchestra.run.smithi018.stderr: id -6 class ssd # do not change unnecessarily 2024-09-20T19:13:23.404 INFO:teuthology.orchestra.run.smithi018.stderr: # weight 0.17459 2024-09-20T19:13:23.404 INFO:teuthology.orchestra.run.smithi018.stderr: alg straw2 2024-09-20T19:13:23.405 INFO:teuthology.orchestra.run.smithi018.stderr: hash 0 # rjenkins1 2024-09-20T19:13:23.405 INFO:teuthology.orchestra.run.smithi018.stderr: item osd.2 weight 0.08730 2024-09-20T19:13:23.405 INFO:teuthology.orchestra.run.smithi018.stderr: item osd.3 weight 0.08730 2024-09-20T19:13:23.405 INFO:teuthology.orchestra.run.smithi018.stderr:} 2024-09-20T19:13:23.405 INFO:teuthology.orchestra.run.smithi018.stderr:host smithi137 { 2024-09-20T19:13:23.405 INFO:teuthology.orchestra.run.smithi018.stderr: id -7 # do not change unnecessarily 2024-09-20T19:13:23.405 INFO:teuthology.orchestra.run.smithi018.stderr: id -8 class ssd # do not change unnecessarily 2024-09-20T19:13:23.405 INFO:teuthology.orchestra.run.smithi018.stderr: # weight 0.00000 2024-09-20T19:13:23.405 INFO:teuthology.orchestra.run.smithi018.stderr: alg straw2 2024-09-20T19:13:23.405 INFO:teuthology.orchestra.run.smithi018.stderr: hash 0 # rjenkins1 2024-09-20T19:13:23.406 INFO:teuthology.orchestra.run.smithi018.stderr:} 2024-09-20T19:13:23.406 INFO:teuthology.orchestra.run.smithi018.stderr:root default { 2024-09-20T19:13:23.406 INFO:teuthology.orchestra.run.smithi018.stderr: id -1 # do not change unnecessarily 2024-09-20T19:13:23.406 INFO:teuthology.orchestra.run.smithi018.stderr: id -2 class ssd # do not change unnecessarily 2024-09-20T19:13:23.406 INFO:teuthology.orchestra.run.smithi018.stderr: # weight 0.34918 2024-09-20T19:13:23.406 INFO:teuthology.orchestra.run.smithi018.stderr: alg straw2 2024-09-20T19:13:23.406 INFO:teuthology.orchestra.run.smithi018.stderr: hash 0 # rjenkins1 2024-09-20T19:13:23.406 INFO:teuthology.orchestra.run.smithi018.stderr: item smithi018 weight 0.17459 2024-09-20T19:13:23.406 INFO:teuthology.orchestra.run.smithi018.stderr: item smithi082 weight 0.17459 2024-09-20T19:13:23.406 INFO:teuthology.orchestra.run.smithi018.stderr: item smithi137 weight 0.00000 2024-09-20T19:13:23.406 INFO:teuthology.orchestra.run.smithi018.stderr:} 2024-09-20T19:13:23.406 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-20T19:13:23.406 INFO:teuthology.orchestra.run.smithi018.stderr:# rules 2024-09-20T19:13:23.407 INFO:teuthology.orchestra.run.smithi018.stderr:rule replicated_rule { 2024-09-20T19:13:23.407 INFO:teuthology.orchestra.run.smithi018.stderr: id 0 2024-09-20T19:13:23.407 INFO:teuthology.orchestra.run.smithi018.stderr: type replicated 2024-09-20T19:13:23.407 INFO:teuthology.orchestra.run.smithi018.stderr: step take default 2024-09-20T19:13:23.407 INFO:teuthology.orchestra.run.smithi018.stderr: step choose firstn 0 type osd 2024-09-20T19:13:23.407 INFO:teuthology.orchestra.run.smithi018.stderr: step emit 2024-09-20T19:13:23.407 INFO:teuthology.orchestra.run.smithi018.stderr:} 2024-09-20T19:13:23.407 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-20T19:13:23.407 INFO:teuthology.orchestra.run.smithi018.stderr:# end crush map' 2024-09-20T19:13:23.407 INFO:teuthology.orchestra.run.smithi018.stderr:+ grep -q smithi137 2024-09-20T19:13:23.407 INFO:teuthology.orchestra.run.smithi018.stderr:+ ceph orch host rm smithi137 --rm-crush-entry 2024-09-20T19:13:24.256 INFO:teuthology.orchestra.run.smithi018.stdout:Removed host 'smithi137' 2024-09-20T19:13:24.273 INFO:teuthology.orchestra.run.smithi018.stderr:+ sleep 30 2024-09-20T19:13:24.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:24 smithi018 bash[22763]: cluster 2024-09-20T19:13:22.555084+0000 mgr.a (mgr.14152) 407 : cluster [DBG] pgmap v332: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:24.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:24 smithi018 bash[22763]: cluster 2024-09-20T19:13:22.555084+0000 mgr.a (mgr.14152) 407 : cluster [DBG] pgmap v332: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:24.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:24 smithi018 bash[22763]: audit 2024-09-20T19:13:23.056015+0000 mgr.a (mgr.14152) 408 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi137", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:13:24.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:24 smithi018 bash[22763]: audit 2024-09-20T19:13:23.056015+0000 mgr.a (mgr.14152) 408 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi137", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:13:24.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:24 smithi018 bash[22763]: audit 2024-09-20T19:13:23.374119+0000 mon.a (mon.0) 695 : audit [DBG] from='client.? 172.21.15.18:0/3348839180' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-20T19:13:24.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:24 smithi018 bash[22763]: audit 2024-09-20T19:13:23.374119+0000 mon.a (mon.0) 695 : audit [DBG] from='client.? 172.21.15.18:0/3348839180' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-20T19:13:24.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:24 smithi018 bash[22763]: audit 2024-09-20T19:13:23.705575+0000 mon.a (mon.0) 696 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd crush remove", "name": "smithi137"} : dispatch 2024-09-20T19:13:24.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:24 smithi018 bash[22763]: audit 2024-09-20T19:13:23.705575+0000 mon.a (mon.0) 696 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd crush remove", "name": "smithi137"} : dispatch 2024-09-20T19:13:24.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:24 smithi082 bash[24745]: cluster 2024-09-20T19:13:22.555084+0000 mgr.a (mgr.14152) 407 : cluster [DBG] pgmap v332: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:24.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:24 smithi082 bash[24745]: cluster 2024-09-20T19:13:22.555084+0000 mgr.a (mgr.14152) 407 : cluster [DBG] pgmap v332: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:24.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:24 smithi082 bash[24745]: audit 2024-09-20T19:13:23.056015+0000 mgr.a (mgr.14152) 408 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi137", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:13:24.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:24 smithi082 bash[24745]: audit 2024-09-20T19:13:23.056015+0000 mgr.a (mgr.14152) 408 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi137", "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:13:24.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:24 smithi082 bash[24745]: audit 2024-09-20T19:13:23.374119+0000 mon.a (mon.0) 695 : audit [DBG] from='client.? 172.21.15.18:0/3348839180' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-20T19:13:24.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:24 smithi082 bash[24745]: audit 2024-09-20T19:13:23.374119+0000 mon.a (mon.0) 695 : audit [DBG] from='client.? 172.21.15.18:0/3348839180' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-20T19:13:24.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:24 smithi082 bash[24745]: audit 2024-09-20T19:13:23.705575+0000 mon.a (mon.0) 696 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd crush remove", "name": "smithi137"} : dispatch 2024-09-20T19:13:24.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:24 smithi082 bash[24745]: audit 2024-09-20T19:13:23.705575+0000 mon.a (mon.0) 696 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "osd crush remove", "name": "smithi137"} : dispatch 2024-09-20T19:13:25.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: audit 2024-09-20T19:13:23.704468+0000 mgr.a (mgr.14152) 409 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi137", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:13:25.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: audit 2024-09-20T19:13:23.704468+0000 mgr.a (mgr.14152) 409 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi137", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:13:25.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: audit 2024-09-20T19:13:24.231712+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi137"}]': finished 2024-09-20T19:13:25.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: audit 2024-09-20T19:13:24.231712+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi137"}]': finished 2024-09-20T19:13:25.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: cluster 2024-09-20T19:13:24.236363+0000 mon.a (mon.0) 698 : cluster [DBG] osdmap e51: 4 total, 4 up, 4 in 2024-09-20T19:13:25.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: cluster 2024-09-20T19:13:24.236363+0000 mon.a (mon.0) 698 : cluster [DBG] osdmap e51: 4 total, 4 up, 4 in 2024-09-20T19:13:25.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: audit 2024-09-20T19:13:24.243249+0000 mon.a (mon.0) 699 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:25.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: audit 2024-09-20T19:13:24.243249+0000 mon.a (mon.0) 699 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:25.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: audit 2024-09-20T19:13:24.244359+0000 mon.a (mon.0) 700 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix":"config-key del","key":"mgr/cephadm/host.smithi137"} : dispatch 2024-09-20T19:13:25.671 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: audit 2024-09-20T19:13:24.244359+0000 mon.a (mon.0) 700 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix":"config-key del","key":"mgr/cephadm/host.smithi137"} : dispatch 2024-09-20T19:13:25.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: audit 2024-09-20T19:13:24.249492+0000 mon.a (mon.0) 701 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi137"}]': finished 2024-09-20T19:13:25.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: audit 2024-09-20T19:13:24.249492+0000 mon.a (mon.0) 701 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi137"}]': finished 2024-09-20T19:13:25.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: cephadm 2024-09-20T19:13:24.255199+0000 mgr.a (mgr.14152) 410 : cephadm [INF] Removed host smithi137 2024-09-20T19:13:25.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: cephadm 2024-09-20T19:13:24.255199+0000 mgr.a (mgr.14152) 410 : cephadm [INF] Removed host smithi137 2024-09-20T19:13:25.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: cephadm 2024-09-20T19:13:24.255579+0000 mgr.a (mgr.14152) 411 : cephadm [INF] Successfully zapped devices for osd.5 on smithi137 2024-09-20T19:13:25.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: cephadm 2024-09-20T19:13:24.255579+0000 mgr.a (mgr.14152) 411 : cephadm [INF] Successfully zapped devices for osd.5 on smithi137 2024-09-20T19:13:25.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: audit 2024-09-20T19:13:24.261122+0000 mon.a (mon.0) 702 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:25.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: audit 2024-09-20T19:13:24.261122+0000 mon.a (mon.0) 702 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:25.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: audit 2024-09-20T19:13:24.288958+0000 mon.a (mon.0) 703 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:13:25.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: audit 2024-09-20T19:13:24.288958+0000 mon.a (mon.0) 703 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:13:25.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: audit 2024-09-20T19:13:24.290315+0000 mon.a (mon.0) 704 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:13:25.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: audit 2024-09-20T19:13:24.290315+0000 mon.a (mon.0) 704 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:13:25.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: audit 2024-09-20T19:13:24.291624+0000 mon.a (mon.0) 705 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:25.672 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:25 smithi018 bash[22763]: audit 2024-09-20T19:13:24.291624+0000 mon.a (mon.0) 705 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:25.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: audit 2024-09-20T19:13:23.704468+0000 mgr.a (mgr.14152) 409 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi137", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:13:25.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: audit 2024-09-20T19:13:23.704468+0000 mgr.a (mgr.14152) 409 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi137", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-20T19:13:25.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: audit 2024-09-20T19:13:24.231712+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi137"}]': finished 2024-09-20T19:13:25.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: audit 2024-09-20T19:13:24.231712+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi137"}]': finished 2024-09-20T19:13:25.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: cluster 2024-09-20T19:13:24.236363+0000 mon.a (mon.0) 698 : cluster [DBG] osdmap e51: 4 total, 4 up, 4 in 2024-09-20T19:13:25.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: cluster 2024-09-20T19:13:24.236363+0000 mon.a (mon.0) 698 : cluster [DBG] osdmap e51: 4 total, 4 up, 4 in 2024-09-20T19:13:25.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: audit 2024-09-20T19:13:24.243249+0000 mon.a (mon.0) 699 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:25.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: audit 2024-09-20T19:13:24.243249+0000 mon.a (mon.0) 699 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:25.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: audit 2024-09-20T19:13:24.244359+0000 mon.a (mon.0) 700 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix":"config-key del","key":"mgr/cephadm/host.smithi137"} : dispatch 2024-09-20T19:13:25.697 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: audit 2024-09-20T19:13:24.244359+0000 mon.a (mon.0) 700 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix":"config-key del","key":"mgr/cephadm/host.smithi137"} : dispatch 2024-09-20T19:13:25.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: audit 2024-09-20T19:13:24.249492+0000 mon.a (mon.0) 701 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi137"}]': finished 2024-09-20T19:13:25.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: audit 2024-09-20T19:13:24.249492+0000 mon.a (mon.0) 701 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi137"}]': finished 2024-09-20T19:13:25.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: cephadm 2024-09-20T19:13:24.255199+0000 mgr.a (mgr.14152) 410 : cephadm [INF] Removed host smithi137 2024-09-20T19:13:25.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: cephadm 2024-09-20T19:13:24.255199+0000 mgr.a (mgr.14152) 410 : cephadm [INF] Removed host smithi137 2024-09-20T19:13:25.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: cephadm 2024-09-20T19:13:24.255579+0000 mgr.a (mgr.14152) 411 : cephadm [INF] Successfully zapped devices for osd.5 on smithi137 2024-09-20T19:13:25.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: cephadm 2024-09-20T19:13:24.255579+0000 mgr.a (mgr.14152) 411 : cephadm [INF] Successfully zapped devices for osd.5 on smithi137 2024-09-20T19:13:25.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: audit 2024-09-20T19:13:24.261122+0000 mon.a (mon.0) 702 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:25.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: audit 2024-09-20T19:13:24.261122+0000 mon.a (mon.0) 702 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:25.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: audit 2024-09-20T19:13:24.288958+0000 mon.a (mon.0) 703 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:13:25.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: audit 2024-09-20T19:13:24.288958+0000 mon.a (mon.0) 703 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:13:25.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: audit 2024-09-20T19:13:24.290315+0000 mon.a (mon.0) 704 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:13:25.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: audit 2024-09-20T19:13:24.290315+0000 mon.a (mon.0) 704 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:13:25.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: audit 2024-09-20T19:13:24.291624+0000 mon.a (mon.0) 705 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:25.698 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:25 smithi082 bash[24745]: audit 2024-09-20T19:13:24.291624+0000 mon.a (mon.0) 705 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:26.369 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:26 smithi018 bash[22763]: cephadm 2024-09-20T19:13:24.288301+0000 mgr.a (mgr.14152) 412 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-20T19:13:26.369 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:26 smithi018 bash[22763]: cephadm 2024-09-20T19:13:24.288301+0000 mgr.a (mgr.14152) 412 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-20T19:13:26.369 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:26 smithi018 bash[22763]: cephadm 2024-09-20T19:13:24.293071+0000 mgr.a (mgr.14152) 413 : cephadm [INF] Reconfiguring daemon mon.a on smithi018 2024-09-20T19:13:26.369 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:26 smithi018 bash[22763]: cephadm 2024-09-20T19:13:24.293071+0000 mgr.a (mgr.14152) 413 : cephadm [INF] Reconfiguring daemon mon.a on smithi018 2024-09-20T19:13:26.369 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:26 smithi018 bash[22763]: cluster 2024-09-20T19:13:24.555581+0000 mgr.a (mgr.14152) 414 : cluster [DBG] pgmap v334: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:26.369 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:26 smithi018 bash[22763]: cluster 2024-09-20T19:13:24.555581+0000 mgr.a (mgr.14152) 414 : cluster [DBG] pgmap v334: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:26.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:26 smithi082 bash[24745]: cephadm 2024-09-20T19:13:24.288301+0000 mgr.a (mgr.14152) 412 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-20T19:13:26.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:26 smithi082 bash[24745]: cephadm 2024-09-20T19:13:24.288301+0000 mgr.a (mgr.14152) 412 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-20T19:13:26.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:26 smithi082 bash[24745]: cephadm 2024-09-20T19:13:24.293071+0000 mgr.a (mgr.14152) 413 : cephadm [INF] Reconfiguring daemon mon.a on smithi018 2024-09-20T19:13:26.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:26 smithi082 bash[24745]: cephadm 2024-09-20T19:13:24.293071+0000 mgr.a (mgr.14152) 413 : cephadm [INF] Reconfiguring daemon mon.a on smithi018 2024-09-20T19:13:26.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:26 smithi082 bash[24745]: cluster 2024-09-20T19:13:24.555581+0000 mgr.a (mgr.14152) 414 : cluster [DBG] pgmap v334: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:26.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:26 smithi082 bash[24745]: cluster 2024-09-20T19:13:24.555581+0000 mgr.a (mgr.14152) 414 : cluster [DBG] pgmap v334: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:28.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:27 smithi018 bash[22763]: cluster 2024-09-20T19:13:26.556180+0000 mgr.a (mgr.14152) 415 : cluster [DBG] pgmap v335: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:28.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:27 smithi018 bash[22763]: cluster 2024-09-20T19:13:26.556180+0000 mgr.a (mgr.14152) 415 : cluster [DBG] pgmap v335: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:28.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:27 smithi018 bash[22763]: audit 2024-09-20T19:13:26.844273+0000 mon.a (mon.0) 706 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:28.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:27 smithi018 bash[22763]: audit 2024-09-20T19:13:26.844273+0000 mon.a (mon.0) 706 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:28.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:27 smithi018 bash[22763]: audit 2024-09-20T19:13:26.849677+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:28.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:27 smithi018 bash[22763]: audit 2024-09-20T19:13:26.849677+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:28.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:27 smithi018 bash[22763]: cephadm 2024-09-20T19:13:26.850981+0000 mgr.a (mgr.14152) 416 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-09-20T19:13:28.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:27 smithi018 bash[22763]: cephadm 2024-09-20T19:13:26.850981+0000 mgr.a (mgr.14152) 416 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-09-20T19:13:28.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:27 smithi018 bash[22763]: audit 2024-09-20T19:13:26.851576+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-20T19:13:28.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:27 smithi018 bash[22763]: audit 2024-09-20T19:13:26.851576+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-20T19:13:28.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:27 smithi018 bash[22763]: audit 2024-09-20T19:13:26.853309+0000 mon.a (mon.0) 709 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-20T19:13:28.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:27 smithi018 bash[22763]: audit 2024-09-20T19:13:26.853309+0000 mon.a (mon.0) 709 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-20T19:13:28.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:27 smithi018 bash[22763]: audit 2024-09-20T19:13:26.854778+0000 mon.a (mon.0) 710 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:28.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:27 smithi018 bash[22763]: audit 2024-09-20T19:13:26.854778+0000 mon.a (mon.0) 710 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:28.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:27 smithi018 bash[22763]: cephadm 2024-09-20T19:13:26.856408+0000 mgr.a (mgr.14152) 417 : cephadm [INF] Reconfiguring daemon mgr.a on smithi018 2024-09-20T19:13:28.172 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:27 smithi018 bash[22763]: cephadm 2024-09-20T19:13:26.856408+0000 mgr.a (mgr.14152) 417 : cephadm [INF] Reconfiguring daemon mgr.a on smithi018 2024-09-20T19:13:28.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:27 smithi082 bash[24745]: cluster 2024-09-20T19:13:26.556180+0000 mgr.a (mgr.14152) 415 : cluster [DBG] pgmap v335: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:28.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:27 smithi082 bash[24745]: cluster 2024-09-20T19:13:26.556180+0000 mgr.a (mgr.14152) 415 : cluster [DBG] pgmap v335: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:28.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:27 smithi082 bash[24745]: audit 2024-09-20T19:13:26.844273+0000 mon.a (mon.0) 706 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:28.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:27 smithi082 bash[24745]: audit 2024-09-20T19:13:26.844273+0000 mon.a (mon.0) 706 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:28.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:27 smithi082 bash[24745]: audit 2024-09-20T19:13:26.849677+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:28.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:27 smithi082 bash[24745]: audit 2024-09-20T19:13:26.849677+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:28.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:27 smithi082 bash[24745]: cephadm 2024-09-20T19:13:26.850981+0000 mgr.a (mgr.14152) 416 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-09-20T19:13:28.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:27 smithi082 bash[24745]: cephadm 2024-09-20T19:13:26.850981+0000 mgr.a (mgr.14152) 416 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-09-20T19:13:28.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:27 smithi082 bash[24745]: audit 2024-09-20T19:13:26.851576+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-20T19:13:28.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:27 smithi082 bash[24745]: audit 2024-09-20T19:13:26.851576+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-20T19:13:28.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:27 smithi082 bash[24745]: audit 2024-09-20T19:13:26.853309+0000 mon.a (mon.0) 709 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-20T19:13:28.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:27 smithi082 bash[24745]: audit 2024-09-20T19:13:26.853309+0000 mon.a (mon.0) 709 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-20T19:13:28.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:27 smithi082 bash[24745]: audit 2024-09-20T19:13:26.854778+0000 mon.a (mon.0) 710 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:28.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:27 smithi082 bash[24745]: audit 2024-09-20T19:13:26.854778+0000 mon.a (mon.0) 710 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:28.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:27 smithi082 bash[24745]: cephadm 2024-09-20T19:13:26.856408+0000 mgr.a (mgr.14152) 417 : cephadm [INF] Reconfiguring daemon mgr.a on smithi018 2024-09-20T19:13:28.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:27 smithi082 bash[24745]: cephadm 2024-09-20T19:13:26.856408+0000 mgr.a (mgr.14152) 417 : cephadm [INF] Reconfiguring daemon mgr.a on smithi018 2024-09-20T19:13:30.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:30 smithi018 bash[22763]: cluster 2024-09-20T19:13:28.556681+0000 mgr.a (mgr.14152) 418 : cluster [DBG] pgmap v336: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:30.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:30 smithi018 bash[22763]: cluster 2024-09-20T19:13:28.556681+0000 mgr.a (mgr.14152) 418 : cluster [DBG] pgmap v336: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:30.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:30 smithi018 bash[22763]: audit 2024-09-20T19:13:29.111805+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:30.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:30 smithi018 bash[22763]: audit 2024-09-20T19:13:29.111805+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:30.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:30 smithi018 bash[22763]: audit 2024-09-20T19:13:29.119221+0000 mon.a (mon.0) 712 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:30.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:30 smithi018 bash[22763]: audit 2024-09-20T19:13:29.119221+0000 mon.a (mon.0) 712 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:30.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:30 smithi018 bash[22763]: cephadm 2024-09-20T19:13:29.120624+0000 mgr.a (mgr.14152) 419 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-09-20T19:13:30.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:30 smithi018 bash[22763]: cephadm 2024-09-20T19:13:29.120624+0000 mgr.a (mgr.14152) 419 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-09-20T19:13:30.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:30 smithi018 bash[22763]: audit 2024-09-20T19:13:29.121087+0000 mon.a (mon.0) 713 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-20T19:13:30.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:30 smithi018 bash[22763]: audit 2024-09-20T19:13:29.121087+0000 mon.a (mon.0) 713 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-20T19:13:30.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:30 smithi018 bash[22763]: audit 2024-09-20T19:13:29.122304+0000 mon.a (mon.0) 714 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:30.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:30 smithi018 bash[22763]: audit 2024-09-20T19:13:29.122304+0000 mon.a (mon.0) 714 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:30.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:30 smithi018 bash[22763]: cephadm 2024-09-20T19:13:29.124545+0000 mgr.a (mgr.14152) 420 : cephadm [INF] Reconfiguring daemon osd.0 on smithi018 2024-09-20T19:13:30.422 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:30 smithi018 bash[22763]: cephadm 2024-09-20T19:13:29.124545+0000 mgr.a (mgr.14152) 420 : cephadm [INF] Reconfiguring daemon osd.0 on smithi018 2024-09-20T19:13:30.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:30 smithi082 bash[24745]: cluster 2024-09-20T19:13:28.556681+0000 mgr.a (mgr.14152) 418 : cluster [DBG] pgmap v336: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:30.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:30 smithi082 bash[24745]: cluster 2024-09-20T19:13:28.556681+0000 mgr.a (mgr.14152) 418 : cluster [DBG] pgmap v336: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:30.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:30 smithi082 bash[24745]: audit 2024-09-20T19:13:29.111805+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:30.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:30 smithi082 bash[24745]: audit 2024-09-20T19:13:29.111805+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:30.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:30 smithi082 bash[24745]: audit 2024-09-20T19:13:29.119221+0000 mon.a (mon.0) 712 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:30.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:30 smithi082 bash[24745]: audit 2024-09-20T19:13:29.119221+0000 mon.a (mon.0) 712 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:30.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:30 smithi082 bash[24745]: cephadm 2024-09-20T19:13:29.120624+0000 mgr.a (mgr.14152) 419 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-09-20T19:13:30.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:30 smithi082 bash[24745]: cephadm 2024-09-20T19:13:29.120624+0000 mgr.a (mgr.14152) 419 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-09-20T19:13:30.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:30 smithi082 bash[24745]: audit 2024-09-20T19:13:29.121087+0000 mon.a (mon.0) 713 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-20T19:13:30.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:30 smithi082 bash[24745]: audit 2024-09-20T19:13:29.121087+0000 mon.a (mon.0) 713 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-20T19:13:30.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:30 smithi082 bash[24745]: audit 2024-09-20T19:13:29.122304+0000 mon.a (mon.0) 714 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:30.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:30 smithi082 bash[24745]: audit 2024-09-20T19:13:29.122304+0000 mon.a (mon.0) 714 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:30.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:30 smithi082 bash[24745]: cephadm 2024-09-20T19:13:29.124545+0000 mgr.a (mgr.14152) 420 : cephadm [INF] Reconfiguring daemon osd.0 on smithi018 2024-09-20T19:13:30.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:30 smithi082 bash[24745]: cephadm 2024-09-20T19:13:29.124545+0000 mgr.a (mgr.14152) 420 : cephadm [INF] Reconfiguring daemon osd.0 on smithi018 2024-09-20T19:13:32.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:32 smithi018 bash[22763]: cluster 2024-09-20T19:13:30.557168+0000 mgr.a (mgr.14152) 421 : cluster [DBG] pgmap v337: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:32.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:32 smithi018 bash[22763]: cluster 2024-09-20T19:13:30.557168+0000 mgr.a (mgr.14152) 421 : cluster [DBG] pgmap v337: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:32.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:32 smithi018 bash[22763]: audit 2024-09-20T19:13:31.541633+0000 mon.a (mon.0) 715 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:32.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:32 smithi018 bash[22763]: audit 2024-09-20T19:13:31.541633+0000 mon.a (mon.0) 715 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:32.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:32 smithi018 bash[22763]: audit 2024-09-20T19:13:31.548581+0000 mon.a (mon.0) 716 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:32.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:32 smithi018 bash[22763]: audit 2024-09-20T19:13:31.548581+0000 mon.a (mon.0) 716 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:32.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:32 smithi018 bash[22763]: audit 2024-09-20T19:13:31.550704+0000 mon.a (mon.0) 717 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-20T19:13:32.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:32 smithi018 bash[22763]: audit 2024-09-20T19:13:31.550704+0000 mon.a (mon.0) 717 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-20T19:13:32.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:32 smithi018 bash[22763]: audit 2024-09-20T19:13:31.552106+0000 mon.a (mon.0) 718 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:32.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:32 smithi018 bash[22763]: audit 2024-09-20T19:13:31.552106+0000 mon.a (mon.0) 718 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:32.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:32 smithi082 bash[24745]: cluster 2024-09-20T19:13:30.557168+0000 mgr.a (mgr.14152) 421 : cluster [DBG] pgmap v337: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:32.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:32 smithi082 bash[24745]: cluster 2024-09-20T19:13:30.557168+0000 mgr.a (mgr.14152) 421 : cluster [DBG] pgmap v337: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:32.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:32 smithi082 bash[24745]: audit 2024-09-20T19:13:31.541633+0000 mon.a (mon.0) 715 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:32.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:32 smithi082 bash[24745]: audit 2024-09-20T19:13:31.541633+0000 mon.a (mon.0) 715 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:32.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:32 smithi082 bash[24745]: audit 2024-09-20T19:13:31.548581+0000 mon.a (mon.0) 716 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:32.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:32 smithi082 bash[24745]: audit 2024-09-20T19:13:31.548581+0000 mon.a (mon.0) 716 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:32.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:32 smithi082 bash[24745]: audit 2024-09-20T19:13:31.550704+0000 mon.a (mon.0) 717 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-20T19:13:32.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:32 smithi082 bash[24745]: audit 2024-09-20T19:13:31.550704+0000 mon.a (mon.0) 717 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-20T19:13:32.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:32 smithi082 bash[24745]: audit 2024-09-20T19:13:31.552106+0000 mon.a (mon.0) 718 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:32.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:32 smithi082 bash[24745]: audit 2024-09-20T19:13:31.552106+0000 mon.a (mon.0) 718 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:33.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:33 smithi018 bash[22763]: cephadm 2024-09-20T19:13:31.550138+0000 mgr.a (mgr.14152) 422 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-09-20T19:13:33.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:33 smithi018 bash[22763]: cephadm 2024-09-20T19:13:31.550138+0000 mgr.a (mgr.14152) 422 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-09-20T19:13:33.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:33 smithi018 bash[22763]: cephadm 2024-09-20T19:13:31.554570+0000 mgr.a (mgr.14152) 423 : cephadm [INF] Reconfiguring daemon osd.1 on smithi018 2024-09-20T19:13:33.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:33 smithi018 bash[22763]: cephadm 2024-09-20T19:13:31.554570+0000 mgr.a (mgr.14152) 423 : cephadm [INF] Reconfiguring daemon osd.1 on smithi018 2024-09-20T19:13:33.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:33 smithi082 bash[24745]: cephadm 2024-09-20T19:13:31.550138+0000 mgr.a (mgr.14152) 422 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-09-20T19:13:33.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:33 smithi082 bash[24745]: cephadm 2024-09-20T19:13:31.550138+0000 mgr.a (mgr.14152) 422 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-09-20T19:13:33.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:33 smithi082 bash[24745]: cephadm 2024-09-20T19:13:31.554570+0000 mgr.a (mgr.14152) 423 : cephadm [INF] Reconfiguring daemon osd.1 on smithi018 2024-09-20T19:13:33.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:33 smithi082 bash[24745]: cephadm 2024-09-20T19:13:31.554570+0000 mgr.a (mgr.14152) 423 : cephadm [INF] Reconfiguring daemon osd.1 on smithi018 2024-09-20T19:13:34.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:34 smithi018 bash[22763]: cluster 2024-09-20T19:13:32.557730+0000 mgr.a (mgr.14152) 424 : cluster [DBG] pgmap v338: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:34.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:34 smithi018 bash[22763]: cluster 2024-09-20T19:13:32.557730+0000 mgr.a (mgr.14152) 424 : cluster [DBG] pgmap v338: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:34.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:34 smithi018 bash[22763]: audit 2024-09-20T19:13:34.020424+0000 mon.a (mon.0) 719 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:34.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:34 smithi018 bash[22763]: audit 2024-09-20T19:13:34.020424+0000 mon.a (mon.0) 719 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:34.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:34 smithi018 bash[22763]: audit 2024-09-20T19:13:34.027674+0000 mon.a (mon.0) 720 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:34.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:34 smithi018 bash[22763]: audit 2024-09-20T19:13:34.027674+0000 mon.a (mon.0) 720 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:34.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:34 smithi018 bash[22763]: audit 2024-09-20T19:13:34.029707+0000 mon.a (mon.0) 721 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:13:34.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:34 smithi018 bash[22763]: audit 2024-09-20T19:13:34.029707+0000 mon.a (mon.0) 721 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:13:34.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:34 smithi018 bash[22763]: audit 2024-09-20T19:13:34.031504+0000 mon.a (mon.0) 722 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:13:34.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:34 smithi018 bash[22763]: audit 2024-09-20T19:13:34.031504+0000 mon.a (mon.0) 722 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:13:34.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:34 smithi018 bash[22763]: audit 2024-09-20T19:13:34.033116+0000 mon.a (mon.0) 723 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:34.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:34 smithi018 bash[22763]: audit 2024-09-20T19:13:34.033116+0000 mon.a (mon.0) 723 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:34.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:34 smithi082 bash[24745]: cluster 2024-09-20T19:13:32.557730+0000 mgr.a (mgr.14152) 424 : cluster [DBG] pgmap v338: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:34.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:34 smithi082 bash[24745]: cluster 2024-09-20T19:13:32.557730+0000 mgr.a (mgr.14152) 424 : cluster [DBG] pgmap v338: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:34.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:34 smithi082 bash[24745]: audit 2024-09-20T19:13:34.020424+0000 mon.a (mon.0) 719 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:34.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:34 smithi082 bash[24745]: audit 2024-09-20T19:13:34.020424+0000 mon.a (mon.0) 719 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:34.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:34 smithi082 bash[24745]: audit 2024-09-20T19:13:34.027674+0000 mon.a (mon.0) 720 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:34.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:34 smithi082 bash[24745]: audit 2024-09-20T19:13:34.027674+0000 mon.a (mon.0) 720 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:34.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:34 smithi082 bash[24745]: audit 2024-09-20T19:13:34.029707+0000 mon.a (mon.0) 721 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:13:34.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:34 smithi082 bash[24745]: audit 2024-09-20T19:13:34.029707+0000 mon.a (mon.0) 721 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-20T19:13:34.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:34 smithi082 bash[24745]: audit 2024-09-20T19:13:34.031504+0000 mon.a (mon.0) 722 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:13:34.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:34 smithi082 bash[24745]: audit 2024-09-20T19:13:34.031504+0000 mon.a (mon.0) 722 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-20T19:13:34.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:34 smithi082 bash[24745]: audit 2024-09-20T19:13:34.033116+0000 mon.a (mon.0) 723 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:34.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:34 smithi082 bash[24745]: audit 2024-09-20T19:13:34.033116+0000 mon.a (mon.0) 723 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:35.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:35 smithi018 bash[22763]: cephadm 2024-09-20T19:13:34.029112+0000 mgr.a (mgr.14152) 425 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-20T19:13:35.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:35 smithi018 bash[22763]: cephadm 2024-09-20T19:13:34.029112+0000 mgr.a (mgr.14152) 425 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-20T19:13:35.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:35 smithi018 bash[22763]: cephadm 2024-09-20T19:13:34.034767+0000 mgr.a (mgr.14152) 426 : cephadm [INF] Reconfiguring daemon mon.b on smithi082 2024-09-20T19:13:35.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:35 smithi018 bash[22763]: cephadm 2024-09-20T19:13:34.034767+0000 mgr.a (mgr.14152) 426 : cephadm [INF] Reconfiguring daemon mon.b on smithi082 2024-09-20T19:13:35.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:35 smithi082 bash[24745]: cephadm 2024-09-20T19:13:34.029112+0000 mgr.a (mgr.14152) 425 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-20T19:13:35.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:35 smithi082 bash[24745]: cephadm 2024-09-20T19:13:34.029112+0000 mgr.a (mgr.14152) 425 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-20T19:13:35.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:35 smithi082 bash[24745]: cephadm 2024-09-20T19:13:34.034767+0000 mgr.a (mgr.14152) 426 : cephadm [INF] Reconfiguring daemon mon.b on smithi082 2024-09-20T19:13:35.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:35 smithi082 bash[24745]: cephadm 2024-09-20T19:13:34.034767+0000 mgr.a (mgr.14152) 426 : cephadm [INF] Reconfiguring daemon mon.b on smithi082 2024-09-20T19:13:36.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:36 smithi018 bash[22763]: cluster 2024-09-20T19:13:34.558235+0000 mgr.a (mgr.14152) 427 : cluster [DBG] pgmap v339: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:36.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:36 smithi018 bash[22763]: cluster 2024-09-20T19:13:34.558235+0000 mgr.a (mgr.14152) 427 : cluster [DBG] pgmap v339: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:36.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:36 smithi082 bash[24745]: cluster 2024-09-20T19:13:34.558235+0000 mgr.a (mgr.14152) 427 : cluster [DBG] pgmap v339: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:36.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:36 smithi082 bash[24745]: cluster 2024-09-20T19:13:34.558235+0000 mgr.a (mgr.14152) 427 : cluster [DBG] pgmap v339: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:37.920 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:37 smithi018 bash[22763]: audit 2024-09-20T19:13:36.526615+0000 mon.a (mon.0) 724 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:37.920 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:37 smithi018 bash[22763]: audit 2024-09-20T19:13:36.526615+0000 mon.a (mon.0) 724 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:37.920 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:37 smithi018 bash[22763]: audit 2024-09-20T19:13:36.534828+0000 mon.a (mon.0) 725 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:37.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:37 smithi018 bash[22763]: audit 2024-09-20T19:13:36.534828+0000 mon.a (mon.0) 725 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:37.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:37 smithi018 bash[22763]: cephadm 2024-09-20T19:13:36.536329+0000 mgr.a (mgr.14152) 428 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-09-20T19:13:37.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:37 smithi018 bash[22763]: cephadm 2024-09-20T19:13:36.536329+0000 mgr.a (mgr.14152) 428 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-09-20T19:13:37.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:37 smithi018 bash[22763]: audit 2024-09-20T19:13:36.536998+0000 mon.a (mon.0) 726 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-20T19:13:37.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:37 smithi018 bash[22763]: audit 2024-09-20T19:13:36.536998+0000 mon.a (mon.0) 726 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-20T19:13:37.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:37 smithi018 bash[22763]: audit 2024-09-20T19:13:36.538854+0000 mon.a (mon.0) 727 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-20T19:13:37.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:37 smithi018 bash[22763]: audit 2024-09-20T19:13:36.538854+0000 mon.a (mon.0) 727 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-20T19:13:37.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:37 smithi018 bash[22763]: audit 2024-09-20T19:13:36.540413+0000 mon.a (mon.0) 728 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:37.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:37 smithi018 bash[22763]: audit 2024-09-20T19:13:36.540413+0000 mon.a (mon.0) 728 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:37.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:37 smithi018 bash[22763]: cephadm 2024-09-20T19:13:36.542277+0000 mgr.a (mgr.14152) 429 : cephadm [INF] Reconfiguring daemon mgr.b on smithi082 2024-09-20T19:13:37.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:37 smithi018 bash[22763]: cephadm 2024-09-20T19:13:36.542277+0000 mgr.a (mgr.14152) 429 : cephadm [INF] Reconfiguring daemon mgr.b on smithi082 2024-09-20T19:13:37.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:37 smithi018 bash[22763]: cluster 2024-09-20T19:13:36.558748+0000 mgr.a (mgr.14152) 430 : cluster [DBG] pgmap v340: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:37.921 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:37 smithi018 bash[22763]: cluster 2024-09-20T19:13:36.558748+0000 mgr.a (mgr.14152) 430 : cluster [DBG] pgmap v340: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:37.946 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:37 smithi082 bash[24745]: audit 2024-09-20T19:13:36.526615+0000 mon.a (mon.0) 724 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:37.946 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:37 smithi082 bash[24745]: audit 2024-09-20T19:13:36.526615+0000 mon.a (mon.0) 724 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:37.946 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:37 smithi082 bash[24745]: audit 2024-09-20T19:13:36.534828+0000 mon.a (mon.0) 725 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:37.946 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:37 smithi082 bash[24745]: audit 2024-09-20T19:13:36.534828+0000 mon.a (mon.0) 725 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:37.946 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:37 smithi082 bash[24745]: cephadm 2024-09-20T19:13:36.536329+0000 mgr.a (mgr.14152) 428 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-09-20T19:13:37.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:37 smithi082 bash[24745]: cephadm 2024-09-20T19:13:36.536329+0000 mgr.a (mgr.14152) 428 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-09-20T19:13:37.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:37 smithi082 bash[24745]: audit 2024-09-20T19:13:36.536998+0000 mon.a (mon.0) 726 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-20T19:13:37.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:37 smithi082 bash[24745]: audit 2024-09-20T19:13:36.536998+0000 mon.a (mon.0) 726 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-20T19:13:37.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:37 smithi082 bash[24745]: audit 2024-09-20T19:13:36.538854+0000 mon.a (mon.0) 727 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-20T19:13:37.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:37 smithi082 bash[24745]: audit 2024-09-20T19:13:36.538854+0000 mon.a (mon.0) 727 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-20T19:13:37.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:37 smithi082 bash[24745]: audit 2024-09-20T19:13:36.540413+0000 mon.a (mon.0) 728 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:37.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:37 smithi082 bash[24745]: audit 2024-09-20T19:13:36.540413+0000 mon.a (mon.0) 728 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:37.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:37 smithi082 bash[24745]: cephadm 2024-09-20T19:13:36.542277+0000 mgr.a (mgr.14152) 429 : cephadm [INF] Reconfiguring daemon mgr.b on smithi082 2024-09-20T19:13:37.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:37 smithi082 bash[24745]: cephadm 2024-09-20T19:13:36.542277+0000 mgr.a (mgr.14152) 429 : cephadm [INF] Reconfiguring daemon mgr.b on smithi082 2024-09-20T19:13:37.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:37 smithi082 bash[24745]: cluster 2024-09-20T19:13:36.558748+0000 mgr.a (mgr.14152) 430 : cluster [DBG] pgmap v340: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:37.947 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:37 smithi082 bash[24745]: cluster 2024-09-20T19:13:36.558748+0000 mgr.a (mgr.14152) 430 : cluster [DBG] pgmap v340: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:40.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:39 smithi018 bash[22763]: cluster 2024-09-20T19:13:38.559255+0000 mgr.a (mgr.14152) 431 : cluster [DBG] pgmap v341: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:40.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:39 smithi018 bash[22763]: cluster 2024-09-20T19:13:38.559255+0000 mgr.a (mgr.14152) 431 : cluster [DBG] pgmap v341: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:40.170 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:39 smithi018 bash[22763]: audit 2024-09-20T19:13:38.852711+0000 mon.a (mon.0) 729 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:40.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:39 smithi018 bash[22763]: audit 2024-09-20T19:13:38.852711+0000 mon.a (mon.0) 729 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:40.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:39 smithi018 bash[22763]: audit 2024-09-20T19:13:38.860552+0000 mon.a (mon.0) 730 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:40.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:39 smithi018 bash[22763]: audit 2024-09-20T19:13:38.860552+0000 mon.a (mon.0) 730 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:40.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:39 smithi018 bash[22763]: cephadm 2024-09-20T19:13:38.862264+0000 mgr.a (mgr.14152) 432 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-09-20T19:13:40.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:39 smithi018 bash[22763]: cephadm 2024-09-20T19:13:38.862264+0000 mgr.a (mgr.14152) 432 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-09-20T19:13:40.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:39 smithi018 bash[22763]: audit 2024-09-20T19:13:38.862876+0000 mon.a (mon.0) 731 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-20T19:13:40.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:39 smithi018 bash[22763]: audit 2024-09-20T19:13:38.862876+0000 mon.a (mon.0) 731 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-20T19:13:40.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:39 smithi018 bash[22763]: audit 2024-09-20T19:13:38.864525+0000 mon.a (mon.0) 732 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:40.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:39 smithi018 bash[22763]: audit 2024-09-20T19:13:38.864525+0000 mon.a (mon.0) 732 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:40.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:39 smithi018 bash[22763]: cephadm 2024-09-20T19:13:38.867206+0000 mgr.a (mgr.14152) 433 : cephadm [INF] Reconfiguring daemon osd.2 on smithi082 2024-09-20T19:13:40.171 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:39 smithi018 bash[22763]: cephadm 2024-09-20T19:13:38.867206+0000 mgr.a (mgr.14152) 433 : cephadm [INF] Reconfiguring daemon osd.2 on smithi082 2024-09-20T19:13:40.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:39 smithi082 bash[24745]: cluster 2024-09-20T19:13:38.559255+0000 mgr.a (mgr.14152) 431 : cluster [DBG] pgmap v341: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:40.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:39 smithi082 bash[24745]: cluster 2024-09-20T19:13:38.559255+0000 mgr.a (mgr.14152) 431 : cluster [DBG] pgmap v341: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:40.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:39 smithi082 bash[24745]: audit 2024-09-20T19:13:38.852711+0000 mon.a (mon.0) 729 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:40.196 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:39 smithi082 bash[24745]: audit 2024-09-20T19:13:38.852711+0000 mon.a (mon.0) 729 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:40.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:39 smithi082 bash[24745]: audit 2024-09-20T19:13:38.860552+0000 mon.a (mon.0) 730 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:40.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:39 smithi082 bash[24745]: audit 2024-09-20T19:13:38.860552+0000 mon.a (mon.0) 730 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:40.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:39 smithi082 bash[24745]: cephadm 2024-09-20T19:13:38.862264+0000 mgr.a (mgr.14152) 432 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-09-20T19:13:40.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:39 smithi082 bash[24745]: cephadm 2024-09-20T19:13:38.862264+0000 mgr.a (mgr.14152) 432 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-09-20T19:13:40.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:39 smithi082 bash[24745]: audit 2024-09-20T19:13:38.862876+0000 mon.a (mon.0) 731 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-20T19:13:40.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:39 smithi082 bash[24745]: audit 2024-09-20T19:13:38.862876+0000 mon.a (mon.0) 731 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-20T19:13:40.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:39 smithi082 bash[24745]: audit 2024-09-20T19:13:38.864525+0000 mon.a (mon.0) 732 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:40.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:39 smithi082 bash[24745]: audit 2024-09-20T19:13:38.864525+0000 mon.a (mon.0) 732 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:40.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:39 smithi082 bash[24745]: cephadm 2024-09-20T19:13:38.867206+0000 mgr.a (mgr.14152) 433 : cephadm [INF] Reconfiguring daemon osd.2 on smithi082 2024-09-20T19:13:40.197 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:39 smithi082 bash[24745]: cephadm 2024-09-20T19:13:38.867206+0000 mgr.a (mgr.14152) 433 : cephadm [INF] Reconfiguring daemon osd.2 on smithi082 2024-09-20T19:13:42.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:42 smithi018 bash[22763]: cluster 2024-09-20T19:13:40.559761+0000 mgr.a (mgr.14152) 434 : cluster [DBG] pgmap v342: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:42.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:42 smithi018 bash[22763]: cluster 2024-09-20T19:13:40.559761+0000 mgr.a (mgr.14152) 434 : cluster [DBG] pgmap v342: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:42.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:42 smithi018 bash[22763]: audit 2024-09-20T19:13:41.154231+0000 mon.a (mon.0) 733 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:42.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:42 smithi018 bash[22763]: audit 2024-09-20T19:13:41.154231+0000 mon.a (mon.0) 733 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:42.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:42 smithi018 bash[22763]: audit 2024-09-20T19:13:41.162439+0000 mon.a (mon.0) 734 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:42.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:42 smithi018 bash[22763]: audit 2024-09-20T19:13:41.162439+0000 mon.a (mon.0) 734 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:42.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:42 smithi018 bash[22763]: cephadm 2024-09-20T19:13:41.164102+0000 mgr.a (mgr.14152) 435 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-09-20T19:13:42.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:42 smithi018 bash[22763]: cephadm 2024-09-20T19:13:41.164102+0000 mgr.a (mgr.14152) 435 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-09-20T19:13:42.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:42 smithi018 bash[22763]: audit 2024-09-20T19:13:41.164750+0000 mon.a (mon.0) 735 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-20T19:13:42.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:42 smithi018 bash[22763]: audit 2024-09-20T19:13:41.164750+0000 mon.a (mon.0) 735 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-20T19:13:42.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:42 smithi018 bash[22763]: audit 2024-09-20T19:13:41.166410+0000 mon.a (mon.0) 736 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:42.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:42 smithi018 bash[22763]: audit 2024-09-20T19:13:41.166410+0000 mon.a (mon.0) 736 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:42.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:42 smithi018 bash[22763]: cephadm 2024-09-20T19:13:41.169010+0000 mgr.a (mgr.14152) 436 : cephadm [INF] Reconfiguring daemon osd.3 on smithi082 2024-09-20T19:13:42.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:42 smithi018 bash[22763]: cephadm 2024-09-20T19:13:41.169010+0000 mgr.a (mgr.14152) 436 : cephadm [INF] Reconfiguring daemon osd.3 on smithi082 2024-09-20T19:13:42.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:42 smithi082 bash[24745]: cluster 2024-09-20T19:13:40.559761+0000 mgr.a (mgr.14152) 434 : cluster [DBG] pgmap v342: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:42.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:42 smithi082 bash[24745]: cluster 2024-09-20T19:13:40.559761+0000 mgr.a (mgr.14152) 434 : cluster [DBG] pgmap v342: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:42.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:42 smithi082 bash[24745]: audit 2024-09-20T19:13:41.154231+0000 mon.a (mon.0) 733 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:42.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:42 smithi082 bash[24745]: audit 2024-09-20T19:13:41.154231+0000 mon.a (mon.0) 733 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:42.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:42 smithi082 bash[24745]: audit 2024-09-20T19:13:41.162439+0000 mon.a (mon.0) 734 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:42.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:42 smithi082 bash[24745]: audit 2024-09-20T19:13:41.162439+0000 mon.a (mon.0) 734 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:42.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:42 smithi082 bash[24745]: cephadm 2024-09-20T19:13:41.164102+0000 mgr.a (mgr.14152) 435 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-09-20T19:13:42.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:42 smithi082 bash[24745]: cephadm 2024-09-20T19:13:41.164102+0000 mgr.a (mgr.14152) 435 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-09-20T19:13:42.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:42 smithi082 bash[24745]: audit 2024-09-20T19:13:41.164750+0000 mon.a (mon.0) 735 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-20T19:13:42.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:42 smithi082 bash[24745]: audit 2024-09-20T19:13:41.164750+0000 mon.a (mon.0) 735 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-20T19:13:42.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:42 smithi082 bash[24745]: audit 2024-09-20T19:13:41.166410+0000 mon.a (mon.0) 736 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:42.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:42 smithi082 bash[24745]: audit 2024-09-20T19:13:41.166410+0000 mon.a (mon.0) 736 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:42.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:42 smithi082 bash[24745]: cephadm 2024-09-20T19:13:41.169010+0000 mgr.a (mgr.14152) 436 : cephadm [INF] Reconfiguring daemon osd.3 on smithi082 2024-09-20T19:13:42.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:42 smithi082 bash[24745]: cephadm 2024-09-20T19:13:41.169010+0000 mgr.a (mgr.14152) 436 : cephadm [INF] Reconfiguring daemon osd.3 on smithi082 2024-09-20T19:13:44.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:44 smithi018 bash[22763]: cluster 2024-09-20T19:13:42.560348+0000 mgr.a (mgr.14152) 437 : cluster [DBG] pgmap v343: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:44.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:44 smithi018 bash[22763]: cluster 2024-09-20T19:13:42.560348+0000 mgr.a (mgr.14152) 437 : cluster [DBG] pgmap v343: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:44.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:44 smithi018 bash[22763]: audit 2024-09-20T19:13:43.487262+0000 mon.a (mon.0) 737 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:44.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:44 smithi018 bash[22763]: audit 2024-09-20T19:13:43.487262+0000 mon.a (mon.0) 737 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:44.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:44 smithi018 bash[22763]: audit 2024-09-20T19:13:43.495326+0000 mon.a (mon.0) 738 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:44.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:44 smithi018 bash[22763]: audit 2024-09-20T19:13:43.495326+0000 mon.a (mon.0) 738 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:44.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:44 smithi018 bash[22763]: audit 2024-09-20T19:13:43.498033+0000 mon.a (mon.0) 739 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:13:44.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:44 smithi018 bash[22763]: audit 2024-09-20T19:13:43.498033+0000 mon.a (mon.0) 739 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:13:44.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:44 smithi018 bash[22763]: audit 2024-09-20T19:13:44.067752+0000 mon.a (mon.0) 740 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:44.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:44 smithi018 bash[22763]: audit 2024-09-20T19:13:44.067752+0000 mon.a (mon.0) 740 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:44.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:44 smithi018 bash[22763]: audit 2024-09-20T19:13:44.071161+0000 mon.a (mon.0) 741 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:44.421 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:44 smithi018 bash[22763]: audit 2024-09-20T19:13:44.071161+0000 mon.a (mon.0) 741 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:44.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:44 smithi082 bash[24745]: cluster 2024-09-20T19:13:42.560348+0000 mgr.a (mgr.14152) 437 : cluster [DBG] pgmap v343: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:44.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:44 smithi082 bash[24745]: cluster 2024-09-20T19:13:42.560348+0000 mgr.a (mgr.14152) 437 : cluster [DBG] pgmap v343: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:44.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:44 smithi082 bash[24745]: audit 2024-09-20T19:13:43.487262+0000 mon.a (mon.0) 737 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:44.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:44 smithi082 bash[24745]: audit 2024-09-20T19:13:43.487262+0000 mon.a (mon.0) 737 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:44.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:44 smithi082 bash[24745]: audit 2024-09-20T19:13:43.495326+0000 mon.a (mon.0) 738 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:44.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:44 smithi082 bash[24745]: audit 2024-09-20T19:13:43.495326+0000 mon.a (mon.0) 738 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:44.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:44 smithi082 bash[24745]: audit 2024-09-20T19:13:43.498033+0000 mon.a (mon.0) 739 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:13:44.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:44 smithi082 bash[24745]: audit 2024-09-20T19:13:43.498033+0000 mon.a (mon.0) 739 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-20T19:13:44.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:44 smithi082 bash[24745]: audit 2024-09-20T19:13:44.067752+0000 mon.a (mon.0) 740 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:44.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:44 smithi082 bash[24745]: audit 2024-09-20T19:13:44.067752+0000 mon.a (mon.0) 740 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:44.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:44 smithi082 bash[24745]: audit 2024-09-20T19:13:44.071161+0000 mon.a (mon.0) 741 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:44.447 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:44 smithi082 bash[24745]: audit 2024-09-20T19:13:44.071161+0000 mon.a (mon.0) 741 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:45.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:45 smithi018 bash[22763]: audit 2024-09-20T19:13:44.693632+0000 mon.a (mon.0) 742 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:45.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:45 smithi018 bash[22763]: audit 2024-09-20T19:13:44.693632+0000 mon.a (mon.0) 742 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:45.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:45 smithi018 bash[22763]: audit 2024-09-20T19:13:44.695197+0000 mon.a (mon.0) 743 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:13:45.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:45 smithi018 bash[22763]: audit 2024-09-20T19:13:44.695197+0000 mon.a (mon.0) 743 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:13:45.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:45 smithi018 bash[22763]: audit 2024-09-20T19:13:44.704492+0000 mon.a (mon.0) 744 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:45.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:45 smithi018 bash[22763]: audit 2024-09-20T19:13:44.704492+0000 mon.a (mon.0) 744 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:45.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:45 smithi082 bash[24745]: audit 2024-09-20T19:13:44.693632+0000 mon.a (mon.0) 742 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:45.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:45 smithi082 bash[24745]: audit 2024-09-20T19:13:44.693632+0000 mon.a (mon.0) 742 : audit [DBG] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-20T19:13:45.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:45 smithi082 bash[24745]: audit 2024-09-20T19:13:44.695197+0000 mon.a (mon.0) 743 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:13:45.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:45 smithi082 bash[24745]: audit 2024-09-20T19:13:44.695197+0000 mon.a (mon.0) 743 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-20T19:13:45.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:45 smithi082 bash[24745]: audit 2024-09-20T19:13:44.704492+0000 mon.a (mon.0) 744 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:45.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:45 smithi082 bash[24745]: audit 2024-09-20T19:13:44.704492+0000 mon.a (mon.0) 744 : audit [INF] from='mgr.14152 172.21.15.18:0/3283122681' entity='mgr.a' 2024-09-20T19:13:46.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:46 smithi018 bash[22763]: cluster 2024-09-20T19:13:44.560851+0000 mgr.a (mgr.14152) 438 : cluster [DBG] pgmap v344: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:46.420 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:46 smithi018 bash[22763]: cluster 2024-09-20T19:13:44.560851+0000 mgr.a (mgr.14152) 438 : cluster [DBG] pgmap v344: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:46.445 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:46 smithi082 bash[24745]: cluster 2024-09-20T19:13:44.560851+0000 mgr.a (mgr.14152) 438 : cluster [DBG] pgmap v344: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:46.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:46 smithi082 bash[24745]: cluster 2024-09-20T19:13:44.560851+0000 mgr.a (mgr.14152) 438 : cluster [DBG] pgmap v344: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:48.445 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:48 smithi082 bash[24745]: cluster 2024-09-20T19:13:46.561420+0000 mgr.a (mgr.14152) 439 : cluster [DBG] pgmap v345: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:48.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:48 smithi082 bash[24745]: cluster 2024-09-20T19:13:46.561420+0000 mgr.a (mgr.14152) 439 : cluster [DBG] pgmap v345: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:48.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:48 smithi018 bash[22763]: cluster 2024-09-20T19:13:46.561420+0000 mgr.a (mgr.14152) 439 : cluster [DBG] pgmap v345: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:48.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:48 smithi018 bash[22763]: cluster 2024-09-20T19:13:46.561420+0000 mgr.a (mgr.14152) 439 : cluster [DBG] pgmap v345: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:50.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:50 smithi082 bash[24745]: cluster 2024-09-20T19:13:48.561946+0000 mgr.a (mgr.14152) 440 : cluster [DBG] pgmap v346: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:50.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:50 smithi082 bash[24745]: cluster 2024-09-20T19:13:48.561946+0000 mgr.a (mgr.14152) 440 : cluster [DBG] pgmap v346: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:50.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:50 smithi018 bash[22763]: cluster 2024-09-20T19:13:48.561946+0000 mgr.a (mgr.14152) 440 : cluster [DBG] pgmap v346: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:50.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:50 smithi018 bash[22763]: cluster 2024-09-20T19:13:48.561946+0000 mgr.a (mgr.14152) 440 : cluster [DBG] pgmap v346: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:52.445 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:52 smithi082 bash[24745]: cluster 2024-09-20T19:13:50.562463+0000 mgr.a (mgr.14152) 441 : cluster [DBG] pgmap v347: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:52.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:52 smithi082 bash[24745]: cluster 2024-09-20T19:13:50.562463+0000 mgr.a (mgr.14152) 441 : cluster [DBG] pgmap v347: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:52.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:52 smithi018 bash[22763]: cluster 2024-09-20T19:13:50.562463+0000 mgr.a (mgr.14152) 441 : cluster [DBG] pgmap v347: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:52.670 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:52 smithi018 bash[22763]: cluster 2024-09-20T19:13:50.562463+0000 mgr.a (mgr.14152) 441 : cluster [DBG] pgmap v347: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:54.275 INFO:teuthology.orchestra.run.smithi018.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-20T19:13:54.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:54 smithi082 bash[24745]: cluster 2024-09-20T19:13:52.563017+0000 mgr.a (mgr.14152) 442 : cluster [DBG] pgmap v348: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:54.446 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:54 smithi082 bash[24745]: cluster 2024-09-20T19:13:52.563017+0000 mgr.a (mgr.14152) 442 : cluster [DBG] pgmap v348: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:54.575 INFO:teuthology.orchestra.run.smithi018.stderr:18 2024-09-20T19:13:54.586 INFO:teuthology.orchestra.run.smithi018.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-20T19:13:54.603 INFO:teuthology.orchestra.run.smithi018.stderr:++ cat crushmap.txt 2024-09-20T19:13:54.604 INFO:teuthology.orchestra.run.smithi018.stderr:+ CRUSH_MAP='# begin crush map 2024-09-20T19:13:54.604 INFO:teuthology.orchestra.run.smithi018.stderr:tunable choose_local_tries 0 2024-09-20T19:13:54.605 INFO:teuthology.orchestra.run.smithi018.stderr:tunable choose_local_fallback_tries 0 2024-09-20T19:13:54.605 INFO:teuthology.orchestra.run.smithi018.stderr:tunable choose_total_tries 50 2024-09-20T19:13:54.605 INFO:teuthology.orchestra.run.smithi018.stderr:tunable chooseleaf_descend_once 1 2024-09-20T19:13:54.605 INFO:teuthology.orchestra.run.smithi018.stderr:tunable chooseleaf_vary_r 1 2024-09-20T19:13:54.605 INFO:teuthology.orchestra.run.smithi018.stderr:tunable chooseleaf_stable 1 2024-09-20T19:13:54.605 INFO:teuthology.orchestra.run.smithi018.stderr:tunable straw_calc_version 1 2024-09-20T19:13:54.605 INFO:teuthology.orchestra.run.smithi018.stderr:tunable allowed_bucket_algs 54 2024-09-20T19:13:54.605 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-20T19:13:54.605 INFO:teuthology.orchestra.run.smithi018.stderr:# devices 2024-09-20T19:13:54.605 INFO:teuthology.orchestra.run.smithi018.stderr:device 0 osd.0 class ssd 2024-09-20T19:13:54.605 INFO:teuthology.orchestra.run.smithi018.stderr:device 1 osd.1 class ssd 2024-09-20T19:13:54.605 INFO:teuthology.orchestra.run.smithi018.stderr:device 2 osd.2 class ssd 2024-09-20T19:13:54.606 INFO:teuthology.orchestra.run.smithi018.stderr:device 3 osd.3 class ssd 2024-09-20T19:13:54.606 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-20T19:13:54.606 INFO:teuthology.orchestra.run.smithi018.stderr:# types 2024-09-20T19:13:54.606 INFO:teuthology.orchestra.run.smithi018.stderr:type 0 osd 2024-09-20T19:13:54.606 INFO:teuthology.orchestra.run.smithi018.stderr:type 1 host 2024-09-20T19:13:54.606 INFO:teuthology.orchestra.run.smithi018.stderr:type 2 chassis 2024-09-20T19:13:54.606 INFO:teuthology.orchestra.run.smithi018.stderr:type 3 rack 2024-09-20T19:13:54.606 INFO:teuthology.orchestra.run.smithi018.stderr:type 4 row 2024-09-20T19:13:54.606 INFO:teuthology.orchestra.run.smithi018.stderr:type 5 pdu 2024-09-20T19:13:54.606 INFO:teuthology.orchestra.run.smithi018.stderr:type 6 pod 2024-09-20T19:13:54.606 INFO:teuthology.orchestra.run.smithi018.stderr:type 7 room 2024-09-20T19:13:54.606 INFO:teuthology.orchestra.run.smithi018.stderr:type 8 datacenter 2024-09-20T19:13:54.607 INFO:teuthology.orchestra.run.smithi018.stderr:type 9 zone 2024-09-20T19:13:54.607 INFO:teuthology.orchestra.run.smithi018.stderr:type 10 region 2024-09-20T19:13:54.607 INFO:teuthology.orchestra.run.smithi018.stderr:type 11 root 2024-09-20T19:13:54.607 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-20T19:13:54.607 INFO:teuthology.orchestra.run.smithi018.stderr:# buckets 2024-09-20T19:13:54.607 INFO:teuthology.orchestra.run.smithi018.stderr:host smithi018 { 2024-09-20T19:13:54.607 INFO:teuthology.orchestra.run.smithi018.stderr: id -3 # do not change unnecessarily 2024-09-20T19:13:54.607 INFO:teuthology.orchestra.run.smithi018.stderr: id -4 class ssd # do not change unnecessarily 2024-09-20T19:13:54.607 INFO:teuthology.orchestra.run.smithi018.stderr: # weight 0.17459 2024-09-20T19:13:54.607 INFO:teuthology.orchestra.run.smithi018.stderr: alg straw2 2024-09-20T19:13:54.607 INFO:teuthology.orchestra.run.smithi018.stderr: hash 0 # rjenkins1 2024-09-20T19:13:54.608 INFO:teuthology.orchestra.run.smithi018.stderr: item osd.0 weight 0.08730 2024-09-20T19:13:54.608 INFO:teuthology.orchestra.run.smithi018.stderr: item osd.1 weight 0.08730 2024-09-20T19:13:54.608 INFO:teuthology.orchestra.run.smithi018.stderr:} 2024-09-20T19:13:54.608 INFO:teuthology.orchestra.run.smithi018.stderr:host smithi082 { 2024-09-20T19:13:54.608 INFO:teuthology.orchestra.run.smithi018.stderr: id -5 # do not change unnecessarily 2024-09-20T19:13:54.608 INFO:teuthology.orchestra.run.smithi018.stderr: id -6 class ssd # do not change unnecessarily 2024-09-20T19:13:54.608 INFO:teuthology.orchestra.run.smithi018.stderr: # weight 0.17459 2024-09-20T19:13:54.608 INFO:teuthology.orchestra.run.smithi018.stderr: alg straw2 2024-09-20T19:13:54.608 INFO:teuthology.orchestra.run.smithi018.stderr: hash 0 # rjenkins1 2024-09-20T19:13:54.608 INFO:teuthology.orchestra.run.smithi018.stderr: item osd.2 weight 0.08730 2024-09-20T19:13:54.609 INFO:teuthology.orchestra.run.smithi018.stderr: item osd.3 weight 0.08730 2024-09-20T19:13:54.609 INFO:teuthology.orchestra.run.smithi018.stderr:} 2024-09-20T19:13:54.609 INFO:teuthology.orchestra.run.smithi018.stderr:root default { 2024-09-20T19:13:54.609 INFO:teuthology.orchestra.run.smithi018.stderr: id -1 # do not change unnecessarily 2024-09-20T19:13:54.609 INFO:teuthology.orchestra.run.smithi018.stderr: id -2 class ssd # do not change unnecessarily 2024-09-20T19:13:54.609 INFO:teuthology.orchestra.run.smithi018.stderr: # weight 0.34918 2024-09-20T19:13:54.609 INFO:teuthology.orchestra.run.smithi018.stderr: alg straw2 2024-09-20T19:13:54.609 INFO:teuthology.orchestra.run.smithi018.stderr: hash 0 # rjenkins1 2024-09-20T19:13:54.609 INFO:teuthology.orchestra.run.smithi018.stderr: item smithi018 weight 0.17459 2024-09-20T19:13:54.609 INFO:teuthology.orchestra.run.smithi018.stderr: item smithi082 weight 0.17459 2024-09-20T19:13:54.609 INFO:teuthology.orchestra.run.smithi018.stderr:} 2024-09-20T19:13:54.609 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-20T19:13:54.609 INFO:teuthology.orchestra.run.smithi018.stderr:# rules 2024-09-20T19:13:54.609 INFO:teuthology.orchestra.run.smithi018.stderr:rule replicated_rule { 2024-09-20T19:13:54.610 INFO:teuthology.orchestra.run.smithi018.stderr: id 0 2024-09-20T19:13:54.610 INFO:teuthology.orchestra.run.smithi018.stderr: type replicated 2024-09-20T19:13:54.610 INFO:teuthology.orchestra.run.smithi018.stderr: step take default 2024-09-20T19:13:54.610 INFO:teuthology.orchestra.run.smithi018.stderr: step choose firstn 0 type osd 2024-09-20T19:13:54.610 INFO:teuthology.orchestra.run.smithi018.stderr: step emit 2024-09-20T19:13:54.610 INFO:teuthology.orchestra.run.smithi018.stderr:} 2024-09-20T19:13:54.610 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-20T19:13:54.610 INFO:teuthology.orchestra.run.smithi018.stderr:# end crush map' 2024-09-20T19:13:54.610 INFO:teuthology.orchestra.run.smithi018.stderr:+ grep -q smithi137 2024-09-20T19:13:54.610 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:54 smithi018 bash[22763]: cluster 2024-09-20T19:13:52.563017+0000 mgr.a (mgr.14152) 442 : cluster [DBG] pgmap v348: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:54.610 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:54 smithi018 bash[22763]: cluster 2024-09-20T19:13:52.563017+0000 mgr.a (mgr.14152) 442 : cluster [DBG] pgmap v348: 1 pgs: 1 active+clean; 577 KiB data, 121 MiB used, 357 GiB / 358 GiB avail 2024-09-20T19:13:55.249 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-20T19:13:55.259 INFO:tasks.cephadm:Teardown begin 2024-09-20T19:13:55.260 DEBUG:teuthology.orchestra.run.smithi018:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-20T19:13:55.274 DEBUG:teuthology.orchestra.run.smithi082:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-20T19:13:55.289 DEBUG:teuthology.orchestra.run.smithi137:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-20T19:13:55.303 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-20T19:13:55.303 DEBUG:teuthology.orchestra.run.smithi018:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-20T19:13:55.321 DEBUG:teuthology.orchestra.run.smithi082:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-20T19:13:55.338 DEBUG:teuthology.orchestra.run.smithi137:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-20T19:13:55.351 INFO:tasks.cephadm:Stopping all daemons... 2024-09-20T19:13:55.352 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-09-20T19:13:55.352 DEBUG:teuthology.orchestra.run.smithi018:> sudo systemctl stop ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mon.a 2024-09-20T19:13:55.497 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:55 smithi018 bash[22763]: audit 2024-09-20T19:13:54.574904+0000 mon.a (mon.0) 745 : audit [DBG] from='client.? 172.21.15.18:0/469077012' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-20T19:13:55.497 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:55 smithi018 bash[22763]: audit 2024-09-20T19:13:54.574904+0000 mon.a (mon.0) 745 : audit [DBG] from='client.? 172.21.15.18:0/469077012' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-20T19:13:55.498 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:55 smithi018 systemd[1]: Stopping Ceph mon.a for 9ac321c2-7782-11ef-baf5-efdc52797490... 2024-09-20T19:13:55.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:55 smithi082 bash[24745]: audit 2024-09-20T19:13:54.574904+0000 mon.a (mon.0) 745 : audit [DBG] from='client.? 172.21.15.18:0/469077012' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-20T19:13:55.696 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:55 smithi082 bash[24745]: audit 2024-09-20T19:13:54.574904+0000 mon.a (mon.0) 745 : audit [DBG] from='client.? 172.21.15.18:0/469077012' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-20T19:13:55.920 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:55 smithi018 bash[22763]: debug 2024-09-20T19:13:55.496+0000 7f7e2ba19640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-09-20T19:13:55.920 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:55 smithi018 bash[22763]: debug 2024-09-20T19:13:55.496+0000 7f7e2ba19640 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-09-20T19:13:56.323 DEBUG:teuthology.orchestra.run.smithi018:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mon.a.service' 2024-09-20T19:13:56.332 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:56 smithi018 bash[47072]: ceph-9ac321c2-7782-11ef-baf5-efdc52797490-mon-a 2024-09-20T19:13:56.332 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:56 smithi018 bash[47131]: Error response from daemon: No such container: ceph-9ac321c2-7782-11ef-baf5-efdc52797490-mon-a 2024-09-20T19:13:56.332 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:56 smithi018 systemd[1]: ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mon.a.service: Deactivated successfully. 2024-09-20T19:13:56.332 INFO:journalctl@ceph.mon.a.smithi018.stdout:Sep 20 19:13:56 smithi018 systemd[1]: Stopped Ceph mon.a for 9ac321c2-7782-11ef-baf5-efdc52797490. 2024-09-20T19:13:56.355 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-20T19:13:56.355 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-09-20T19:13:56.355 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-09-20T19:13:56.356 DEBUG:teuthology.orchestra.run.smithi082:> sudo systemctl stop ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mon.b 2024-09-20T19:13:56.647 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:56 smithi082 systemd[1]: Stopping Ceph mon.b for 9ac321c2-7782-11ef-baf5-efdc52797490... 2024-09-20T19:13:56.647 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:56 smithi082 bash[24745]: debug 2024-09-20T19:13:56.519+0000 7f11a7cec640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.b -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-09-20T19:13:56.647 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:56 smithi082 bash[24745]: debug 2024-09-20T19:13:56.519+0000 7f11a7cec640 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-09-20T19:13:57.435 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:57 smithi082 bash[36678]: ceph-9ac321c2-7782-11ef-baf5-efdc52797490-mon-b 2024-09-20T19:13:57.435 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:57 smithi082 bash[36739]: ceph-9ac321c2-7782-11ef-baf5-efdc52797490-mon-b 2024-09-20T19:13:57.435 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:57 smithi082 systemd[1]: ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mon.b.service: Deactivated successfully. 2024-09-20T19:13:57.435 INFO:journalctl@ceph.mon.b.smithi082.stdout:Sep 20 19:13:57 smithi082 systemd[1]: Stopped Ceph mon.b for 9ac321c2-7782-11ef-baf5-efdc52797490. 2024-09-20T19:13:57.436 DEBUG:teuthology.orchestra.run.smithi082:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mon.b.service' 2024-09-20T19:13:57.467 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-20T19:13:57.468 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-09-20T19:13:57.468 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-09-20T19:13:57.468 DEBUG:teuthology.orchestra.run.smithi137:> sudo systemctl stop ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mon.c 2024-09-20T19:13:57.491 DEBUG:teuthology.orchestra.run.smithi137:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mon.c.service' 2024-09-20T19:13:57.569 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-20T19:13:57.569 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-09-20T19:13:57.569 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-09-20T19:13:57.569 DEBUG:teuthology.orchestra.run.smithi018:> sudo systemctl stop ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mgr.a 2024-09-20T19:13:57.920 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:13:57 smithi018 systemd[1]: Stopping Ceph mgr.a for 9ac321c2-7782-11ef-baf5-efdc52797490... 2024-09-20T19:13:57.920 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:13:57 smithi018 bash[23020]: debug 2024-09-20T19:13:57.724+0000 7f10302ac640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mgr -n mgr.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-20T19:13:57.920 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:13:57 smithi018 bash[23020]: debug 2024-09-20T19:13:57.724+0000 7f10302ac640 -1 mgr handle_mgr_signal *** Got signal Terminated *** 2024-09-20T19:13:58.580 INFO:journalctl@ceph.mgr.a.smithi018.stdout:Sep 20 19:13:58 smithi018 bash[47169]: ceph-9ac321c2-7782-11ef-baf5-efdc52797490-mgr-a 2024-09-20T19:13:58.584 DEBUG:teuthology.orchestra.run.smithi018:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mgr.a.service' 2024-09-20T19:13:58.606 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-20T19:13:58.606 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-09-20T19:13:58.606 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-09-20T19:13:58.606 DEBUG:teuthology.orchestra.run.smithi082:> sudo systemctl stop ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mgr.b 2024-09-20T19:13:58.945 INFO:journalctl@ceph.mgr.b.smithi082.stdout:Sep 20 19:13:58 smithi082 systemd[1]: Stopping Ceph mgr.b for 9ac321c2-7782-11ef-baf5-efdc52797490... 2024-09-20T19:13:59.547 DEBUG:teuthology.orchestra.run.smithi082:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@mgr.b.service' 2024-09-20T19:13:59.569 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-20T19:13:59.569 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-09-20T19:13:59.569 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-09-20T19:13:59.569 DEBUG:teuthology.orchestra.run.smithi018:> sudo systemctl stop ceph-9ac321c2-7782-11ef-baf5-efdc52797490@osd.0 2024-09-20T19:13:59.920 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 20 19:13:59 smithi018 systemd[1]: Stopping Ceph osd.0 for 9ac321c2-7782-11ef-baf5-efdc52797490... 2024-09-20T19:13:59.920 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 20 19:13:59 smithi018 bash[35146]: debug 2024-09-20T19:13:59.708+0000 7fc7ad1f5640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.0 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-20T19:13:59.920 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 20 19:13:59 smithi018 bash[35146]: debug 2024-09-20T19:13:59.708+0000 7fc7ad1f5640 -1 osd.0 51 *** Got signal Terminated *** 2024-09-20T19:13:59.920 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 20 19:13:59 smithi018 bash[35146]: debug 2024-09-20T19:13:59.708+0000 7fc7ad1f5640 -1 osd.0 51 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-20T19:14:06.170 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 20 19:14:05 smithi018 bash[47267]: ceph-9ac321c2-7782-11ef-baf5-efdc52797490-osd-0 2024-09-20T19:14:06.170 INFO:journalctl@ceph.osd.0.smithi018.stdout:Sep 20 19:14:05 smithi018 bash[47329]: Error response from daemon: No such container: ceph-9ac321c2-7782-11ef-baf5-efdc52797490-osd-0 2024-09-20T19:14:07.707 DEBUG:teuthology.orchestra.run.smithi018:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@osd.0.service' 2024-09-20T19:14:07.734 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-20T19:14:07.734 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-09-20T19:14:07.734 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-09-20T19:14:07.734 DEBUG:teuthology.orchestra.run.smithi018:> sudo systemctl stop ceph-9ac321c2-7782-11ef-baf5-efdc52797490@osd.1 2024-09-20T19:14:08.170 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 20 19:14:07 smithi018 systemd[1]: Stopping Ceph osd.1 for 9ac321c2-7782-11ef-baf5-efdc52797490... 2024-09-20T19:14:08.170 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 20 19:14:07 smithi018 bash[40470]: debug 2024-09-20T19:14:07.916+0000 7ff4ca0e0640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.1 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-20T19:14:08.170 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 20 19:14:07 smithi018 bash[40470]: debug 2024-09-20T19:14:07.916+0000 7ff4ca0e0640 -1 osd.1 51 *** Got signal Terminated *** 2024-09-20T19:14:08.170 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 20 19:14:07 smithi018 bash[40470]: debug 2024-09-20T19:14:07.916+0000 7ff4ca0e0640 -1 osd.1 51 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-20T19:14:14.237 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 20 19:14:13 smithi018 bash[47460]: ceph-9ac321c2-7782-11ef-baf5-efdc52797490-osd-1 2024-09-20T19:14:14.238 INFO:journalctl@ceph.osd.1.smithi018.stdout:Sep 20 19:14:13 smithi018 bash[47523]: Error response from daemon: No such container: ceph-9ac321c2-7782-11ef-baf5-efdc52797490-osd-1 2024-09-20T19:14:15.798 DEBUG:teuthology.orchestra.run.smithi018:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@osd.1.service' 2024-09-20T19:14:15.838 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-20T19:14:15.838 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-09-20T19:14:15.838 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-09-20T19:14:15.838 DEBUG:teuthology.orchestra.run.smithi082:> sudo systemctl stop ceph-9ac321c2-7782-11ef-baf5-efdc52797490@osd.2 2024-09-20T19:14:16.196 INFO:journalctl@ceph.osd.2.smithi082.stdout:Sep 20 19:14:15 smithi082 systemd[1]: Stopping Ceph osd.2 for 9ac321c2-7782-11ef-baf5-efdc52797490... 2024-09-20T19:14:16.196 INFO:journalctl@ceph.osd.2.smithi082.stdout:Sep 20 19:14:15 smithi082 bash[27891]: debug 2024-09-20T19:14:15.971+0000 7f549990b640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.2 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-20T19:14:16.196 INFO:journalctl@ceph.osd.2.smithi082.stdout:Sep 20 19:14:15 smithi082 bash[27891]: debug 2024-09-20T19:14:15.971+0000 7f549990b640 -1 osd.2 51 *** Got signal Terminated *** 2024-09-20T19:14:16.196 INFO:journalctl@ceph.osd.2.smithi082.stdout:Sep 20 19:14:15 smithi082 bash[27891]: debug 2024-09-20T19:14:15.971+0000 7f549990b640 -1 osd.2 51 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-20T19:14:22.195 INFO:journalctl@ceph.osd.2.smithi082.stdout:Sep 20 19:14:21 smithi082 bash[36877]: ceph-9ac321c2-7782-11ef-baf5-efdc52797490-osd-2 2024-09-20T19:14:22.195 INFO:journalctl@ceph.osd.2.smithi082.stdout:Sep 20 19:14:22 smithi082 bash[36940]: Error response from daemon: No such container: ceph-9ac321c2-7782-11ef-baf5-efdc52797490-osd-2 2024-09-20T19:14:23.864 DEBUG:teuthology.orchestra.run.smithi082:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@osd.2.service' 2024-09-20T19:14:23.890 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-20T19:14:23.890 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-09-20T19:14:23.890 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-09-20T19:14:23.890 DEBUG:teuthology.orchestra.run.smithi082:> sudo systemctl stop ceph-9ac321c2-7782-11ef-baf5-efdc52797490@osd.3 2024-09-20T19:14:24.195 INFO:journalctl@ceph.osd.3.smithi082.stdout:Sep 20 19:14:23 smithi082 systemd[1]: Stopping Ceph osd.3 for 9ac321c2-7782-11ef-baf5-efdc52797490... 2024-09-20T19:14:24.195 INFO:journalctl@ceph.osd.3.smithi082.stdout:Sep 20 19:14:24 smithi082 bash[33216]: debug 2024-09-20T19:14:24.050+0000 7f8369e0b640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-osd -n osd.3 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug (PID: 1) UID: 0 2024-09-20T19:14:24.196 INFO:journalctl@ceph.osd.3.smithi082.stdout:Sep 20 19:14:24 smithi082 bash[33216]: debug 2024-09-20T19:14:24.050+0000 7f8369e0b640 -1 osd.3 51 *** Got signal Terminated *** 2024-09-20T19:14:24.196 INFO:journalctl@ceph.osd.3.smithi082.stdout:Sep 20 19:14:24 smithi082 bash[33216]: debug 2024-09-20T19:14:24.050+0000 7f8369e0b640 -1 osd.3 51 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-20T19:14:27.695 INFO:journalctl@ceph.osd.3.smithi082.stdout:Sep 20 19:14:27 smithi082 bash[33216]: debug 2024-09-20T19:14:27.358+0000 7f8362418640 -1 osd.3 51 heartbeat_check: no reply from 172.21.15.18:6806 osd.0 since back 2024-09-20T19:14:03.443629+0000 front 2024-09-20T19:14:03.443588+0000 (oldest deadline 2024-09-20T19:14:26.943390+0000) 2024-09-20T19:14:28.695 INFO:journalctl@ceph.osd.3.smithi082.stdout:Sep 20 19:14:28 smithi082 bash[33216]: debug 2024-09-20T19:14:28.366+0000 7f8362418640 -1 osd.3 51 heartbeat_check: no reply from 172.21.15.18:6806 osd.0 since back 2024-09-20T19:14:03.443629+0000 front 2024-09-20T19:14:03.443588+0000 (oldest deadline 2024-09-20T19:14:26.943390+0000) 2024-09-20T19:14:30.417 INFO:journalctl@ceph.osd.3.smithi082.stdout:Sep 20 19:14:30 smithi082 bash[37073]: ceph-9ac321c2-7782-11ef-baf5-efdc52797490-osd-3 2024-09-20T19:14:30.418 INFO:journalctl@ceph.osd.3.smithi082.stdout:Sep 20 19:14:30 smithi082 bash[37136]: Error response from daemon: No such container: ceph-9ac321c2-7782-11ef-baf5-efdc52797490-osd-3 2024-09-20T19:14:32.031 DEBUG:teuthology.orchestra.run.smithi082:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@osd.3.service' 2024-09-20T19:14:32.070 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-20T19:14:32.071 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-09-20T19:14:32.071 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-09-20T19:14:32.071 DEBUG:teuthology.orchestra.run.smithi137:> sudo systemctl stop ceph-9ac321c2-7782-11ef-baf5-efdc52797490@osd.4 2024-09-20T19:14:32.096 DEBUG:teuthology.orchestra.run.smithi137:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@osd.4.service' 2024-09-20T19:14:32.163 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-20T19:14:32.164 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-09-20T19:14:32.164 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-09-20T19:14:32.164 DEBUG:teuthology.orchestra.run.smithi137:> sudo systemctl stop ceph-9ac321c2-7782-11ef-baf5-efdc52797490@osd.5 2024-09-20T19:14:32.233 DEBUG:teuthology.orchestra.run.smithi137:> sudo pkill -f 'journalctl -f -n 0 -u ceph-9ac321c2-7782-11ef-baf5-efdc52797490@osd.5.service' 2024-09-20T19:14:32.304 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-20T19:14:32.304 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-09-20T19:14:32.304 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 --force --keep-logs 2024-09-20T19:14:32.493 INFO:teuthology.orchestra.run.smithi018.stdout:Deleting cluster with fsid: 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:14:34.904 DEBUG:teuthology.orchestra.run.smithi082:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 --force --keep-logs 2024-09-20T19:14:35.078 INFO:teuthology.orchestra.run.smithi082.stdout:Deleting cluster with fsid: 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:14:37.514 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 --force --keep-logs 2024-09-20T19:14:37.718 INFO:teuthology.orchestra.run.smithi137.stdout:Deleting cluster with fsid: 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:14:39.261 DEBUG:teuthology.orchestra.run.smithi018:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-20T19:14:39.275 DEBUG:teuthology.orchestra.run.smithi082:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-20T19:14:39.289 DEBUG:teuthology.orchestra.run.smithi137:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-20T19:14:39.300 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-20T19:14:39.302 DEBUG:teuthology.misc:Transferring archived files from smithi018:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/crash to /home/teuthworker/archive/gabrioux-2024-09-20_12:24:58-orch:cephadm-wip-guits-main-2024-09-20-1028-distro-default-smithi/7912740/remote/smithi018/crash 2024-09-20T19:14:39.303 DEBUG:teuthology.orchestra.run.smithi018:> sudo tar c -f - -C /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/crash -- . 2024-09-20T19:14:39.330 INFO:teuthology.orchestra.run.smithi018.stderr:tar: /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/crash: Cannot open: No such file or directory 2024-09-20T19:14:39.330 INFO:teuthology.orchestra.run.smithi018.stderr:tar: Error is not recoverable: exiting now 2024-09-20T19:14:39.331 DEBUG:teuthology.misc:Transferring archived files from smithi082:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/crash to /home/teuthworker/archive/gabrioux-2024-09-20_12:24:58-orch:cephadm-wip-guits-main-2024-09-20-1028-distro-default-smithi/7912740/remote/smithi082/crash 2024-09-20T19:14:39.332 DEBUG:teuthology.orchestra.run.smithi082:> sudo tar c -f - -C /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/crash -- . 2024-09-20T19:14:39.348 INFO:teuthology.orchestra.run.smithi082.stderr:tar: /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/crash: Cannot open: No such file or directory 2024-09-20T19:14:39.348 INFO:teuthology.orchestra.run.smithi082.stderr:tar: Error is not recoverable: exiting now 2024-09-20T19:14:39.350 DEBUG:teuthology.misc:Transferring archived files from smithi137:/var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/crash to /home/teuthworker/archive/gabrioux-2024-09-20_12:24:58-orch:cephadm-wip-guits-main-2024-09-20-1028-distro-default-smithi/7912740/remote/smithi137/crash 2024-09-20T19:14:39.351 DEBUG:teuthology.orchestra.run.smithi137:> sudo tar c -f - -C /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/crash -- . 2024-09-20T19:14:39.361 INFO:teuthology.orchestra.run.smithi137.stderr:tar: /var/lib/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/crash: Cannot open: No such file or directory 2024-09-20T19:14:39.361 INFO:teuthology.orchestra.run.smithi137.stderr:tar: Error is not recoverable: exiting now 2024-09-20T19:14:39.362 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-20T19:14:39.362 DEBUG:teuthology.orchestra.run.smithi018:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | egrep -v CEPHADM_STRAY_HOST | egrep -v CEPHADM_STRAY_DAEMON | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2024-09-20T19:14:39.387 INFO:tasks.cephadm:Compressing logs... 2024-09-20T19:14:39.387 DEBUG:teuthology.orchestra.run.smithi018:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-20T19:14:39.433 DEBUG:teuthology.orchestra.run.smithi082:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-20T19:14:39.436 DEBUG:teuthology.orchestra.run.smithi137:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-20T19:14:39.442 INFO:teuthology.orchestra.run.smithi018.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-20T19:14:39.447 INFO:teuthology.orchestra.run.smithi082.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-20T19:14:39.448 INFO:teuthology.orchestra.run.smithi137.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-20T19:14:39.448 INFO:teuthology.orchestra.run.smithi018.stderr:gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-osd.0.log 2024-09-20T19:14:39.449 INFO:teuthology.orchestra.run.smithi018.stderr:gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-mon.a.log 2024-09-20T19:14:39.449 INFO:teuthology.orchestra.run.smithi018.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.cephadm.log 2024-09-20T19:14:39.450 INFO:teuthology.orchestra.run.smithi018.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-mon.a.log: gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-osd.1.log 2024-09-20T19:14:39.450 INFO:teuthology.orchestra.run.smithi018.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.log 2024-09-20T19:14:39.451 INFO:teuthology.orchestra.run.smithi018.stderr: 82.6% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.cephadm.log.gz 2024-09-20T19:14:39.451 INFO:teuthology.orchestra.run.smithi018.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-volume.log 2024-09-20T19:14:39.451 INFO:teuthology.orchestra.run.smithi018.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.log: gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.audit.log 2024-09-20T19:14:39.451 INFO:teuthology.orchestra.run.smithi018.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-mgr.a.log 2024-09-20T19:14:39.452 INFO:teuthology.orchestra.run.smithi018.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-20T19:14:39.452 INFO:teuthology.orchestra.run.smithi018.stderr: 86.9%/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-mgr.a.log: -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.log.gz 2024-09-20T19:14:39.454 INFO:teuthology.orchestra.run.smithi018.stderr:/var/log/ceph/cephadm.log: 89.7% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.audit.log.gz 2024-09-20T19:14:39.455 INFO:teuthology.orchestra.run.smithi137.stderr:gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.cephadm.log 2024-09-20T19:14:39.456 INFO:teuthology.orchestra.run.smithi137.stderr:gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-osd.5.log 2024-09-20T19:14:39.456 INFO:teuthology.orchestra.run.smithi137.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.log 2024-09-20T19:14:39.456 INFO:teuthology.orchestra.run.smithi137.stderr: 80.0% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.cephadm.log.gz 2024-09-20T19:14:39.457 INFO:teuthology.orchestra.run.smithi137.stderr:gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-volume.log 2024-09-20T19:14:39.457 INFO:teuthology.orchestra.run.smithi018.stderr: 87.7% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-20T19:14:39.458 INFO:teuthology.orchestra.run.smithi137.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-mon.c.log 2024-09-20T19:14:39.458 INFO:teuthology.orchestra.run.smithi137.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.log: gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.audit.log 2024-09-20T19:14:39.458 INFO:teuthology.orchestra.run.smithi137.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-volume.log: /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-mon.c.log: gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-osd.4.log 2024-09-20T19:14:39.458 INFO:teuthology.orchestra.run.smithi137.stderr: 87.0% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.log.gz 2024-09-20T19:14:39.458 INFO:teuthology.orchestra.run.smithi137.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-20T19:14:39.459 INFO:teuthology.orchestra.run.smithi018.stderr: 91.3% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-volume.log.gz 2024-09-20T19:14:39.459 INFO:teuthology.orchestra.run.smithi137.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-osd.4.log: /var/log/ceph/cephadm.log: 90.0% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.audit.log.gz 2024-09-20T19:14:39.460 INFO:teuthology.orchestra.run.smithi137.stderr: 88.4% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-20T19:14:39.463 INFO:teuthology.orchestra.run.smithi082.stderr:gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-osd.2.log 2024-09-20T19:14:39.464 INFO:teuthology.orchestra.run.smithi082.stderr:gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.cephadm.log 2024-09-20T19:14:39.464 INFO:teuthology.orchestra.run.smithi082.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-osd.3.log 2024-09-20T19:14:39.465 INFO:teuthology.orchestra.run.smithi082.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.log 2024-09-20T19:14:39.466 INFO:teuthology.orchestra.run.smithi082.stderr: 82.2% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.cephadm.log.gz 2024-09-20T19:14:39.466 INFO:teuthology.orchestra.run.smithi082.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-volume.log 2024-09-20T19:14:39.466 INFO:teuthology.orchestra.run.smithi082.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.log: gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-mgr.b.log 2024-09-20T19:14:39.466 INFO:teuthology.orchestra.run.smithi137.stderr: 91.3% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-volume.log.gz 2024-09-20T19:14:39.467 INFO:teuthology.orchestra.run.smithi082.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.audit.log 2024-09-20T19:14:39.467 INFO:teuthology.orchestra.run.smithi082.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-mgr.b.log: gzip -5 --verbose -- /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-mon.b.log 2024-09-20T19:14:39.467 INFO:teuthology.orchestra.run.smithi082.stderr: 86.7% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.log.gz 2024-09-20T19:14:39.468 INFO:teuthology.orchestra.run.smithi082.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-20T19:14:39.468 INFO:teuthology.orchestra.run.smithi082.stderr:/var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-mon.b.log: /var/log/ceph/cephadm.log: 90.0% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph.audit.log.gz 2024-09-20T19:14:39.469 INFO:teuthology.orchestra.run.smithi082.stderr: 89.2% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-20T19:14:39.473 INFO:teuthology.orchestra.run.smithi082.stderr: 91.1% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-mgr.b.log.gz 2024-09-20T19:14:39.475 INFO:teuthology.orchestra.run.smithi082.stderr: 91.4% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-volume.log.gz 2024-09-20T19:14:39.497 INFO:teuthology.orchestra.run.smithi137.stderr: 92.8% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-osd.5.log.gz 2024-09-20T19:14:39.499 INFO:teuthology.orchestra.run.smithi137.stderr: 92.9% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-osd.4.log.gz 2024-09-20T19:14:39.499 INFO:teuthology.orchestra.run.smithi018.stderr: 93.2% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-osd.1.log.gz 2024-09-20T19:14:39.501 INFO:teuthology.orchestra.run.smithi018.stderr: 93.2% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-osd.0.log.gz 2024-09-20T19:14:39.526 INFO:teuthology.orchestra.run.smithi082.stderr: 92.9% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-osd.3.log.gz 2024-09-20T19:14:39.534 INFO:teuthology.orchestra.run.smithi082.stderr: 93.2% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-osd.2.log.gz 2024-09-20T19:14:39.534 INFO:teuthology.orchestra.run.smithi137.stderr: 93.3% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-mon.c.log.gz 2024-09-20T19:14:39.536 INFO:teuthology.orchestra.run.smithi137.stderr: 2024-09-20T19:14:39.537 INFO:teuthology.orchestra.run.smithi137.stderr:real 0m0.097s 2024-09-20T19:14:39.537 INFO:teuthology.orchestra.run.smithi137.stderr:user 0m0.169s 2024-09-20T19:14:39.537 INFO:teuthology.orchestra.run.smithi137.stderr:sys 0m0.028s 2024-09-20T19:14:39.543 INFO:teuthology.orchestra.run.smithi018.stderr: 90.0% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-mgr.a.log.gz 2024-09-20T19:14:39.576 INFO:teuthology.orchestra.run.smithi082.stderr: 92.6% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-mon.b.log.gz 2024-09-20T19:14:39.577 INFO:teuthology.orchestra.run.smithi082.stderr: 2024-09-20T19:14:39.577 INFO:teuthology.orchestra.run.smithi082.stderr:real 0m0.139s 2024-09-20T19:14:39.578 INFO:teuthology.orchestra.run.smithi082.stderr:user 0m0.257s 2024-09-20T19:14:39.578 INFO:teuthology.orchestra.run.smithi082.stderr:sys 0m0.031s 2024-09-20T19:14:39.762 INFO:teuthology.orchestra.run.smithi018.stderr: 91.0% -- replaced with /var/log/ceph/9ac321c2-7782-11ef-baf5-efdc52797490/ceph-mon.a.log.gz 2024-09-20T19:14:39.764 INFO:teuthology.orchestra.run.smithi018.stderr: 2024-09-20T19:14:39.764 INFO:teuthology.orchestra.run.smithi018.stderr:real 0m0.328s 2024-09-20T19:14:39.764 INFO:teuthology.orchestra.run.smithi018.stderr:user 0m0.518s 2024-09-20T19:14:39.764 INFO:teuthology.orchestra.run.smithi018.stderr:sys 0m0.024s 2024-09-20T19:14:39.764 INFO:tasks.cephadm:Archiving logs... 2024-09-20T19:14:39.765 DEBUG:teuthology.misc:Transferring archived files from smithi018:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-09-20_12:24:58-orch:cephadm-wip-guits-main-2024-09-20-1028-distro-default-smithi/7912740/remote/smithi018/log 2024-09-20T19:14:39.766 DEBUG:teuthology.orchestra.run.smithi018:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-20T19:14:39.898 DEBUG:teuthology.misc:Transferring archived files from smithi082:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-09-20_12:24:58-orch:cephadm-wip-guits-main-2024-09-20-1028-distro-default-smithi/7912740/remote/smithi082/log 2024-09-20T19:14:39.899 DEBUG:teuthology.orchestra.run.smithi082:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-20T19:14:39.956 DEBUG:teuthology.misc:Transferring archived files from smithi137:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-09-20_12:24:58-orch:cephadm-wip-guits-main-2024-09-20-1028-distro-default-smithi/7912740/remote/smithi137/log 2024-09-20T19:14:39.957 DEBUG:teuthology.orchestra.run.smithi137:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-20T19:14:39.994 INFO:tasks.cephadm:Removing cluster... 2024-09-20T19:14:39.994 DEBUG:teuthology.orchestra.run.smithi018:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 --force 2024-09-20T19:14:40.174 INFO:teuthology.orchestra.run.smithi018.stdout:Deleting cluster with fsid: 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:14:41.500 DEBUG:teuthology.orchestra.run.smithi082:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 --force 2024-09-20T19:14:41.676 INFO:teuthology.orchestra.run.smithi082.stdout:Deleting cluster with fsid: 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:14:42.963 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 9ac321c2-7782-11ef-baf5-efdc52797490 --force 2024-09-20T19:14:43.151 INFO:teuthology.orchestra.run.smithi137.stdout:Deleting cluster with fsid: 9ac321c2-7782-11ef-baf5-efdc52797490 2024-09-20T19:14:44.486 INFO:tasks.cephadm:Removing cephadm ... 2024-09-20T19:14:44.486 DEBUG:teuthology.orchestra.run.smithi018:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-20T19:14:44.492 DEBUG:teuthology.orchestra.run.smithi082:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-20T19:14:44.498 DEBUG:teuthology.orchestra.run.smithi137:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-20T19:14:44.504 INFO:tasks.cephadm:Teardown complete 2024-09-20T19:14:44.504 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-09-20T19:14:44.512 INFO:teuthology.task.install.util:Removing shipped files: /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer... 2024-09-20T19:14:44.512 DEBUG:teuthology.orchestra.run.smithi018:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-20T19:14:44.538 DEBUG:teuthology.orchestra.run.smithi082:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-20T19:14:44.542 DEBUG:teuthology.orchestra.run.smithi137:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-20T19:14:44.634 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-20T19:14:44.643 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-20T19:14:44.643 DEBUG:teuthology.orchestra.run.smithi018:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-20T19:14:44.645 DEBUG:teuthology.orchestra.run.smithi082:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-20T19:14:44.648 DEBUG:teuthology.orchestra.run.smithi137:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-20T19:14:44.656 INFO:teuthology.orchestra.run.smithi018.stdout: remote refid st t when poll reach delay offset jitter 2024-09-20T19:14:44.656 INFO:teuthology.orchestra.run.smithi018.stdout:============================================================================== 2024-09-20T19:14:44.656 INFO:teuthology.orchestra.run.smithi018.stdout:*hv01.front.sepi 67.205.162.81 3 u 53 64 377 0.070 -1.945 0.159 2024-09-20T19:14:44.657 INFO:teuthology.orchestra.run.smithi018.stdout:+hv02.front.sepi 63.231.80.2 3 u 48 64 377 0.056 -2.758 0.156 2024-09-20T19:14:44.657 INFO:teuthology.orchestra.run.smithi018.stdout:+hv03.front.sepi 74.6.168.72 3 u 49 64 377 0.087 +0.207 0.170 2024-09-20T19:14:44.657 INFO:teuthology.orchestra.run.smithi018.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-20T19:14:44.658 INFO:teuthology.orchestra.run.smithi082.stdout: remote refid st t when poll reach delay offset jitter 2024-09-20T19:14:44.658 INFO:teuthology.orchestra.run.smithi082.stdout:============================================================================== 2024-09-20T19:14:44.658 INFO:teuthology.orchestra.run.smithi082.stdout:*hv01.front.sepi 67.205.162.81 3 u 41 64 377 0.091 -4.738 0.444 2024-09-20T19:14:44.658 INFO:teuthology.orchestra.run.smithi082.stdout:+hv02.front.sepi 63.231.80.2 3 u 49 64 377 0.092 -5.305 0.226 2024-09-20T19:14:44.658 INFO:teuthology.orchestra.run.smithi082.stdout:+hv03.front.sepi 74.6.168.72 3 u 48 64 377 0.071 -2.405 0.282 2024-09-20T19:14:44.658 INFO:teuthology.orchestra.run.smithi082.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-20T19:14:44.661 INFO:teuthology.orchestra.run.smithi137.stdout: remote refid st t when poll reach delay offset jitter 2024-09-20T19:14:44.661 INFO:teuthology.orchestra.run.smithi137.stdout:============================================================================== 2024-09-20T19:14:44.661 INFO:teuthology.orchestra.run.smithi137.stdout:+hv01.front.sepi 67.205.162.81 3 u 57 64 377 0.080 -4.384 1.055 2024-09-20T19:14:44.661 INFO:teuthology.orchestra.run.smithi137.stdout:+hv02.front.sepi 63.231.80.2 3 u 46 64 377 0.109 -4.721 1.012 2024-09-20T19:14:44.662 INFO:teuthology.orchestra.run.smithi137.stdout:*hv03.front.sepi 74.6.168.72 3 u 53 64 377 0.080 -3.092 1.322 2024-09-20T19:14:44.662 INFO:teuthology.orchestra.run.smithi137.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-20T19:14:44.662 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-20T19:14:44.677 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-20T19:14:44.678 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-20T19:14:44.731 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-20T19:14:44.768 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-20T19:14:44.811 INFO:teuthology.task.internal:Duration was 1432.010442 seconds 2024-09-20T19:14:44.811 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-20T19:14:44.868 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-20T19:14:44.868 DEBUG:teuthology.orchestra.run.smithi018:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-20T19:14:44.871 DEBUG:teuthology.orchestra.run.smithi082:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-20T19:14:44.873 DEBUG:teuthology.orchestra.run.smithi137:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-20T19:14:44.909 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-20T19:14:44.910 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi018.front.sepia.ceph.com 2024-09-20T19:14:44.910 DEBUG:teuthology.orchestra.run.smithi018:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-20T19:14:44.966 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi082.front.sepia.ceph.com 2024-09-20T19:14:44.966 DEBUG:teuthology.orchestra.run.smithi082:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-20T19:14:44.976 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi137.front.sepia.ceph.com 2024-09-20T19:14:44.976 DEBUG:teuthology.orchestra.run.smithi137:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-20T19:14:44.987 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-20T19:14:44.987 DEBUG:teuthology.orchestra.run.smithi018:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-20T19:14:45.010 DEBUG:teuthology.orchestra.run.smithi082:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-20T19:14:45.018 DEBUG:teuthology.orchestra.run.smithi137:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-20T19:14:45.064 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-20T19:14:45.064 DEBUG:teuthology.orchestra.run.smithi018:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-20T19:14:45.094 DEBUG:teuthology.orchestra.run.smithi082:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-20T19:14:45.096 DEBUG:teuthology.orchestra.run.smithi137:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-20T19:14:45.199 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-20T19:14:45.208 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-20T19:14:45.208 DEBUG:teuthology.orchestra.run.smithi018:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-20T19:14:45.220 DEBUG:teuthology.orchestra.run.smithi082:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-20T19:14:45.233 DEBUG:teuthology.orchestra.run.smithi137:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-20T19:14:45.246 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-20T19:14:45.323 DEBUG:teuthology.orchestra.run.smithi018:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-20T19:14:45.325 DEBUG:teuthology.orchestra.run.smithi082:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-20T19:14:45.328 DEBUG:teuthology.orchestra.run.smithi137:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-20T19:14:45.335 INFO:teuthology.orchestra.run.smithi018.stdout:kernel.core_pattern = core 2024-09-20T19:14:45.337 INFO:teuthology.orchestra.run.smithi082.stdout:kernel.core_pattern = core 2024-09-20T19:14:45.341 INFO:teuthology.orchestra.run.smithi137.stdout:kernel.core_pattern = core 2024-09-20T19:14:45.421 DEBUG:teuthology.orchestra.run.smithi018:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-20T19:14:45.468 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-20T19:14:45.469 DEBUG:teuthology.orchestra.run.smithi082:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-20T19:14:45.474 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-20T19:14:45.474 DEBUG:teuthology.orchestra.run.smithi137:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-20T19:14:45.478 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-20T19:14:45.479 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-20T19:14:45.488 INFO:teuthology.task.internal:Transferring archived files... 2024-09-20T19:14:45.489 DEBUG:teuthology.misc:Transferring archived files from smithi018:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-09-20_12:24:58-orch:cephadm-wip-guits-main-2024-09-20-1028-distro-default-smithi/7912740/remote/smithi018 2024-09-20T19:14:45.489 DEBUG:teuthology.orchestra.run.smithi018:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-20T19:14:45.539 DEBUG:teuthology.misc:Transferring archived files from smithi082:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-09-20_12:24:58-orch:cephadm-wip-guits-main-2024-09-20-1028-distro-default-smithi/7912740/remote/smithi082 2024-09-20T19:14:45.539 DEBUG:teuthology.orchestra.run.smithi082:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-20T19:14:45.562 DEBUG:teuthology.misc:Transferring archived files from smithi137:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-09-20_12:24:58-orch:cephadm-wip-guits-main-2024-09-20-1028-distro-default-smithi/7912740/remote/smithi137 2024-09-20T19:14:45.562 DEBUG:teuthology.orchestra.run.smithi137:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-20T19:14:45.585 INFO:teuthology.task.internal:Removing archive directory... 2024-09-20T19:14:45.586 DEBUG:teuthology.orchestra.run.smithi018:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-20T19:14:45.588 DEBUG:teuthology.orchestra.run.smithi082:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-20T19:14:45.602 DEBUG:teuthology.orchestra.run.smithi137:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-20T19:14:45.632 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-20T19:14:45.642 INFO:teuthology.task.internal:Not uploading archives. 2024-09-20T19:14:45.642 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-20T19:14:45.670 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-20T19:14:45.671 DEBUG:teuthology.orchestra.run.smithi018:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-20T19:14:45.674 DEBUG:teuthology.orchestra.run.smithi082:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-20T19:14:45.676 DEBUG:teuthology.orchestra.run.smithi137:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-20T19:14:45.677 INFO:teuthology.orchestra.run.smithi018.stdout: 658641 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 20 19:14 /home/ubuntu/cephtest 2024-09-20T19:14:45.680 INFO:teuthology.orchestra.run.smithi082.stdout: 658644 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 20 19:14 /home/ubuntu/cephtest 2024-09-20T19:14:45.682 INFO:teuthology.orchestra.run.smithi137.stdout: 658641 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 20 19:14 /home/ubuntu/cephtest 2024-09-20T19:14:45.684 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-20T19:14:45.733 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-20T19:14:45.828 INFO:teuthology.run:Summary data: description: orch:cephadm/workunits/{0-distro/ubuntu_22.04 agent/off mon_election/classic task/test_host_drain} duration: 1432.0104415416718 flavor: default owner: scheduled_gabrioux@teuthology success: true 2024-09-20T19:14:45.828 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-20T19:14:45.915 INFO:teuthology.run:pass