2024-09-18T08:02:03.392 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-18T08:02:03.408 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-18T08:02:03.492 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/gabrioux-2024-09-18_06:59:44-orch:cephadm-wip-guits-main-2024-09-17-1213-distro-default-smithi/7910365 branch: wip-guits-main-2024-09-17-1213 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: '7910365' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: gabrioux-2024-09-18_06:59:44-orch:cephadm-wip-guits-main-2024-09-17-1213-distro-default-smithi no_nested_subset: false os_type: ubuntu os_version: '22.04' overrides: admin_socket: branch: wip-guits-main-2024-09-17-1213 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: e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e workunit: branch: wip-guits-main-2024-09-17-1213 sha1: e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e 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: 8982 sha1: e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e sleep_before_teardown: 0 subset: 1/8 suite: orch:cephadm suite_branch: wip-guits-main-2024-09-17-1213 suite_path: /home/teuthworker/src/git.ceph.com_ceph-c_e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph-ci.git suite_sha1: e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e targets: smithi070.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKL4v91kGP3AZImPokJk2JI2ZssSsjdJJ2Xz+p79OT0kY0U16lGA4K36Roqkbp7cLYhnIom955Ogxh0P5edFers= smithi086.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOYlTdkANZPhAvxav2DdljDE27Q+LKnvlgbBRJySJY4mJMvGhrTF6oxr/yejjTOTJ1iYhEpQGo2XN8lZ2nJ0O8o= smithi172.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBB3+PQiLwpT6RzIku0BFv3H9oTlC3s2zIxf5SL2t190+/vSebTAGLZvkHANixTYcb0Yf070TFR8aoLGLipjHDQI= 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-18_06:59:44 tube: smithi user: gabrioux verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-18T08:02:03.492 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph-c_e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/qa; will attempt to use it 2024-09-18T08:02:03.493 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/qa/tasks 2024-09-18T08:02:03.493 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-18T08:02:03.494 INFO:teuthology.task.internal:Checking packages... 2024-09-18T08:02:03.516 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash 'e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e' 2024-09-18T08:02:03.516 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-18T08:02:03.516 INFO:teuthology.packaging:ref: None 2024-09-18T08:02:03.516 INFO:teuthology.packaging:tag: None 2024-09-18T08:02:03.516 INFO:teuthology.packaging:branch: wip-guits-main-2024-09-17-1213 2024-09-18T08:02:03.516 INFO:teuthology.packaging:sha1: e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e 2024-09-18T08:02:03.516 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-17-1213 2024-09-18T08:02:03.662 INFO:teuthology.task.internal:Found packages for ceph version 19.3.0-4983-ge7fb7b56-1jammy 2024-09-18T08:02:03.664 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-18T08:02:03.670 INFO:teuthology.task.internal:no buildpackages task found 2024-09-18T08:02:03.670 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-18T08:02:03.705 INFO:teuthology.task.internal:Saving configuration 2024-09-18T08:02:03.718 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-18T08:02:03.725 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-18T08:02:03.750 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi070.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-09-18_06:59:44-orch:cephadm-wip-guits-main-2024-09-17-1213-distro-default-smithi/7910365', '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-18 07:56:19.901369', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDaC53RMOoMPPSRqTgKCuYGif71EYxCGcWIadiSpLudj'} 2024-09-18T08:02:03.772 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi086.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-09-18_06:59:44-orch:cephadm-wip-guits-main-2024-09-17-1213-distro-default-smithi/7910365', '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-18 07:56:19.904518', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGICX99S1Bpy0roNPYoix7Ap1TifyeqZXs5tkptdjPyr'} 2024-09-18T08:02:03.796 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi172.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-09-18_06:59:44-orch:cephadm-wip-guits-main-2024-09-17-1213-distro-default-smithi/7910365', '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-18 07:56:19.903061', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII6WKFYYQhZ4oEUN0GmPFLK4b0lXlPUoI2ZQqIw+0D95'} 2024-09-18T08:02:03.796 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-18T08:02:03.801 INFO:teuthology.task.internal:roles: ubuntu@smithi070.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-09-18T08:02:03.802 INFO:teuthology.task.internal:roles: ubuntu@smithi086.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-09-18T08:02:03.802 INFO:teuthology.task.internal:roles: ubuntu@smithi172.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-09-18T08:02:03.802 INFO:teuthology.run_tasks:Running task console_log... 2024-09-18T08:02:03.902 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f9af463bbe0>, signals=[15]) 2024-09-18T08:02:03.902 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-18T08:02:03.907 INFO:teuthology.task.internal:Opening connections... 2024-09-18T08:02:03.908 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi070.front.sepia.ceph.com 2024-09-18T08:02:03.909 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi070.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T08:02:03.989 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi086.front.sepia.ceph.com 2024-09-18T08:02:03.990 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi086.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T08:02:04.072 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi172.front.sepia.ceph.com 2024-09-18T08:02:04.073 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi172.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T08:02:04.155 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-18T08:02:04.161 DEBUG:teuthology.orchestra.run.smithi070:> uname -m 2024-09-18T08:02:04.167 INFO:teuthology.orchestra.run.smithi070.stdout:x86_64 2024-09-18T08:02:04.167 DEBUG:teuthology.orchestra.run.smithi070:> cat /etc/os-release 2024-09-18T08:02:04.215 INFO:teuthology.orchestra.run.smithi070.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-18T08:02:04.215 INFO:teuthology.orchestra.run.smithi070.stdout:NAME="Ubuntu" 2024-09-18T08:02:04.216 INFO:teuthology.orchestra.run.smithi070.stdout:VERSION_ID="22.04" 2024-09-18T08:02:04.216 INFO:teuthology.orchestra.run.smithi070.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-18T08:02:04.216 INFO:teuthology.orchestra.run.smithi070.stdout:VERSION_CODENAME=jammy 2024-09-18T08:02:04.216 INFO:teuthology.orchestra.run.smithi070.stdout:ID=ubuntu 2024-09-18T08:02:04.216 INFO:teuthology.orchestra.run.smithi070.stdout:ID_LIKE=debian 2024-09-18T08:02:04.216 INFO:teuthology.orchestra.run.smithi070.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-18T08:02:04.216 INFO:teuthology.orchestra.run.smithi070.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-18T08:02:04.216 INFO:teuthology.orchestra.run.smithi070.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-18T08:02:04.216 INFO:teuthology.orchestra.run.smithi070.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-18T08:02:04.216 INFO:teuthology.orchestra.run.smithi070.stdout:UBUNTU_CODENAME=jammy 2024-09-18T08:02:04.217 INFO:teuthology.lock.ops:Updating smithi070.front.sepia.ceph.com on lock server 2024-09-18T08:02:04.241 DEBUG:teuthology.orchestra.run.smithi086:> uname -m 2024-09-18T08:02:04.246 INFO:teuthology.orchestra.run.smithi086.stdout:x86_64 2024-09-18T08:02:04.247 DEBUG:teuthology.orchestra.run.smithi086:> cat /etc/os-release 2024-09-18T08:02:04.296 INFO:teuthology.orchestra.run.smithi086.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-18T08:02:04.296 INFO:teuthology.orchestra.run.smithi086.stdout:NAME="Ubuntu" 2024-09-18T08:02:04.296 INFO:teuthology.orchestra.run.smithi086.stdout:VERSION_ID="22.04" 2024-09-18T08:02:04.296 INFO:teuthology.orchestra.run.smithi086.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-18T08:02:04.296 INFO:teuthology.orchestra.run.smithi086.stdout:VERSION_CODENAME=jammy 2024-09-18T08:02:04.296 INFO:teuthology.orchestra.run.smithi086.stdout:ID=ubuntu 2024-09-18T08:02:04.296 INFO:teuthology.orchestra.run.smithi086.stdout:ID_LIKE=debian 2024-09-18T08:02:04.296 INFO:teuthology.orchestra.run.smithi086.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-18T08:02:04.296 INFO:teuthology.orchestra.run.smithi086.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-18T08:02:04.296 INFO:teuthology.orchestra.run.smithi086.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-18T08:02:04.297 INFO:teuthology.orchestra.run.smithi086.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-18T08:02:04.297 INFO:teuthology.orchestra.run.smithi086.stdout:UBUNTU_CODENAME=jammy 2024-09-18T08:02:04.297 INFO:teuthology.lock.ops:Updating smithi086.front.sepia.ceph.com on lock server 2024-09-18T08:02:04.325 DEBUG:teuthology.orchestra.run.smithi172:> uname -m 2024-09-18T08:02:04.330 INFO:teuthology.orchestra.run.smithi172.stdout:x86_64 2024-09-18T08:02:04.331 DEBUG:teuthology.orchestra.run.smithi172:> cat /etc/os-release 2024-09-18T08:02:04.379 INFO:teuthology.orchestra.run.smithi172.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-18T08:02:04.379 INFO:teuthology.orchestra.run.smithi172.stdout:NAME="Ubuntu" 2024-09-18T08:02:04.380 INFO:teuthology.orchestra.run.smithi172.stdout:VERSION_ID="22.04" 2024-09-18T08:02:04.380 INFO:teuthology.orchestra.run.smithi172.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-18T08:02:04.380 INFO:teuthology.orchestra.run.smithi172.stdout:VERSION_CODENAME=jammy 2024-09-18T08:02:04.380 INFO:teuthology.orchestra.run.smithi172.stdout:ID=ubuntu 2024-09-18T08:02:04.380 INFO:teuthology.orchestra.run.smithi172.stdout:ID_LIKE=debian 2024-09-18T08:02:04.380 INFO:teuthology.orchestra.run.smithi172.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-18T08:02:04.380 INFO:teuthology.orchestra.run.smithi172.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-18T08:02:04.380 INFO:teuthology.orchestra.run.smithi172.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-18T08:02:04.380 INFO:teuthology.orchestra.run.smithi172.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-18T08:02:04.380 INFO:teuthology.orchestra.run.smithi172.stdout:UBUNTU_CODENAME=jammy 2024-09-18T08:02:04.381 INFO:teuthology.lock.ops:Updating smithi172.front.sepia.ceph.com on lock server 2024-09-18T08:02:04.399 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-18T08:02:04.408 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-18T08:02:04.462 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-18T08:02:04.463 DEBUG:teuthology.orchestra.run.smithi070:> test '!' -e /home/ubuntu/cephtest 2024-09-18T08:02:04.465 DEBUG:teuthology.orchestra.run.smithi086:> test '!' -e /home/ubuntu/cephtest 2024-09-18T08:02:04.468 DEBUG:teuthology.orchestra.run.smithi172:> test '!' -e /home/ubuntu/cephtest 2024-09-18T08:02:04.473 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-18T08:02:04.478 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-18T08:02:04.478 DEBUG:teuthology.orchestra.run.smithi070:> test -z $(ls -A /var/lib/ceph) 2024-09-18T08:02:04.517 DEBUG:teuthology.orchestra.run.smithi086:> test -z $(ls -A /var/lib/ceph) 2024-09-18T08:02:04.519 DEBUG:teuthology.orchestra.run.smithi172:> test -z $(ls -A /var/lib/ceph) 2024-09-18T08:02:04.529 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-18T08:02:04.590 INFO:teuthology.run_tasks:Running task kernel... 2024-09-18T08:02:04.604 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-18T08:02:04.604 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-18T08:02:04.605 DEBUG:teuthology.orchestra.run.smithi070:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-18T08:02:04.605 DEBUG:teuthology.orchestra.run.smithi086:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-18T08:02:04.606 DEBUG:teuthology.orchestra.run.smithi172:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-18T08:02:04.610 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-18T08:02:04.611 DEBUG:teuthology.orchestra.run.smithi086:> uname -r 2024-09-18T08:02:04.612 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-18T08:02:04.612 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-18T08:02:04.612 DEBUG:teuthology.orchestra.run.smithi172:> uname -r 2024-09-18T08:02:04.613 DEBUG:teuthology.orchestra.run.smithi070:> uname -r 2024-09-18T08:02:04.659 INFO:teuthology.orchestra.run.smithi172.stdout:5.15.0-56-generic 2024-09-18T08:02:04.659 INFO:teuthology.task.kernel:Running kernel on smithi172: 5.15.0-56-generic 2024-09-18T08:02:04.659 DEBUG:teuthology.orchestra.run.smithi172:> sudo apt-get clean 2024-09-18T08:02:04.661 INFO:teuthology.orchestra.run.smithi070.stdout:5.15.0-56-generic 2024-09-18T08:02:04.661 INFO:teuthology.orchestra.run.smithi086.stdout:5.15.0-56-generic 2024-09-18T08:02:04.661 INFO:teuthology.task.kernel:Running kernel on smithi070: 5.15.0-56-generic 2024-09-18T08:02:04.661 DEBUG:teuthology.orchestra.run.smithi070:> sudo apt-get clean 2024-09-18T08:02:04.662 INFO:teuthology.task.kernel:Running kernel on smithi086: 5.15.0-56-generic 2024-09-18T08:02:04.662 DEBUG:teuthology.orchestra.run.smithi086:> sudo apt-get clean 2024-09-18T08:02:04.784 DEBUG:teuthology.orchestra.run.smithi172:> sudo apt-get update 2024-09-18T08:02:04.785 DEBUG:teuthology.orchestra.run.smithi070:> sudo apt-get update 2024-09-18T08:02:04.795 DEBUG:teuthology.orchestra.run.smithi086:> sudo apt-get update 2024-09-18T08:02:04.938 INFO:teuthology.orchestra.run.smithi172.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-18T08:02:04.939 INFO:teuthology.orchestra.run.smithi086.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-18T08:02:04.947 INFO:teuthology.orchestra.run.smithi070.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-18T08:02:04.949 INFO:teuthology.orchestra.run.smithi070.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-18T08:02:04.951 INFO:teuthology.orchestra.run.smithi086.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-18T08:02:04.951 INFO:teuthology.orchestra.run.smithi070.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-18T08:02:05.017 INFO:teuthology.orchestra.run.smithi086.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-18T08:02:05.028 INFO:teuthology.orchestra.run.smithi070.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-18T08:02:05.035 INFO:teuthology.orchestra.run.smithi172.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-18T08:02:05.051 INFO:teuthology.orchestra.run.smithi086.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-18T08:02:05.120 INFO:teuthology.orchestra.run.smithi172.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-18T08:02:05.171 INFO:teuthology.orchestra.run.smithi086.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [701 kB] 2024-09-18T08:02:05.203 INFO:teuthology.orchestra.run.smithi070.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [544 kB] 2024-09-18T08:02:05.222 INFO:teuthology.orchestra.run.smithi172.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,839 kB] 2024-09-18T08:02:05.243 INFO:teuthology.orchestra.run.smithi086.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,058 kB] 2024-09-18T08:02:05.272 INFO:teuthology.orchestra.run.smithi070.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,839 kB] 2024-09-18T08:02:05.278 INFO:teuthology.orchestra.run.smithi070.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [701 kB] 2024-09-18T08:02:05.280 INFO:teuthology.orchestra.run.smithi086.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [355 kB] 2024-09-18T08:02:05.283 INFO:teuthology.orchestra.run.smithi086.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-18T08:02:05.283 INFO:teuthology.orchestra.run.smithi086.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-18T08:02:05.283 INFO:teuthology.orchestra.run.smithi086.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,495 kB] 2024-09-18T08:02:05.303 INFO:teuthology.orchestra.run.smithi086.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [429 kB] 2024-09-18T08:02:05.307 INFO:teuthology.orchestra.run.smithi086.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-18T08:02:05.307 INFO:teuthology.orchestra.run.smithi086.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [732 kB] 2024-09-18T08:02:05.310 INFO:teuthology.orchestra.run.smithi070.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [298 kB] 2024-09-18T08:02:05.312 INFO:teuthology.orchestra.run.smithi070.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-18T08:02:05.312 INFO:teuthology.orchestra.run.smithi070.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-18T08:02:05.313 INFO:teuthology.orchestra.run.smithi070.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,431 kB] 2024-09-18T08:02:05.313 INFO:teuthology.orchestra.run.smithi086.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,124 kB] 2024-09-18T08:02:05.321 INFO:teuthology.orchestra.run.smithi086.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-18T08:02:05.323 INFO:teuthology.orchestra.run.smithi172.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [544 kB] 2024-09-18T08:02:05.324 INFO:teuthology.orchestra.run.smithi086.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-18T08:02:05.331 INFO:teuthology.orchestra.run.smithi172.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [298 kB] 2024-09-18T08:02:05.331 INFO:teuthology.orchestra.run.smithi172.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-18T08:02:05.331 INFO:teuthology.orchestra.run.smithi172.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-18T08:02:05.331 INFO:teuthology.orchestra.run.smithi172.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,431 kB] 2024-09-18T08:02:05.332 INFO:teuthology.orchestra.run.smithi070.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [418 kB] 2024-09-18T08:02:05.334 INFO:teuthology.orchestra.run.smithi070.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-18T08:02:05.334 INFO:teuthology.orchestra.run.smithi070.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [903 kB] 2024-09-18T08:02:05.340 INFO:teuthology.orchestra.run.smithi070.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [628 kB] 2024-09-18T08:02:05.342 INFO:teuthology.orchestra.run.smithi070.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,058 kB] 2024-09-18T08:02:05.344 INFO:teuthology.orchestra.run.smithi070.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [177 kB] 2024-09-18T08:02:05.345 INFO:teuthology.orchestra.run.smithi070.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.3 kB] 2024-09-18T08:02:05.346 INFO:teuthology.orchestra.run.smithi070.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-18T08:02:05.350 INFO:teuthology.orchestra.run.smithi172.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [418 kB] 2024-09-18T08:02:05.353 INFO:teuthology.orchestra.run.smithi172.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-18T08:02:05.353 INFO:teuthology.orchestra.run.smithi172.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [903 kB] 2024-09-18T08:02:05.354 INFO:teuthology.orchestra.run.smithi086.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-18T08:02:05.354 INFO:teuthology.orchestra.run.smithi086.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-18T08:02:05.355 INFO:teuthology.orchestra.run.smithi086.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-18T08:02:05.355 INFO:teuthology.orchestra.run.smithi086.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-18T08:02:05.355 INFO:teuthology.orchestra.run.smithi086.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-18T08:02:05.355 INFO:teuthology.orchestra.run.smithi086.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-18T08:02:05.356 INFO:teuthology.orchestra.run.smithi086.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-18T08:02:05.356 INFO:teuthology.orchestra.run.smithi086.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-18T08:02:05.359 INFO:teuthology.orchestra.run.smithi172.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [628 kB] 2024-09-18T08:02:05.363 INFO:teuthology.orchestra.run.smithi172.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [177 kB] 2024-09-18T08:02:05.364 INFO:teuthology.orchestra.run.smithi172.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.3 kB] 2024-09-18T08:02:05.365 INFO:teuthology.orchestra.run.smithi172.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-18T08:02:05.366 INFO:teuthology.orchestra.run.smithi172.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-18T08:02:05.366 INFO:teuthology.orchestra.run.smithi172.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-18T08:02:05.366 INFO:teuthology.orchestra.run.smithi070.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-18T08:02:05.366 INFO:teuthology.orchestra.run.smithi070.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-18T08:02:05.366 INFO:teuthology.orchestra.run.smithi070.stdout:Get:22 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-18T08:02:05.371 INFO:teuthology.orchestra.run.smithi086.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-18T08:02:05.378 INFO:teuthology.orchestra.run.smithi070.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [355 kB] 2024-09-18T08:02:05.382 INFO:teuthology.orchestra.run.smithi070.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-18T08:02:05.383 INFO:teuthology.orchestra.run.smithi070.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-18T08:02:05.383 INFO:teuthology.orchestra.run.smithi070.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,495 kB] 2024-09-18T08:02:05.388 INFO:teuthology.orchestra.run.smithi086.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-18T08:02:05.389 INFO:teuthology.orchestra.run.smithi086.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-18T08:02:05.389 INFO:teuthology.orchestra.run.smithi086.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-18T08:02:05.401 INFO:teuthology.orchestra.run.smithi070.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [429 kB] 2024-09-18T08:02:05.404 INFO:teuthology.orchestra.run.smithi070.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-18T08:02:05.404 INFO:teuthology.orchestra.run.smithi070.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [732 kB] 2024-09-18T08:02:05.409 INFO:teuthology.orchestra.run.smithi070.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,124 kB] 2024-09-18T08:02:05.417 INFO:teuthology.orchestra.run.smithi070.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-18T08:02:05.418 INFO:teuthology.orchestra.run.smithi070.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-18T08:02:05.419 INFO:teuthology.orchestra.run.smithi070.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-18T08:02:05.419 INFO:teuthology.orchestra.run.smithi070.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-18T08:02:05.419 INFO:teuthology.orchestra.run.smithi070.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-18T08:02:05.433 INFO:teuthology.orchestra.run.smithi070.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-18T08:02:05.433 INFO:teuthology.orchestra.run.smithi070.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-18T08:02:05.433 INFO:teuthology.orchestra.run.smithi070.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-18T08:02:05.434 INFO:teuthology.orchestra.run.smithi070.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-18T08:02:05.450 INFO:teuthology.orchestra.run.smithi070.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-18T08:02:05.450 INFO:teuthology.orchestra.run.smithi070.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-18T08:02:05.450 INFO:teuthology.orchestra.run.smithi070.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-18T08:02:05.451 INFO:teuthology.orchestra.run.smithi070.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-18T08:02:05.451 INFO:teuthology.orchestra.run.smithi070.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-18T08:02:05.458 INFO:teuthology.orchestra.run.smithi172.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-18T08:02:05.473 INFO:teuthology.orchestra.run.smithi172.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-18T08:02:05.503 INFO:teuthology.orchestra.run.smithi086.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,839 kB] 2024-09-18T08:02:05.614 INFO:teuthology.orchestra.run.smithi172.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [701 kB] 2024-09-18T08:02:05.809 INFO:teuthology.orchestra.run.smithi172.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,058 kB] 2024-09-18T08:02:05.927 INFO:teuthology.orchestra.run.smithi086.stdout:Get:30 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [544 kB] 2024-09-18T08:02:05.943 INFO:teuthology.orchestra.run.smithi086.stdout:Get:31 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [298 kB] 2024-09-18T08:02:05.952 INFO:teuthology.orchestra.run.smithi086.stdout:Get:32 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-18T08:02:05.953 INFO:teuthology.orchestra.run.smithi086.stdout:Get:33 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-18T08:02:05.955 INFO:teuthology.orchestra.run.smithi086.stdout:Get:34 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,431 kB] 2024-09-18T08:02:05.972 INFO:teuthology.orchestra.run.smithi172.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [355 kB] 2024-09-18T08:02:05.986 INFO:teuthology.orchestra.run.smithi172.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-18T08:02:05.986 INFO:teuthology.orchestra.run.smithi172.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,495 kB] 2024-09-18T08:02:06.051 INFO:teuthology.orchestra.run.smithi086.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [418 kB] 2024-09-18T08:02:06.056 INFO:teuthology.orchestra.run.smithi172.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-18T08:02:06.060 INFO:teuthology.orchestra.run.smithi172.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [429 kB] 2024-09-18T08:02:06.061 INFO:teuthology.orchestra.run.smithi086.stdout:Get:36 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-18T08:02:06.062 INFO:teuthology.orchestra.run.smithi086.stdout:Get:37 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [903 kB] 2024-09-18T08:02:06.075 INFO:teuthology.orchestra.run.smithi172.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-18T08:02:06.076 INFO:teuthology.orchestra.run.smithi172.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [732 kB] 2024-09-18T08:02:06.091 INFO:teuthology.orchestra.run.smithi086.stdout:Get:38 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [628 kB] 2024-09-18T08:02:06.096 INFO:teuthology.orchestra.run.smithi172.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,124 kB] 2024-09-18T08:02:06.106 INFO:teuthology.orchestra.run.smithi086.stdout:Get:39 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [177 kB] 2024-09-18T08:02:06.112 INFO:teuthology.orchestra.run.smithi086.stdout:Get:40 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.3 kB] 2024-09-18T08:02:06.113 INFO:teuthology.orchestra.run.smithi086.stdout:Get:41 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-18T08:02:06.113 INFO:teuthology.orchestra.run.smithi086.stdout:Get:42 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-18T08:02:06.115 INFO:teuthology.orchestra.run.smithi086.stdout:Get:43 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-18T08:02:06.125 INFO:teuthology.orchestra.run.smithi172.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-18T08:02:06.130 INFO:teuthology.orchestra.run.smithi172.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-18T08:02:06.136 INFO:teuthology.orchestra.run.smithi172.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-18T08:02:06.136 INFO:teuthology.orchestra.run.smithi172.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-18T08:02:06.192 INFO:teuthology.orchestra.run.smithi086.stdout:Get:44 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-18T08:02:06.208 INFO:teuthology.orchestra.run.smithi172.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-18T08:02:06.208 INFO:teuthology.orchestra.run.smithi172.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-18T08:02:06.208 INFO:teuthology.orchestra.run.smithi172.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-18T08:02:06.210 INFO:teuthology.orchestra.run.smithi172.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-18T08:02:06.211 INFO:teuthology.orchestra.run.smithi172.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-18T08:02:06.217 INFO:teuthology.orchestra.run.smithi172.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-18T08:02:06.218 INFO:teuthology.orchestra.run.smithi172.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-18T08:02:06.218 INFO:teuthology.orchestra.run.smithi172.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-18T08:02:06.299 INFO:teuthology.orchestra.run.smithi172.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-18T08:02:06.299 INFO:teuthology.orchestra.run.smithi172.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-18T08:02:11.648 INFO:teuthology.orchestra.run.smithi172.stdout:Fetched 16.2 MB in 2s (7,184 kB/s) 2024-09-18T08:02:11.700 INFO:teuthology.orchestra.run.smithi086.stdout:Fetched 16.2 MB in 2s (7,563 kB/s) 2024-09-18T08:02:11.850 INFO:teuthology.orchestra.run.smithi070.stdout:Fetched 16.2 MB in 2s (7,380 kB/s) 2024-09-18T08:02:13.039 INFO:teuthology.orchestra.run.smithi172.stdout:Reading package lists... 2024-09-18T08:02:13.057 DEBUG:teuthology.orchestra.run.smithi172:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-18T08:02:13.097 INFO:teuthology.orchestra.run.smithi086.stdout:Reading package lists... 2024-09-18T08:02:13.111 INFO:teuthology.orchestra.run.smithi172.stdout:Reading package lists... 2024-09-18T08:02:13.115 DEBUG:teuthology.orchestra.run.smithi086:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-18T08:02:13.179 INFO:teuthology.orchestra.run.smithi086.stdout:Reading package lists... 2024-09-18T08:02:13.298 INFO:teuthology.orchestra.run.smithi172.stdout:Building dependency tree... 2024-09-18T08:02:13.299 INFO:teuthology.orchestra.run.smithi172.stdout:Reading state information... 2024-09-18T08:02:13.357 INFO:teuthology.orchestra.run.smithi070.stdout:Reading package lists... 2024-09-18T08:02:13.374 DEBUG:teuthology.orchestra.run.smithi070:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-18T08:02:13.390 INFO:teuthology.orchestra.run.smithi086.stdout:Building dependency tree... 2024-09-18T08:02:13.390 INFO:teuthology.orchestra.run.smithi086.stdout:Reading state information... 2024-09-18T08:02:13.436 INFO:teuthology.orchestra.run.smithi070.stdout:Reading package lists... 2024-09-18T08:02:13.467 INFO:teuthology.orchestra.run.smithi172.stdout:The following packages were automatically installed and are no longer required: 2024-09-18T08:02:13.467 INFO:teuthology.orchestra.run.smithi172.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-18T08:02:13.467 INFO:teuthology.orchestra.run.smithi172.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-18T08:02:13.468 INFO:teuthology.orchestra.run.smithi172.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-18T08:02:13.468 INFO:teuthology.orchestra.run.smithi172.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-18T08:02:13.468 INFO:teuthology.orchestra.run.smithi172.stdout: python2.7-minimal 2024-09-18T08:02:13.468 INFO:teuthology.orchestra.run.smithi172.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-18T08:02:13.469 INFO:teuthology.orchestra.run.smithi172.stdout:The following additional packages will be installed: 2024-09-18T08:02:13.469 INFO:teuthology.orchestra.run.smithi172.stdout: linux-generic linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-18T08:02:13.469 INFO:teuthology.orchestra.run.smithi172.stdout: linux-headers-generic linux-image-5.15.0-122-generic 2024-09-18T08:02:13.470 INFO:teuthology.orchestra.run.smithi172.stdout: linux-modules-5.15.0-122-generic linux-modules-extra-5.15.0-122-generic 2024-09-18T08:02:13.471 INFO:teuthology.orchestra.run.smithi172.stdout:Suggested packages: 2024-09-18T08:02:13.471 INFO:teuthology.orchestra.run.smithi172.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-18T08:02:13.471 INFO:teuthology.orchestra.run.smithi172.stdout:Recommended packages: 2024-09-18T08:02:13.471 INFO:teuthology.orchestra.run.smithi172.stdout: thermald 2024-09-18T08:02:13.519 INFO:teuthology.orchestra.run.smithi172.stdout:The following NEW packages will be installed: 2024-09-18T08:02:13.520 INFO:teuthology.orchestra.run.smithi172.stdout: linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-18T08:02:13.520 INFO:teuthology.orchestra.run.smithi172.stdout: linux-image-5.15.0-122-generic linux-modules-5.15.0-122-generic 2024-09-18T08:02:13.520 INFO:teuthology.orchestra.run.smithi172.stdout: linux-modules-extra-5.15.0-122-generic 2024-09-18T08:02:13.521 INFO:teuthology.orchestra.run.smithi172.stdout:The following packages will be upgraded: 2024-09-18T08:02:13.521 INFO:teuthology.orchestra.run.smithi172.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-18T08:02:13.581 INFO:teuthology.orchestra.run.smithi086.stdout:The following packages were automatically installed and are no longer required: 2024-09-18T08:02:13.581 INFO:teuthology.orchestra.run.smithi086.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-18T08:02:13.581 INFO:teuthology.orchestra.run.smithi086.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-18T08:02:13.582 INFO:teuthology.orchestra.run.smithi086.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-18T08:02:13.582 INFO:teuthology.orchestra.run.smithi086.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-18T08:02:13.582 INFO:teuthology.orchestra.run.smithi086.stdout: python2.7-minimal 2024-09-18T08:02:13.582 INFO:teuthology.orchestra.run.smithi086.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-18T08:02:13.583 INFO:teuthology.orchestra.run.smithi086.stdout:The following additional packages will be installed: 2024-09-18T08:02:13.583 INFO:teuthology.orchestra.run.smithi086.stdout: linux-generic linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-18T08:02:13.583 INFO:teuthology.orchestra.run.smithi086.stdout: linux-headers-generic linux-image-5.15.0-122-generic 2024-09-18T08:02:13.583 INFO:teuthology.orchestra.run.smithi086.stdout: linux-modules-5.15.0-122-generic linux-modules-extra-5.15.0-122-generic 2024-09-18T08:02:13.585 INFO:teuthology.orchestra.run.smithi086.stdout:Suggested packages: 2024-09-18T08:02:13.585 INFO:teuthology.orchestra.run.smithi086.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-18T08:02:13.585 INFO:teuthology.orchestra.run.smithi086.stdout:Recommended packages: 2024-09-18T08:02:13.585 INFO:teuthology.orchestra.run.smithi086.stdout: thermald 2024-09-18T08:02:13.626 INFO:teuthology.orchestra.run.smithi086.stdout:The following NEW packages will be installed: 2024-09-18T08:02:13.626 INFO:teuthology.orchestra.run.smithi086.stdout: linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-18T08:02:13.627 INFO:teuthology.orchestra.run.smithi086.stdout: linux-image-5.15.0-122-generic linux-modules-5.15.0-122-generic 2024-09-18T08:02:13.627 INFO:teuthology.orchestra.run.smithi086.stdout: linux-modules-extra-5.15.0-122-generic 2024-09-18T08:02:13.628 INFO:teuthology.orchestra.run.smithi086.stdout:The following packages will be upgraded: 2024-09-18T08:02:13.628 INFO:teuthology.orchestra.run.smithi086.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-18T08:02:13.679 INFO:teuthology.orchestra.run.smithi070.stdout:Building dependency tree... 2024-09-18T08:02:13.680 INFO:teuthology.orchestra.run.smithi086.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-18T08:02:13.680 INFO:teuthology.orchestra.run.smithi086.stdout:Need to get 113 MB of archives. 2024-09-18T08:02:13.680 INFO:teuthology.orchestra.run.smithi086.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-18T08:02:13.680 INFO:teuthology.orchestra.run.smithi086.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-18T08:02:13.680 INFO:teuthology.orchestra.run.smithi070.stdout:Reading state information... 2024-09-18T08:02:13.702 INFO:teuthology.orchestra.run.smithi172.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-18T08:02:13.702 INFO:teuthology.orchestra.run.smithi172.stdout:Need to get 113 MB of archives. 2024-09-18T08:02:13.702 INFO:teuthology.orchestra.run.smithi172.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-18T08:02:13.702 INFO:teuthology.orchestra.run.smithi172.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-18T08:02:13.859 INFO:teuthology.orchestra.run.smithi070.stdout:The following packages were automatically installed and are no longer required: 2024-09-18T08:02:13.859 INFO:teuthology.orchestra.run.smithi070.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-18T08:02:13.859 INFO:teuthology.orchestra.run.smithi070.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-18T08:02:13.860 INFO:teuthology.orchestra.run.smithi070.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-18T08:02:13.860 INFO:teuthology.orchestra.run.smithi070.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-18T08:02:13.860 INFO:teuthology.orchestra.run.smithi070.stdout: python2.7-minimal 2024-09-18T08:02:13.860 INFO:teuthology.orchestra.run.smithi070.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-18T08:02:13.861 INFO:teuthology.orchestra.run.smithi070.stdout:The following additional packages will be installed: 2024-09-18T08:02:13.861 INFO:teuthology.orchestra.run.smithi070.stdout: linux-generic linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-18T08:02:13.861 INFO:teuthology.orchestra.run.smithi070.stdout: linux-headers-generic linux-image-5.15.0-122-generic 2024-09-18T08:02:13.862 INFO:teuthology.orchestra.run.smithi070.stdout: linux-modules-5.15.0-122-generic linux-modules-extra-5.15.0-122-generic 2024-09-18T08:02:13.863 INFO:teuthology.orchestra.run.smithi070.stdout:Suggested packages: 2024-09-18T08:02:13.863 INFO:teuthology.orchestra.run.smithi070.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-18T08:02:13.863 INFO:teuthology.orchestra.run.smithi070.stdout:Recommended packages: 2024-09-18T08:02:13.863 INFO:teuthology.orchestra.run.smithi070.stdout: thermald 2024-09-18T08:02:13.917 INFO:teuthology.orchestra.run.smithi070.stdout:The following NEW packages will be installed: 2024-09-18T08:02:13.917 INFO:teuthology.orchestra.run.smithi070.stdout: linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-18T08:02:13.917 INFO:teuthology.orchestra.run.smithi070.stdout: linux-image-5.15.0-122-generic linux-modules-5.15.0-122-generic 2024-09-18T08:02:13.918 INFO:teuthology.orchestra.run.smithi070.stdout: linux-modules-extra-5.15.0-122-generic 2024-09-18T08:02:13.919 INFO:teuthology.orchestra.run.smithi070.stdout:The following packages will be upgraded: 2024-09-18T08:02:13.919 INFO:teuthology.orchestra.run.smithi070.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-18T08:02:13.972 INFO:teuthology.orchestra.run.smithi070.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-18T08:02:13.972 INFO:teuthology.orchestra.run.smithi070.stdout:Need to get 113 MB of archives. 2024-09-18T08:02:13.972 INFO:teuthology.orchestra.run.smithi070.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-18T08:02:13.972 INFO:teuthology.orchestra.run.smithi070.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-18T08:02:14.116 INFO:teuthology.orchestra.run.smithi086.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-18T08:02:14.218 INFO:teuthology.orchestra.run.smithi086.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-18T08:02:14.385 INFO:teuthology.orchestra.run.smithi070.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-18T08:02:14.480 INFO:teuthology.orchestra.run.smithi070.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-18T08:02:15.017 INFO:teuthology.orchestra.run.smithi086.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-18T08:02:15.018 INFO:teuthology.orchestra.run.smithi086.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-18T08:02:15.018 INFO:teuthology.orchestra.run.smithi086.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-18T08:02:15.111 INFO:teuthology.orchestra.run.smithi172.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-18T08:02:15.137 INFO:teuthology.orchestra.run.smithi086.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-18T08:02:15.159 INFO:teuthology.orchestra.run.smithi086.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-18T08:02:15.277 INFO:teuthology.orchestra.run.smithi070.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-18T08:02:15.277 INFO:teuthology.orchestra.run.smithi070.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-18T08:02:15.277 INFO:teuthology.orchestra.run.smithi070.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-18T08:02:15.396 INFO:teuthology.orchestra.run.smithi070.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-18T08:02:15.465 INFO:teuthology.orchestra.run.smithi172.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-18T08:02:15.502 INFO:teuthology.orchestra.run.smithi070.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-18T08:02:15.645 INFO:teuthology.orchestra.run.smithi086.stdout:Fetched 113 MB in 2s (71.4 MB/s) 2024-09-18T08:02:15.836 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package linux-modules-5.15.0-122-generic. 2024-09-18T08:02:15.929 INFO:teuthology.orchestra.run.smithi070.stdout:Fetched 113 MB in 2s (71.9 MB/s) 2024-09-18T08:02:16.104 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package linux-modules-5.15.0-122-generic. 2024-09-18T08:02:17.708 INFO:teuthology.orchestra.run.smithi172.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-18T08:02:17.709 INFO:teuthology.orchestra.run.smithi172.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-18T08:02:17.709 INFO:teuthology.orchestra.run.smithi172.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-18T08:02:18.020 INFO:teuthology.orchestra.run.smithi086.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-18T08:02:18.024 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../0-linux-modules-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-18T08:02:18.047 INFO:teuthology.orchestra.run.smithi172.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-18T08:02:18.113 INFO:teuthology.orchestra.run.smithi070.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-18T08:02:18.118 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../0-linux-modules-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-18T08:02:18.128 INFO:teuthology.orchestra.run.smithi172.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-18T08:02:18.218 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:18.266 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:18.531 INFO:teuthology.orchestra.run.smithi172.stdout:Fetched 113 MB in 5s (24.6 MB/s) 2024-09-18T08:02:18.707 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package linux-modules-5.15.0-122-generic. 2024-09-18T08:02:20.259 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package linux-image-5.15.0-122-generic. 2024-09-18T08:02:20.280 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../1-linux-image-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-18T08:02:20.373 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:20.629 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package linux-image-5.15.0-122-generic. 2024-09-18T08:02:20.650 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../1-linux-image-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-18T08:02:20.726 INFO:teuthology.orchestra.run.smithi172.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-18T08:02:20.730 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../0-linux-modules-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-18T08:02:20.737 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:20.820 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:20.828 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-122-generic. 2024-09-18T08:02:20.849 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-18T08:02:20.887 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:21.240 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-122-generic. 2024-09-18T08:02:21.261 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-18T08:02:21.298 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:22.846 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package linux-image-5.15.0-122-generic. 2024-09-18T08:02:22.867 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../1-linux-image-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-18T08:02:22.958 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:23.390 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-122-generic. 2024-09-18T08:02:23.411 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-18T08:02:23.457 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:27.677 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../3-linux-generic_5.15.0.122.122_amd64.deb ... 2024-09-18T08:02:27.762 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../3-linux-generic_5.15.0.122.122_amd64.deb ... 2024-09-18T08:02:27.805 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking linux-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-18T08:02:27.878 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking linux-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-18T08:02:28.104 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.122.122_amd64.deb ... 2024-09-18T08:02:28.217 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking linux-image-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-18T08:02:28.229 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.122.122_amd64.deb ... 2024-09-18T08:02:28.357 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking linux-image-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-18T08:02:28.486 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package linux-headers-5.15.0-122. 2024-09-18T08:02:28.508 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../5-linux-headers-5.15.0-122_5.15.0-122.132_all.deb ... 2024-09-18T08:02:28.553 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-18T08:02:28.685 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package linux-headers-5.15.0-122. 2024-09-18T08:02:28.707 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../5-linux-headers-5.15.0-122_5.15.0-122.132_all.deb ... 2024-09-18T08:02:28.751 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-18T08:02:30.265 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../3-linux-generic_5.15.0.122.122_amd64.deb ... 2024-09-18T08:02:30.389 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking linux-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-18T08:02:30.697 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.122.122_amd64.deb ... 2024-09-18T08:02:30.803 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking linux-image-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-18T08:02:31.139 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package linux-headers-5.15.0-122. 2024-09-18T08:02:31.162 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../5-linux-headers-5.15.0-122_5.15.0-122.132_all.deb ... 2024-09-18T08:02:31.206 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-18T08:02:33.772 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package linux-headers-5.15.0-122-generic. 2024-09-18T08:02:33.809 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../6-linux-headers-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-18T08:02:33.847 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:34.640 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package linux-headers-5.15.0-122-generic. 2024-09-18T08:02:34.677 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../6-linux-headers-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-18T08:02:34.714 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:36.442 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.122.122_amd64.deb ... 2024-09-18T08:02:36.582 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking linux-headers-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-18T08:02:36.839 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package linux-headers-5.15.0-122-generic. 2024-09-18T08:02:36.876 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../6-linux-headers-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-18T08:02:36.899 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-18T08:02:36.914 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:36.995 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:37.104 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up linux-headers-generic (5.15.0.122.122) ... 2024-09-18T08:02:37.233 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:37.594 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.122.122_amd64.deb ... 2024-09-18T08:02:37.711 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking linux-headers-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-18T08:02:38.061 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-18T08:02:38.182 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:38.309 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up linux-headers-generic (5.15.0.122.122) ... 2024-09-18T08:02:38.454 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:38.566 INFO:teuthology.orchestra.run.smithi086.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-18T08:02:38.566 INFO:teuthology.orchestra.run.smithi086.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-18T08:02:38.566 INFO:teuthology.orchestra.run.smithi086.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-122-generic 2024-09-18T08:02:38.566 INFO:teuthology.orchestra.run.smithi086.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-122-generic 2024-09-18T08:02:38.726 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:39.640 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.122.122_amd64.deb ... 2024-09-18T08:02:39.761 INFO:teuthology.orchestra.run.smithi070.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-18T08:02:39.762 INFO:teuthology.orchestra.run.smithi070.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-18T08:02:39.762 INFO:teuthology.orchestra.run.smithi070.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-122-generic 2024-09-18T08:02:39.762 INFO:teuthology.orchestra.run.smithi070.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-122-generic 2024-09-18T08:02:39.765 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking linux-headers-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-18T08:02:39.915 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:40.106 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-18T08:02:40.169 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up linux-image-generic (5.15.0.122.122) ... 2024-09-18T08:02:40.228 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:40.295 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up linux-generic (5.15.0.122.122) ... 2024-09-18T08:02:41.113 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up linux-headers-generic (5.15.0.122.122) ... 2024-09-18T08:02:41.297 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:41.567 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:41.816 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up linux-image-generic (5.15.0.122.122) ... 2024-09-18T08:02:41.961 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up linux-generic (5.15.0.122.122) ... 2024-09-18T08:02:42.535 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:42.790 INFO:teuthology.orchestra.run.smithi086.stdout:Processing triggers for linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:42.854 INFO:teuthology.orchestra.run.smithi086.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-18T08:02:42.854 INFO:teuthology.orchestra.run.smithi086.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-122-generic 2024-09-18T08:02:42.890 INFO:teuthology.orchestra.run.smithi172.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-18T08:02:42.890 INFO:teuthology.orchestra.run.smithi172.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-18T08:02:42.890 INFO:teuthology.orchestra.run.smithi172.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-122-generic 2024-09-18T08:02:42.890 INFO:teuthology.orchestra.run.smithi172.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-122-generic 2024-09-18T08:02:43.043 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:43.912 INFO:teuthology.orchestra.run.smithi070.stdout:Processing triggers for linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:43.967 INFO:teuthology.orchestra.run.smithi070.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-18T08:02:43.967 INFO:teuthology.orchestra.run.smithi070.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-122-generic 2024-09-18T08:02:44.444 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up linux-image-generic (5.15.0.122.122) ... 2024-09-18T08:02:44.570 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up linux-generic (5.15.0.122.122) ... 2024-09-18T08:02:44.696 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:46.098 INFO:teuthology.orchestra.run.smithi172.stdout:Processing triggers for linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-18T08:02:46.161 INFO:teuthology.orchestra.run.smithi172.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-18T08:02:46.161 INFO:teuthology.orchestra.run.smithi172.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-122-generic 2024-09-18T08:02:57.207 INFO:teuthology.orchestra.run.smithi086.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-18T08:02:57.207 INFO:teuthology.orchestra.run.smithi086.stdout:Sourcing file `/etc/default/grub' 2024-09-18T08:02:57.224 INFO:teuthology.orchestra.run.smithi086.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-18T08:02:57.242 INFO:teuthology.orchestra.run.smithi086.stdout:Generating grub configuration file ... 2024-09-18T08:02:57.475 INFO:teuthology.orchestra.run.smithi086.stdout:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-18T08:02:57.495 INFO:teuthology.orchestra.run.smithi086.stdout:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-18T08:02:57.783 INFO:teuthology.orchestra.run.smithi086.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-18T08:02:57.789 INFO:teuthology.orchestra.run.smithi086.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-18T08:02:57.860 INFO:teuthology.orchestra.run.smithi086.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-18T08:02:57.865 INFO:teuthology.orchestra.run.smithi086.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-18T08:02:58.022 INFO:teuthology.orchestra.run.smithi086.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-18T08:02:58.022 INFO:teuthology.orchestra.run.smithi086.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-18T08:02:58.023 INFO:teuthology.orchestra.run.smithi086.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-18T08:02:58.069 INFO:teuthology.orchestra.run.smithi086.stdout:done 2024-09-18T08:02:58.079 INFO:teuthology.orchestra.run.smithi070.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-18T08:02:58.079 INFO:teuthology.orchestra.run.smithi070.stdout:Sourcing file `/etc/default/grub' 2024-09-18T08:02:58.102 INFO:teuthology.orchestra.run.smithi070.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-18T08:02:58.127 INFO:teuthology.orchestra.run.smithi070.stdout:Generating grub configuration file ... 2024-09-18T08:02:58.423 INFO:teuthology.orchestra.run.smithi070.stdout:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-18T08:02:58.444 INFO:teuthology.orchestra.run.smithi070.stdout:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-18T08:02:58.533 DEBUG:teuthology.orchestra.run.smithi086:> dpkg -s linux-image-generic 2024-09-18T08:02:58.556 INFO:teuthology.orchestra.run.smithi086.stdout:Package: linux-image-generic 2024-09-18T08:02:58.557 INFO:teuthology.orchestra.run.smithi086.stdout:Status: install ok installed 2024-09-18T08:02:58.557 INFO:teuthology.orchestra.run.smithi086.stdout:Priority: optional 2024-09-18T08:02:58.557 INFO:teuthology.orchestra.run.smithi086.stdout:Section: kernel 2024-09-18T08:02:58.557 INFO:teuthology.orchestra.run.smithi086.stdout:Installed-Size: 21 2024-09-18T08:02:58.557 INFO:teuthology.orchestra.run.smithi086.stdout:Maintainer: Ubuntu Kernel Team 2024-09-18T08:02:58.557 INFO:teuthology.orchestra.run.smithi086.stdout:Architecture: amd64 2024-09-18T08:02:58.557 INFO:teuthology.orchestra.run.smithi086.stdout:Source: linux-meta 2024-09-18T08:02:58.558 INFO:teuthology.orchestra.run.smithi086.stdout:Version: 5.15.0.122.122 2024-09-18T08:02:58.558 INFO:teuthology.orchestra.run.smithi086.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-18T08:02:58.558 INFO:teuthology.orchestra.run.smithi086.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-18T08:02:58.558 INFO:teuthology.orchestra.run.smithi086.stdout:Recommends: thermald 2024-09-18T08:02:58.558 INFO:teuthology.orchestra.run.smithi086.stdout:Description: Generic Linux kernel image 2024-09-18T08:02:58.558 INFO:teuthology.orchestra.run.smithi086.stdout: This package will always depend on the latest generic kernel image 2024-09-18T08:02:58.559 INFO:teuthology.orchestra.run.smithi086.stdout: available. 2024-09-18T08:02:58.559 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-122-generic 2024-09-18T08:02:58.559 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-18T08:02:58.559 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-18T08:02:58.560 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-18T08:02:58.560 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi086.front.sepia.ceph.com, path=None, version=distro) 2024-09-18T08:02:58.560 DEBUG:teuthology.orchestra.run.smithi086:> sudo apt-get clean 2024-09-18T08:02:58.705 DEBUG:teuthology.orchestra.run.smithi086:> sudo apt-get update 2024-09-18T08:02:58.740 INFO:teuthology.orchestra.run.smithi070.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-18T08:02:58.746 INFO:teuthology.orchestra.run.smithi070.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-18T08:02:58.811 INFO:teuthology.orchestra.run.smithi070.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-18T08:02:58.816 INFO:teuthology.orchestra.run.smithi070.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-18T08:02:58.837 INFO:teuthology.orchestra.run.smithi086.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-18T08:02:58.938 INFO:teuthology.orchestra.run.smithi086.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-18T08:02:58.980 INFO:teuthology.orchestra.run.smithi070.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-18T08:02:58.981 INFO:teuthology.orchestra.run.smithi070.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-18T08:02:58.981 INFO:teuthology.orchestra.run.smithi070.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-18T08:02:59.016 INFO:teuthology.orchestra.run.smithi070.stdout:done 2024-09-18T08:02:59.020 INFO:teuthology.orchestra.run.smithi086.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-18T08:02:59.101 INFO:teuthology.orchestra.run.smithi086.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-18T08:02:59.426 DEBUG:teuthology.orchestra.run.smithi070:> dpkg -s linux-image-generic 2024-09-18T08:02:59.446 INFO:teuthology.orchestra.run.smithi070.stdout:Package: linux-image-generic 2024-09-18T08:02:59.446 INFO:teuthology.orchestra.run.smithi070.stdout:Status: install ok installed 2024-09-18T08:02:59.446 INFO:teuthology.orchestra.run.smithi070.stdout:Priority: optional 2024-09-18T08:02:59.447 INFO:teuthology.orchestra.run.smithi070.stdout:Section: kernel 2024-09-18T08:02:59.447 INFO:teuthology.orchestra.run.smithi070.stdout:Installed-Size: 21 2024-09-18T08:02:59.447 INFO:teuthology.orchestra.run.smithi070.stdout:Maintainer: Ubuntu Kernel Team 2024-09-18T08:02:59.447 INFO:teuthology.orchestra.run.smithi070.stdout:Architecture: amd64 2024-09-18T08:02:59.447 INFO:teuthology.orchestra.run.smithi070.stdout:Source: linux-meta 2024-09-18T08:02:59.447 INFO:teuthology.orchestra.run.smithi070.stdout:Version: 5.15.0.122.122 2024-09-18T08:02:59.447 INFO:teuthology.orchestra.run.smithi070.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-18T08:02:59.447 INFO:teuthology.orchestra.run.smithi070.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-18T08:02:59.447 INFO:teuthology.orchestra.run.smithi070.stdout:Recommends: thermald 2024-09-18T08:02:59.447 INFO:teuthology.orchestra.run.smithi070.stdout:Description: Generic Linux kernel image 2024-09-18T08:02:59.447 INFO:teuthology.orchestra.run.smithi070.stdout: This package will always depend on the latest generic kernel image 2024-09-18T08:02:59.447 INFO:teuthology.orchestra.run.smithi070.stdout: available. 2024-09-18T08:02:59.448 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-122-generic 2024-09-18T08:02:59.448 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-18T08:02:59.448 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-18T08:02:59.448 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-18T08:02:59.448 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi070.front.sepia.ceph.com, path=None, version=distro) 2024-09-18T08:02:59.448 DEBUG:teuthology.orchestra.run.smithi070:> sudo apt-get clean 2024-09-18T08:02:59.589 DEBUG:teuthology.orchestra.run.smithi070:> sudo apt-get update 2024-09-18T08:02:59.716 INFO:teuthology.orchestra.run.smithi070.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-18T08:02:59.716 INFO:teuthology.orchestra.run.smithi070.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-18T08:02:59.725 INFO:teuthology.orchestra.run.smithi070.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-18T08:02:59.742 INFO:teuthology.orchestra.run.smithi070.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-18T08:03:00.045 INFO:teuthology.orchestra.run.smithi172.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-18T08:03:00.045 INFO:teuthology.orchestra.run.smithi172.stdout:Sourcing file `/etc/default/grub' 2024-09-18T08:03:00.066 INFO:teuthology.orchestra.run.smithi172.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-18T08:03:00.088 INFO:teuthology.orchestra.run.smithi172.stdout:Generating grub configuration file ... 2024-09-18T08:03:00.192 INFO:teuthology.orchestra.run.smithi086.stdout:Reading package lists... 2024-09-18T08:03:00.211 DEBUG:teuthology.orchestra.run.smithi086:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-18T08:03:00.274 INFO:teuthology.orchestra.run.smithi086.stdout:Reading package lists... 2024-09-18T08:03:00.339 INFO:teuthology.orchestra.run.smithi172.stdout:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-18T08:03:00.358 INFO:teuthology.orchestra.run.smithi172.stdout:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-18T08:03:00.481 INFO:teuthology.orchestra.run.smithi086.stdout:Building dependency tree... 2024-09-18T08:03:00.481 INFO:teuthology.orchestra.run.smithi086.stdout:Reading state information... 2024-09-18T08:03:00.602 INFO:teuthology.orchestra.run.smithi172.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-18T08:03:00.609 INFO:teuthology.orchestra.run.smithi172.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-18T08:03:00.663 INFO:teuthology.orchestra.run.smithi086.stdout:linux-image-generic is already the newest version (5.15.0.122.122). 2024-09-18T08:03:00.664 INFO:teuthology.orchestra.run.smithi086.stdout:The following packages were automatically installed and are no longer required: 2024-09-18T08:03:00.664 INFO:teuthology.orchestra.run.smithi086.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-18T08:03:00.664 INFO:teuthology.orchestra.run.smithi086.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-18T08:03:00.664 INFO:teuthology.orchestra.run.smithi086.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-18T08:03:00.665 INFO:teuthology.orchestra.run.smithi086.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-18T08:03:00.665 INFO:teuthology.orchestra.run.smithi086.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-18T08:03:00.665 INFO:teuthology.orchestra.run.smithi086.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-18T08:03:00.680 INFO:teuthology.orchestra.run.smithi172.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-18T08:03:00.686 INFO:teuthology.orchestra.run.smithi172.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-18T08:03:00.704 INFO:teuthology.orchestra.run.smithi086.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-18T08:03:00.707 DEBUG:teuthology.orchestra.run.smithi086:> dpkg -s linux-image-generic 2024-09-18T08:03:00.719 INFO:teuthology.orchestra.run.smithi086.stdout:Package: linux-image-generic 2024-09-18T08:03:00.719 INFO:teuthology.orchestra.run.smithi086.stdout:Status: install ok installed 2024-09-18T08:03:00.719 INFO:teuthology.orchestra.run.smithi086.stdout:Priority: optional 2024-09-18T08:03:00.719 INFO:teuthology.orchestra.run.smithi086.stdout:Section: kernel 2024-09-18T08:03:00.719 INFO:teuthology.orchestra.run.smithi086.stdout:Installed-Size: 21 2024-09-18T08:03:00.719 INFO:teuthology.orchestra.run.smithi086.stdout:Maintainer: Ubuntu Kernel Team 2024-09-18T08:03:00.719 INFO:teuthology.orchestra.run.smithi086.stdout:Architecture: amd64 2024-09-18T08:03:00.719 INFO:teuthology.orchestra.run.smithi086.stdout:Source: linux-meta 2024-09-18T08:03:00.719 INFO:teuthology.orchestra.run.smithi086.stdout:Version: 5.15.0.122.122 2024-09-18T08:03:00.719 INFO:teuthology.orchestra.run.smithi086.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-18T08:03:00.720 INFO:teuthology.orchestra.run.smithi086.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-18T08:03:00.720 INFO:teuthology.orchestra.run.smithi086.stdout:Recommends: thermald 2024-09-18T08:03:00.720 INFO:teuthology.orchestra.run.smithi086.stdout:Description: Generic Linux kernel image 2024-09-18T08:03:00.720 INFO:teuthology.orchestra.run.smithi086.stdout: This package will always depend on the latest generic kernel image 2024-09-18T08:03:00.720 INFO:teuthology.orchestra.run.smithi086.stdout: available. 2024-09-18T08:03:00.720 DEBUG:teuthology.orchestra.run.smithi086:> mktemp 2024-09-18T08:03:00.766 INFO:teuthology.orchestra.run.smithi086.stdout:/tmp/tmp.5zn5Uoxk0T 2024-09-18T08:03:00.766 DEBUG:teuthology.orchestra.run.smithi086:> sudo cp /boot/grub/grub.cfg /tmp/tmp.5zn5Uoxk0T 2024-09-18T08:03:00.825 DEBUG:teuthology.orchestra.run.smithi086:> sudo chmod 0666 /tmp/tmp.5zn5Uoxk0T 2024-09-18T08:03:00.881 INFO:teuthology.orchestra.run.smithi172.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-18T08:03:00.881 INFO:teuthology.orchestra.run.smithi172.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-18T08:03:00.881 INFO:teuthology.orchestra.run.smithi172.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-18T08:03:00.920 INFO:teuthology.orchestra.run.smithi172.stdout:done 2024-09-18T08:03:00.944 DEBUG:teuthology.orchestra.remote:smithi086:/tmp/tmp.5zn5Uoxk0T is 10KB 2024-09-18T08:03:00.996 DEBUG:teuthology.orchestra.run.smithi086:> rm -fr /tmp/tmp.5zn5Uoxk0T 2024-09-18T08:03:01.002 DEBUG:teuthology.orchestra.run.smithi086:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-18T08:03:01.054 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-18T08:03:01.054 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-18T08:03:01.054 DEBUG:teuthology.orchestra.run.smithi086:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-18T08:03:01.062 INFO:teuthology.orchestra.run.smithi070.stdout:Reading package lists... 2024-09-18T08:03:01.081 DEBUG:teuthology.orchestra.run.smithi070:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-18T08:03:01.121 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-122-generic 2024-09-18T08:03:01.122 DEBUG:teuthology.orchestra.run.smithi086:> sudo update-grub 2024-09-18T08:03:01.143 INFO:teuthology.orchestra.run.smithi070.stdout:Reading package lists... 2024-09-18T08:03:01.364 INFO:teuthology.orchestra.run.smithi070.stdout:Building dependency tree... 2024-09-18T08:03:01.364 INFO:teuthology.orchestra.run.smithi070.stdout:Reading state information... 2024-09-18T08:03:01.396 DEBUG:teuthology.orchestra.run.smithi172:> dpkg -s linux-image-generic 2024-09-18T08:03:01.417 INFO:teuthology.orchestra.run.smithi172.stdout:Package: linux-image-generic 2024-09-18T08:03:01.417 INFO:teuthology.orchestra.run.smithi172.stdout:Status: install ok installed 2024-09-18T08:03:01.417 INFO:teuthology.orchestra.run.smithi172.stdout:Priority: optional 2024-09-18T08:03:01.417 INFO:teuthology.orchestra.run.smithi172.stdout:Section: kernel 2024-09-18T08:03:01.417 INFO:teuthology.orchestra.run.smithi172.stdout:Installed-Size: 21 2024-09-18T08:03:01.417 INFO:teuthology.orchestra.run.smithi172.stdout:Maintainer: Ubuntu Kernel Team 2024-09-18T08:03:01.417 INFO:teuthology.orchestra.run.smithi172.stdout:Architecture: amd64 2024-09-18T08:03:01.418 INFO:teuthology.orchestra.run.smithi172.stdout:Source: linux-meta 2024-09-18T08:03:01.418 INFO:teuthology.orchestra.run.smithi172.stdout:Version: 5.15.0.122.122 2024-09-18T08:03:01.418 INFO:teuthology.orchestra.run.smithi172.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-18T08:03:01.418 INFO:teuthology.orchestra.run.smithi172.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-18T08:03:01.418 INFO:teuthology.orchestra.run.smithi172.stdout:Recommends: thermald 2024-09-18T08:03:01.418 INFO:teuthology.orchestra.run.smithi172.stdout:Description: Generic Linux kernel image 2024-09-18T08:03:01.418 INFO:teuthology.orchestra.run.smithi172.stdout: This package will always depend on the latest generic kernel image 2024-09-18T08:03:01.418 INFO:teuthology.orchestra.run.smithi172.stdout: available. 2024-09-18T08:03:01.419 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-122-generic 2024-09-18T08:03:01.419 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-18T08:03:01.419 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-18T08:03:01.419 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-09-18T08:03:01.419 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi172.front.sepia.ceph.com, path=None, version=distro) 2024-09-18T08:03:01.420 DEBUG:teuthology.orchestra.run.smithi172:> sudo apt-get clean 2024-09-18T08:03:01.544 INFO:teuthology.orchestra.run.smithi070.stdout:linux-image-generic is already the newest version (5.15.0.122.122). 2024-09-18T08:03:01.544 INFO:teuthology.orchestra.run.smithi070.stdout:The following packages were automatically installed and are no longer required: 2024-09-18T08:03:01.544 INFO:teuthology.orchestra.run.smithi070.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-18T08:03:01.544 INFO:teuthology.orchestra.run.smithi070.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-18T08:03:01.544 INFO:teuthology.orchestra.run.smithi070.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-18T08:03:01.545 INFO:teuthology.orchestra.run.smithi070.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-18T08:03:01.545 INFO:teuthology.orchestra.run.smithi070.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-18T08:03:01.545 INFO:teuthology.orchestra.run.smithi070.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-18T08:03:01.587 INFO:teuthology.orchestra.run.smithi070.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-18T08:03:01.589 DEBUG:teuthology.orchestra.run.smithi070:> dpkg -s linux-image-generic 2024-09-18T08:03:01.601 INFO:teuthology.orchestra.run.smithi070.stdout:Package: linux-image-generic 2024-09-18T08:03:01.601 INFO:teuthology.orchestra.run.smithi070.stdout:Status: install ok installed 2024-09-18T08:03:01.601 INFO:teuthology.orchestra.run.smithi070.stdout:Priority: optional 2024-09-18T08:03:01.601 INFO:teuthology.orchestra.run.smithi070.stdout:Section: kernel 2024-09-18T08:03:01.601 INFO:teuthology.orchestra.run.smithi070.stdout:Installed-Size: 21 2024-09-18T08:03:01.601 INFO:teuthology.orchestra.run.smithi070.stdout:Maintainer: Ubuntu Kernel Team 2024-09-18T08:03:01.601 INFO:teuthology.orchestra.run.smithi070.stdout:Architecture: amd64 2024-09-18T08:03:01.601 INFO:teuthology.orchestra.run.smithi070.stdout:Source: linux-meta 2024-09-18T08:03:01.601 INFO:teuthology.orchestra.run.smithi070.stdout:Version: 5.15.0.122.122 2024-09-18T08:03:01.602 INFO:teuthology.orchestra.run.smithi070.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-18T08:03:01.602 INFO:teuthology.orchestra.run.smithi070.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-18T08:03:01.602 INFO:teuthology.orchestra.run.smithi070.stdout:Recommends: thermald 2024-09-18T08:03:01.602 INFO:teuthology.orchestra.run.smithi070.stdout:Description: Generic Linux kernel image 2024-09-18T08:03:01.602 INFO:teuthology.orchestra.run.smithi070.stdout: This package will always depend on the latest generic kernel image 2024-09-18T08:03:01.602 INFO:teuthology.orchestra.run.smithi070.stdout: available. 2024-09-18T08:03:01.602 DEBUG:teuthology.orchestra.run.smithi070:> mktemp 2024-09-18T08:03:01.643 DEBUG:teuthology.orchestra.run.smithi172:> sudo apt-get update 2024-09-18T08:03:01.650 INFO:teuthology.orchestra.run.smithi070.stdout:/tmp/tmp.UuReio6mpM 2024-09-18T08:03:01.650 DEBUG:teuthology.orchestra.run.smithi070:> sudo cp /boot/grub/grub.cfg /tmp/tmp.UuReio6mpM 2024-09-18T08:03:01.706 DEBUG:teuthology.orchestra.run.smithi070:> sudo chmod 0666 /tmp/tmp.UuReio6mpM 2024-09-18T08:03:01.776 INFO:teuthology.orchestra.run.smithi172.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-18T08:03:01.818 DEBUG:teuthology.orchestra.remote:smithi070:/tmp/tmp.UuReio6mpM is 10KB 2024-09-18T08:03:01.831 DEBUG:teuthology.orchestra.run.smithi070:> rm -fr /tmp/tmp.UuReio6mpM 2024-09-18T08:03:01.837 DEBUG:teuthology.orchestra.run.smithi070:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-18T08:03:01.889 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-18T08:03:01.889 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-18T08:03:01.889 DEBUG:teuthology.orchestra.run.smithi070:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-18T08:03:01.893 INFO:teuthology.orchestra.run.smithi172.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-18T08:03:01.961 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-122-generic 2024-09-18T08:03:01.961 DEBUG:teuthology.orchestra.run.smithi070:> sudo update-grub 2024-09-18T08:03:01.990 INFO:teuthology.orchestra.run.smithi172.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-18T08:03:02.055 INFO:teuthology.orchestra.run.smithi172.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-18T08:03:02.313 INFO:teuthology.orchestra.run.smithi086.stderr:Sourcing file `/etc/default/grub' 2024-09-18T08:03:02.314 INFO:teuthology.orchestra.run.smithi086.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-18T08:03:02.316 INFO:teuthology.orchestra.run.smithi086.stderr:Generating grub configuration file ... 2024-09-18T08:03:02.491 INFO:teuthology.orchestra.run.smithi086.stderr:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-18T08:03:02.497 INFO:teuthology.orchestra.run.smithi086.stderr:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-18T08:03:02.730 INFO:teuthology.orchestra.run.smithi086.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-18T08:03:02.736 INFO:teuthology.orchestra.run.smithi086.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-18T08:03:02.776 INFO:teuthology.orchestra.run.smithi086.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-18T08:03:02.781 INFO:teuthology.orchestra.run.smithi086.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-18T08:03:02.904 INFO:teuthology.orchestra.run.smithi086.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-18T08:03:02.905 INFO:teuthology.orchestra.run.smithi086.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-18T08:03:02.905 INFO:teuthology.orchestra.run.smithi086.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-18T08:03:02.930 INFO:teuthology.orchestra.run.smithi086.stderr:done 2024-09-18T08:03:02.939 DEBUG:teuthology.orchestra.run.smithi086:> sudo shutdown -r now 2024-09-18T08:03:03.190 INFO:teuthology.orchestra.run.smithi070.stderr:Sourcing file `/etc/default/grub' 2024-09-18T08:03:03.191 INFO:teuthology.orchestra.run.smithi070.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-18T08:03:03.203 INFO:teuthology.orchestra.run.smithi070.stderr:Generating grub configuration file ... 2024-09-18T08:03:03.272 INFO:teuthology.orchestra.run.smithi172.stdout:Reading package lists... 2024-09-18T08:03:03.290 DEBUG:teuthology.orchestra.run.smithi172:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-18T08:03:03.353 INFO:teuthology.orchestra.run.smithi172.stdout:Reading package lists... 2024-09-18T08:03:03.367 INFO:teuthology.orchestra.run.smithi070.stderr:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-18T08:03:03.373 INFO:teuthology.orchestra.run.smithi070.stderr:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-18T08:03:03.564 INFO:teuthology.orchestra.run.smithi172.stdout:Building dependency tree... 2024-09-18T08:03:03.565 INFO:teuthology.orchestra.run.smithi172.stdout:Reading state information... 2024-09-18T08:03:03.586 INFO:teuthology.orchestra.run.smithi070.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-18T08:03:03.591 INFO:teuthology.orchestra.run.smithi070.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-18T08:03:03.628 INFO:teuthology.orchestra.run.smithi070.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-18T08:03:03.633 INFO:teuthology.orchestra.run.smithi070.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-18T08:03:03.747 INFO:teuthology.orchestra.run.smithi172.stdout:linux-image-generic is already the newest version (5.15.0.122.122). 2024-09-18T08:03:03.747 INFO:teuthology.orchestra.run.smithi172.stdout:The following packages were automatically installed and are no longer required: 2024-09-18T08:03:03.747 INFO:teuthology.orchestra.run.smithi172.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-18T08:03:03.747 INFO:teuthology.orchestra.run.smithi172.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-18T08:03:03.747 INFO:teuthology.orchestra.run.smithi172.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-18T08:03:03.748 INFO:teuthology.orchestra.run.smithi172.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-18T08:03:03.748 INFO:teuthology.orchestra.run.smithi172.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-18T08:03:03.748 INFO:teuthology.orchestra.run.smithi172.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-18T08:03:03.749 INFO:teuthology.orchestra.run.smithi070.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-18T08:03:03.749 INFO:teuthology.orchestra.run.smithi070.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-18T08:03:03.749 INFO:teuthology.orchestra.run.smithi070.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-18T08:03:03.769 INFO:teuthology.orchestra.run.smithi070.stderr:done 2024-09-18T08:03:03.778 DEBUG:teuthology.orchestra.run.smithi070:> sudo shutdown -r now 2024-09-18T08:03:03.787 INFO:teuthology.orchestra.run.smithi172.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-18T08:03:03.789 DEBUG:teuthology.orchestra.run.smithi172:> dpkg -s linux-image-generic 2024-09-18T08:03:03.805 INFO:teuthology.orchestra.run.smithi172.stdout:Package: linux-image-generic 2024-09-18T08:03:03.805 INFO:teuthology.orchestra.run.smithi172.stdout:Status: install ok installed 2024-09-18T08:03:03.805 INFO:teuthology.orchestra.run.smithi172.stdout:Priority: optional 2024-09-18T08:03:03.805 INFO:teuthology.orchestra.run.smithi172.stdout:Section: kernel 2024-09-18T08:03:03.805 INFO:teuthology.orchestra.run.smithi172.stdout:Installed-Size: 21 2024-09-18T08:03:03.805 INFO:teuthology.orchestra.run.smithi172.stdout:Maintainer: Ubuntu Kernel Team 2024-09-18T08:03:03.805 INFO:teuthology.orchestra.run.smithi172.stdout:Architecture: amd64 2024-09-18T08:03:03.805 INFO:teuthology.orchestra.run.smithi172.stdout:Source: linux-meta 2024-09-18T08:03:03.805 INFO:teuthology.orchestra.run.smithi172.stdout:Version: 5.15.0.122.122 2024-09-18T08:03:03.805 INFO:teuthology.orchestra.run.smithi172.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-18T08:03:03.805 INFO:teuthology.orchestra.run.smithi172.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-18T08:03:03.806 INFO:teuthology.orchestra.run.smithi172.stdout:Recommends: thermald 2024-09-18T08:03:03.806 INFO:teuthology.orchestra.run.smithi172.stdout:Description: Generic Linux kernel image 2024-09-18T08:03:03.806 INFO:teuthology.orchestra.run.smithi172.stdout: This package will always depend on the latest generic kernel image 2024-09-18T08:03:03.806 INFO:teuthology.orchestra.run.smithi172.stdout: available. 2024-09-18T08:03:03.806 DEBUG:teuthology.orchestra.run.smithi172:> mktemp 2024-09-18T08:03:03.850 INFO:teuthology.orchestra.run.smithi172.stdout:/tmp/tmp.sqhuKAjRO3 2024-09-18T08:03:03.850 DEBUG:teuthology.orchestra.run.smithi172:> sudo cp /boot/grub/grub.cfg /tmp/tmp.sqhuKAjRO3 2024-09-18T08:03:03.906 DEBUG:teuthology.orchestra.run.smithi172:> sudo chmod 0666 /tmp/tmp.sqhuKAjRO3 2024-09-18T08:03:04.037 DEBUG:teuthology.orchestra.remote:smithi172:/tmp/tmp.sqhuKAjRO3 is 10KB 2024-09-18T08:03:04.049 DEBUG:teuthology.orchestra.run.smithi172:> rm -fr /tmp/tmp.sqhuKAjRO3 2024-09-18T08:03:04.054 DEBUG:teuthology.orchestra.run.smithi172:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-18T08:03:04.114 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-09-18T08:03:04.114 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-18T08:03:04.114 DEBUG:teuthology.orchestra.run.smithi172:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-18T08:03:04.181 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-122-generic 2024-09-18T08:03:04.181 DEBUG:teuthology.orchestra.run.smithi172:> sudo update-grub 2024-09-18T08:03:05.391 INFO:teuthology.orchestra.run.smithi172.stderr:Sourcing file `/etc/default/grub' 2024-09-18T08:03:05.392 INFO:teuthology.orchestra.run.smithi172.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-18T08:03:05.395 INFO:teuthology.orchestra.run.smithi172.stderr:Generating grub configuration file ... 2024-09-18T08:03:05.577 INFO:teuthology.orchestra.run.smithi172.stderr:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-18T08:03:05.583 INFO:teuthology.orchestra.run.smithi172.stderr:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-18T08:03:05.796 INFO:teuthology.orchestra.run.smithi172.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-18T08:03:05.801 INFO:teuthology.orchestra.run.smithi172.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-18T08:03:05.837 INFO:teuthology.orchestra.run.smithi172.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-18T08:03:05.842 INFO:teuthology.orchestra.run.smithi172.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-18T08:03:05.979 INFO:teuthology.orchestra.run.smithi172.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-18T08:03:05.979 INFO:teuthology.orchestra.run.smithi172.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-18T08:03:05.979 INFO:teuthology.orchestra.run.smithi172.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-18T08:03:05.990 INFO:teuthology.orchestra.run.smithi172.stderr:done 2024-09-18T08:03:06.002 DEBUG:teuthology.orchestra.run.smithi172:> sudo shutdown -r now 2024-09-18T08:03:32.969 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-18T08:03:32.970 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi086.front.sepia.ceph.com' 2024-09-18T08:03:32.971 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi086.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T08:03:33.781 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-18T08:03:33.782 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi070.front.sepia.ceph.com' 2024-09-18T08:03:33.782 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi070.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T08:03:36.006 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-09-18T08:03:36.006 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi172.front.sepia.ceph.com' 2024-09-18T08:03:36.006 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi172.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T08:03:51.485 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.86 2024-09-18T08:03:52.253 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.70 2024-09-18T08:03:54.561 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.172 2024-09-18T08:04:00.489 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi086.front.sepia.ceph.com' 2024-09-18T08:04:00.490 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi086.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T08:04:01.255 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi070.front.sepia.ceph.com' 2024-09-18T08:04:01.256 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi070.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T08:04:03.553 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.86 2024-09-18T08:04:03.561 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi172.front.sepia.ceph.com' 2024-09-18T08:04:03.562 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi172.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T08:04:06.621 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.172 2024-09-18T08:04:15.558 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi086.front.sepia.ceph.com' 2024-09-18T08:04:15.558 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi086.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T08:04:18.625 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi172.front.sepia.ceph.com' 2024-09-18T08:04:18.626 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi172.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T08:04:37.057 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.172 2024-09-18T08:04:47.487 DEBUG:teuthology.orchestra.run.smithi086:> true 2024-09-18T08:04:48.539 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi086.front.sepia.ceph.com' 2024-09-18T08:04:48.539 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-122-generic"... 2024-09-18T08:04:48.539 DEBUG:teuthology.orchestra.run.smithi086:> uname -r 2024-09-18T08:04:48.586 INFO:teuthology.orchestra.run.smithi086.stdout:5.15.0-122-generic 2024-09-18T08:04:48.586 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-122-generic vs 5.15.0-122-generic 2024-09-18T08:04:48.586 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-18T08:04:48.586 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-18T08:04:49.587 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-18T08:04:49.588 DEBUG:teuthology.orchestra.run.smithi086:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-18T08:04:49.769 INFO:teuthology.orchestra.run.smithi086.stdout:ttyS1 2024-09-18T08:04:49.796 DEBUG:teuthology.parallel:result is None 2024-09-18T08:04:52.059 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi172.front.sepia.ceph.com' 2024-09-18T08:04:52.060 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi172.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T08:04:53.193 DEBUG:teuthology.orchestra.run.smithi172:> true 2024-09-18T08:04:54.039 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi172.front.sepia.ceph.com' 2024-09-18T08:04:54.039 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.15.0-122-generic"... 2024-09-18T08:04:54.039 DEBUG:teuthology.orchestra.run.smithi172:> uname -r 2024-09-18T08:04:54.085 INFO:teuthology.orchestra.run.smithi172.stdout:5.15.0-122-generic 2024-09-18T08:04:54.085 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-122-generic vs 5.15.0-122-generic 2024-09-18T08:04:54.085 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-18T08:04:54.085 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-18T08:04:55.086 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-09-18T08:04:55.086 DEBUG:teuthology.orchestra.run.smithi172:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-18T08:04:55.329 INFO:teuthology.orchestra.run.smithi172.stdout:ttyS1 2024-09-18T08:04:55.367 DEBUG:teuthology.parallel:result is None 2024-09-18T08:05:01.258 DEBUG:teuthology.orchestra.remote:timed out 2024-09-18T08:05:13.259 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi070.front.sepia.ceph.com' 2024-09-18T08:05:13.260 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi070.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T08:05:13.408 DEBUG:teuthology.orchestra.run.smithi070:> true 2024-09-18T08:05:13.948 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi070.front.sepia.ceph.com' 2024-09-18T08:05:13.948 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-122-generic"... 2024-09-18T08:05:13.948 DEBUG:teuthology.orchestra.run.smithi070:> uname -r 2024-09-18T08:05:13.997 INFO:teuthology.orchestra.run.smithi070.stdout:5.15.0-122-generic 2024-09-18T08:05:13.997 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-122-generic vs 5.15.0-122-generic 2024-09-18T08:05:13.997 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-18T08:05:13.997 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-18T08:05:14.998 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-18T08:05:14.998 DEBUG:teuthology.orchestra.run.smithi070:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-18T08:05:15.088 INFO:teuthology.orchestra.run.smithi070.stdout:ttyS1 2024-09-18T08:05:15.106 DEBUG:teuthology.parallel:result is None 2024-09-18T08:05:15.106 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-18T08:05:15.114 INFO:teuthology.task.internal:Creating test directory... 2024-09-18T08:05:15.114 DEBUG:teuthology.orchestra.run.smithi070:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-18T08:05:15.116 DEBUG:teuthology.orchestra.run.smithi086:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-18T08:05:15.119 DEBUG:teuthology.orchestra.run.smithi172:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-18T08:05:15.126 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-18T08:05:15.175 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-18T08:05:15.209 INFO:teuthology.task.internal:Creating archive directory... 2024-09-18T08:05:15.209 DEBUG:teuthology.orchestra.run.smithi070:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-18T08:05:15.212 DEBUG:teuthology.orchestra.run.smithi086:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-18T08:05:15.214 DEBUG:teuthology.orchestra.run.smithi172:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-18T08:05:15.314 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-18T08:05:15.321 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-18T08:05:15.321 DEBUG:teuthology.orchestra.run.smithi070:> 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-18T08:05:15.323 DEBUG:teuthology.orchestra.run.smithi086:> 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-18T08:05:15.326 DEBUG:teuthology.orchestra.run.smithi172:> 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-18T08:05:15.341 INFO:teuthology.orchestra.run.smithi086.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-18T08:05:15.343 INFO:teuthology.orchestra.run.smithi070.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-18T08:05:15.348 INFO:teuthology.orchestra.run.smithi172.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-18T08:05:15.350 INFO:teuthology.orchestra.run.smithi070.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-18T08:05:15.351 INFO:teuthology.orchestra.run.smithi086.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-18T08:05:15.358 INFO:teuthology.orchestra.run.smithi172.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-18T08:05:15.359 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-18T08:05:15.366 INFO:teuthology.task.internal:Configuring sudo... 2024-09-18T08:05:15.366 DEBUG:teuthology.orchestra.run.smithi070:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-18T08:05:15.398 DEBUG:teuthology.orchestra.run.smithi086:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-18T08:05:15.400 DEBUG:teuthology.orchestra.run.smithi172:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-18T08:05:15.418 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-18T08:05:15.427 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-18T08:05:15.427 DEBUG:teuthology.orchestra.run.smithi070:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-18T08:05:15.453 DEBUG:teuthology.orchestra.run.smithi086:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-18T08:05:15.455 DEBUG:teuthology.orchestra.run.smithi172:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-18T08:05:15.465 DEBUG:teuthology.orchestra.run.smithi070:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-18T08:05:15.505 DEBUG:teuthology.orchestra.run.smithi070:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-18T08:05:15.553 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-18T08:05:15.553 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-18T08:05:15.621 DEBUG:teuthology.orchestra.run.smithi086:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-18T08:05:15.627 DEBUG:teuthology.orchestra.run.smithi086:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-18T08:05:15.674 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-18T08:05:15.674 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-18T08:05:15.738 DEBUG:teuthology.orchestra.run.smithi172:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-18T08:05:15.744 DEBUG:teuthology.orchestra.run.smithi172:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-18T08:05:15.790 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-09-18T08:05:15.790 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-18T08:05:15.857 DEBUG:teuthology.orchestra.run.smithi070:> sudo service rsyslog restart 2024-09-18T08:05:15.860 DEBUG:teuthology.orchestra.run.smithi086:> sudo service rsyslog restart 2024-09-18T08:05:15.862 DEBUG:teuthology.orchestra.run.smithi172:> sudo service rsyslog restart 2024-09-18T08:05:15.932 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-18T08:05:15.939 INFO:teuthology.task.internal:Starting timer... 2024-09-18T08:05:15.940 INFO:teuthology.run_tasks:Running task pcp... 2024-09-18T08:05:15.997 INFO:teuthology.run_tasks:Running task selinux... 2024-09-18T08:05:16.028 DEBUG:teuthology.task.selinux:Excluding smithi070: OS 'ubuntu' does not support SELinux 2024-09-18T08:05:16.028 DEBUG:teuthology.task.selinux:Excluding smithi086: OS 'ubuntu' does not support SELinux 2024-09-18T08:05:16.029 DEBUG:teuthology.task.selinux:Excluding smithi172: OS 'ubuntu' does not support SELinux 2024-09-18T08:05:16.029 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-18T08:05:16.029 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-09-18T08:05:16.029 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-18T08:05:16.029 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-18T08:05:16.061 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-18T08:05:16.073 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-18T08:05:16.074 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi070.front.sepia.ceph.com,smithi086.front.sepia.ceph.com,smithi172.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-18T08:12:48.517 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi070.front.sepia.ceph.com'), Remote(name='ubuntu@smithi086.front.sepia.ceph.com'), Remote(name='ubuntu@smithi172.front.sepia.ceph.com')] 2024-09-18T08:12:48.519 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi070.front.sepia.ceph.com' 2024-09-18T08:12:48.520 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi070.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T08:12:48.604 DEBUG:teuthology.orchestra.run.smithi070:> true 2024-09-18T08:12:48.681 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi070.front.sepia.ceph.com' 2024-09-18T08:12:48.681 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi086.front.sepia.ceph.com' 2024-09-18T08:12:48.682 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi086.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T08:12:48.764 DEBUG:teuthology.orchestra.run.smithi086:> true 2024-09-18T08:12:48.845 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi086.front.sepia.ceph.com' 2024-09-18T08:12:48.845 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi172.front.sepia.ceph.com' 2024-09-18T08:12:48.846 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi172.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-18T08:12:48.927 DEBUG:teuthology.orchestra.run.smithi172:> true 2024-09-18T08:12:49.010 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi172.front.sepia.ceph.com' 2024-09-18T08:12:49.011 INFO:teuthology.run_tasks:Running task clock... 2024-09-18T08:12:49.021 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-18T08:12:49.022 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-18T08:12:49.022 DEBUG:teuthology.orchestra.run.smithi070:> 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-18T08:12:49.025 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-18T08:12:49.025 DEBUG:teuthology.orchestra.run.smithi086:> 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-18T08:12:49.027 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-18T08:12:49.028 DEBUG:teuthology.orchestra.run.smithi172:> 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-18T08:12:49.055 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:49 ntpd[18484]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-18T08:12:49.055 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:49 ntpd[18484]: Command line: ntpd -gq 2024-09-18T08:12:49.055 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:49 ntpd[18484]: ---------------------------------------------------- 2024-09-18T08:12:49.055 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:49 ntpd[18484]: ntp-4 is maintained by Network Time Foundation, 2024-09-18T08:12:49.055 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:49 ntpd[18484]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-18T08:12:49.055 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:49 ntpd[18484]: corporation. Support and training for ntp-4 are 2024-09-18T08:12:49.055 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:49 ntpd[18484]: available at https://www.nwtime.org/support 2024-09-18T08:12:49.055 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:49 ntpd[18484]: ---------------------------------------------------- 2024-09-18T08:12:49.057 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:49 ntpd[18484]: proto: precision = 0.058 usec (-24) 2024-09-18T08:12:49.057 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:49 ntpd[18484]: basedate set to 2022-02-04 2024-09-18T08:12:49.057 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:49 ntpd[18484]: gps base set to 2022-02-06 (week 2196) 2024-09-18T08:12:49.058 INFO:teuthology.orchestra.run.smithi086.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-18T08:12:49.058 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:49 ntpd[18471]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-18T08:12:49.058 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:49 ntpd[18471]: Command line: ntpd -gq 2024-09-18T08:12:49.058 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:49 ntpd[18471]: ---------------------------------------------------- 2024-09-18T08:12:49.058 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:49 ntpd[18471]: ntp-4 is maintained by Network Time Foundation, 2024-09-18T08:12:49.058 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:49 ntpd[18471]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-18T08:12:49.058 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:49 ntpd[18471]: corporation. Support and training for ntp-4 are 2024-09-18T08:12:49.059 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:49 ntpd[18471]: available at https://www.nwtime.org/support 2024-09-18T08:12:49.059 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:49 ntpd[18471]: ---------------------------------------------------- 2024-09-18T08:12:49.059 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:49 ntpd[18471]: proto: precision = 0.057 usec (-24) 2024-09-18T08:12:49.059 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:49 ntpd[18471]: basedate set to 2022-02-04 2024-09-18T08:12:49.059 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:49 ntpd[18471]: gps base set to 2022-02-06 (week 2196) 2024-09-18T08:12:49.059 INFO:teuthology.orchestra.run.smithi070.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-18T08:12:49.059 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:49 ntpd[18484]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-18T08:12:49.060 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:49 ntpd[18484]: restrict ::: KOD does nothing without LIMITED. 2024-09-18T08:12:49.060 INFO:teuthology.orchestra.run.smithi086.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-18T08:12:49.060 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:49 ntpd[18471]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-18T08:12:49.060 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:49 ntpd[18471]: restrict ::: KOD does nothing without LIMITED. 2024-09-18T08:12:49.060 INFO:teuthology.orchestra.run.smithi070.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-18T08:12:49.062 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:49 ntpd[18484]: Listen and drop on 0 v6wildcard [::]:123 2024-09-18T08:12:49.062 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:49 ntpd[18484]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-18T08:12:49.062 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:49 ntpd[18484]: Listen normally on 2 lo 127.0.0.1:123 2024-09-18T08:12:49.062 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:49 ntpd[18484]: Listen normally on 3 enp3s0f1 172.21.15.86:123 2024-09-18T08:12:49.062 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:49 ntpd[18484]: Listen normally on 4 lo [::1]:123 2024-09-18T08:12:49.062 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:49 ntpd[18484]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:d809%5]:123 2024-09-18T08:12:49.062 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:49 ntpd[18484]: Listening on routing socket on fd #22 for interface updates 2024-09-18T08:12:49.062 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:49 ntpd[18471]: Listen and drop on 0 v6wildcard [::]:123 2024-09-18T08:12:49.063 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:49 ntpd[18471]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-18T08:12:49.063 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:49 ntpd[18471]: Listen normally on 2 lo 127.0.0.1:123 2024-09-18T08:12:49.063 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:49 ntpd[18471]: Listen normally on 3 enp3s0f1 172.21.15.70:123 2024-09-18T08:12:49.063 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:49 ntpd[18471]: Listen normally on 4 lo [::1]:123 2024-09-18T08:12:49.063 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:49 ntpd[18471]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:d3e7%5]:123 2024-09-18T08:12:49.063 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:49 ntpd[18471]: Listening on routing socket on fd #22 for interface updates 2024-09-18T08:12:49.079 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:49 ntpd[18463]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-18T08:12:49.080 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:49 ntpd[18463]: Command line: ntpd -gq 2024-09-18T08:12:49.080 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:49 ntpd[18463]: ---------------------------------------------------- 2024-09-18T08:12:49.080 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:49 ntpd[18463]: ntp-4 is maintained by Network Time Foundation, 2024-09-18T08:12:49.080 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:49 ntpd[18463]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-18T08:12:49.081 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:49 ntpd[18463]: corporation. Support and training for ntp-4 are 2024-09-18T08:12:49.081 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:49 ntpd[18463]: available at https://www.nwtime.org/support 2024-09-18T08:12:49.081 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:49 ntpd[18463]: ---------------------------------------------------- 2024-09-18T08:12:49.082 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:49 ntpd[18463]: proto: precision = 0.044 usec (-24) 2024-09-18T08:12:49.082 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:49 ntpd[18463]: basedate set to 2022-02-04 2024-09-18T08:12:49.082 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:49 ntpd[18463]: gps base set to 2022-02-06 (week 2196) 2024-09-18T08:12:49.082 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:49 ntpd[18463]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-18T08:12:49.083 INFO:teuthology.orchestra.run.smithi172.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-18T08:12:49.083 INFO:teuthology.orchestra.run.smithi172.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-18T08:12:49.084 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:49 ntpd[18463]: restrict ::: KOD does nothing without LIMITED. 2024-09-18T08:12:49.084 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:49 ntpd[18463]: Listen and drop on 0 v6wildcard [::]:123 2024-09-18T08:12:49.084 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:49 ntpd[18463]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-18T08:12:49.084 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:49 ntpd[18463]: Listen normally on 2 lo 127.0.0.1:123 2024-09-18T08:12:49.084 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:49 ntpd[18463]: Listen normally on 3 enp3s0f1 172.21.15.172:123 2024-09-18T08:12:49.084 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:49 ntpd[18463]: Listen normally on 4 lo [::1]:123 2024-09-18T08:12:49.084 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:49 ntpd[18463]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:7f91%5]:123 2024-09-18T08:12:49.084 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:49 ntpd[18463]: Listening on routing socket on fd #22 for interface updates 2024-09-18T08:12:50.057 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:50 ntpd[18471]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:50.057 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:50 ntpd[18471]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:50.057 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:50 ntpd[18471]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:50.057 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:50 ntpd[18471]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:50.057 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:50 ntpd[18471]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:50.057 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:50 ntpd[18471]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:50.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:50 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:50.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:50 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:50.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:50 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:50.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:50 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:50.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:50 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:50.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:50 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:50.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:50 ntpd[18463]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:50.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:50 ntpd[18463]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:50.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:50 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:50.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:50 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:50.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:50 ntpd[18463]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:50.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:50 ntpd[18463]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:51.056 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:51 ntpd[18471]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:51.056 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:51 ntpd[18471]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:52.057 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:52 ntpd[18471]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:52.057 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:52 ntpd[18471]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:52.057 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:52 ntpd[18471]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:52.057 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:52 ntpd[18471]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:52.057 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:52 ntpd[18471]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:52.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:52 ntpd[18471]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:52.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:52 ntpd[18471]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:52.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:52 ntpd[18471]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:52.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:52 ntpd[18471]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:52.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:52 ntpd[18471]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:52.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:52 ntpd[18471]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:52.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:52 ntpd[18471]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:52.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:52 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:52.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:52 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:52.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:52 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:52.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:52 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:52.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:52 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:52.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:52 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:52.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:52 ntpd[18463]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:52.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:52 ntpd[18463]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:52.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:52 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:52.082 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:52 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:52.082 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:52 ntpd[18463]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:52.082 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:52 ntpd[18463]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:53.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:53 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:53.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:53 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:53.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:53 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:53.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:53 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:53.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:53 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:53.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:53 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:53.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:53 ntpd[18484]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:53.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:53 ntpd[18484]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:53.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:53 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:53.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:53 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:53.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:53 ntpd[18484]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:53.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:53 ntpd[18484]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:53.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:53 ntpd[18471]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:53.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:53 ntpd[18471]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:53.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:53 ntpd[18471]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:53.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:53 ntpd[18471]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:53.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:53 ntpd[18471]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:53.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:53 ntpd[18471]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:53.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:53 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:53.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:53 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:53.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:53 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:53.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:53 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:53.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:53 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:53.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:53 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:53.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:53 ntpd[18463]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:53.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:53 ntpd[18463]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:54.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:54 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:54.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:54 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:54.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:54 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:54.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:54 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:54.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:54 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:54.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:54 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:54.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:54 ntpd[18484]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:54.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:54 ntpd[18484]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:54.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:54 ntpd[18471]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:54.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:54 ntpd[18471]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:54.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:54 ntpd[18471]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:54.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:54 ntpd[18471]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:54.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:54 ntpd[18471]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:54.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:54 ntpd[18471]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:54.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:54 ntpd[18471]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:54.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:54 ntpd[18471]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:54.059 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:54 ntpd[18471]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:54.059 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:54 ntpd[18471]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:54.059 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:54 ntpd[18471]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:54.059 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:54 ntpd[18471]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:54.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:54 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:54.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:54 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:54.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:54 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:54.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:54 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:54.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:54 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:54.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:54 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:54.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:54 ntpd[18463]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:54.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:54 ntpd[18463]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:54.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:54 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:54.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:54 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:54.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:54 ntpd[18463]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:54.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:54 ntpd[18463]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:55.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:55 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:55.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:55 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:55.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:55 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:55.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:55 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:55.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:55 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:55.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:55 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:55.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:55 ntpd[18484]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:55.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:55 ntpd[18484]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:55.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:55 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:55.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:55 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:55.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:55 ntpd[18484]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:55.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:55 ntpd[18484]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:55.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:55 ntpd[18471]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:55.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:55 ntpd[18471]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:55.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:55 ntpd[18471]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:55.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:55 ntpd[18471]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:55.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:55 ntpd[18471]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:55.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:55 ntpd[18471]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:55.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:55 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:55.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:55 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:55.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:55 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:55.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:55 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:55.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:55 ntpd[18463]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:55.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:55 ntpd[18463]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:56.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:56 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:56.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:56 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:56.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:56 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:56.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:56 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:56.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:56 ntpd[18484]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:56.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:56 ntpd[18484]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:56.057 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:56 ntpd[18471]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:56.057 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:56 ntpd[18471]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:56.057 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:56 ntpd[18471]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:56.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:56 ntpd[18471]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:56.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:56 ntpd[18471]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:56.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:56 ntpd[18471]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:56.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:56 ntpd[18471]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:56.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:56 ntpd[18471]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:56.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:56 ntpd[18471]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:56.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:56 ntpd[18471]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:56.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:56 ntpd[18471]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:56.058 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:56 ntpd[18471]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:56.058 INFO:teuthology.orchestra.run.smithi070.stdout:18 Sep 08:12:56 ntpd[18471]: ntpd: time slew +0.000562 s 2024-09-18T08:12:56.058 INFO:teuthology.orchestra.run.smithi070.stdout:ntpd: time slew +0.000562s 2024-09-18T08:12:56.059 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:56 ntpd[18471]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-18T08:12:56.059 INFO:teuthology.orchestra.run.smithi070.stderr:18 Sep 08:12:56 ntpd[18471]: can't open /var/log/ntpstats/loopstats.20240918: Permission denied 2024-09-18T08:12:56.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:56 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:56.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:56 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:56.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:56 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:56.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:56 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:56.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:56 ntpd[18463]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:56.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:56 ntpd[18463]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:56.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:56 ntpd[18463]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:56.080 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:56 ntpd[18463]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:56.081 INFO:teuthology.orchestra.run.smithi172.stdout:18 Sep 08:12:56 ntpd[18463]: ntpd: time slew -0.003445 s 2024-09-18T08:12:56.081 INFO:teuthology.orchestra.run.smithi172.stdout:ntpd: time slew -0.003445s 2024-09-18T08:12:56.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:56 ntpd[18463]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-18T08:12:56.081 INFO:teuthology.orchestra.run.smithi172.stderr:18 Sep 08:12:56 ntpd[18463]: can't open /var/log/ntpstats/loopstats.20240918: Permission denied 2024-09-18T08:12:56.108 INFO:teuthology.orchestra.run.smithi070.stdout: remote refid st t when poll reach delay offset jitter 2024-09-18T08:12:56.108 INFO:teuthology.orchestra.run.smithi070.stdout:============================================================================== 2024-09-18T08:12:56.108 INFO:teuthology.orchestra.run.smithi070.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-18T08:12:56.108 INFO:teuthology.orchestra.run.smithi070.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-18T08:12:56.108 INFO:teuthology.orchestra.run.smithi070.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-18T08:12:56.108 INFO:teuthology.orchestra.run.smithi070.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-18T08:12:56.134 INFO:teuthology.orchestra.run.smithi172.stdout: remote refid st t when poll reach delay offset jitter 2024-09-18T08:12:56.134 INFO:teuthology.orchestra.run.smithi172.stdout:============================================================================== 2024-09-18T08:12:56.134 INFO:teuthology.orchestra.run.smithi172.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-18T08:12:56.134 INFO:teuthology.orchestra.run.smithi172.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-18T08:12:56.134 INFO:teuthology.orchestra.run.smithi172.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-18T08:12:56.134 INFO:teuthology.orchestra.run.smithi172.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-18T08:12:57.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:57 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:57.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:57 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:57.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:57 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:57.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:57 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:57.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:57 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:57.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:57 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:57.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:57 ntpd[18484]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:57.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:57 ntpd[18484]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:57.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:57 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:57.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:57 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:57.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:57 ntpd[18484]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:57.057 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:57 ntpd[18484]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:58.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:58 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:58.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:58 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:58.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:58 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:58.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:58 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:58.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:58 ntpd[18484]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:58.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:58 ntpd[18484]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:59.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:59 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:59.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:59 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:59.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:59 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:59.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:59 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:59.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:59 ntpd[18484]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-18T08:12:59.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:59 ntpd[18484]: can't open /var/log/ntpstats/rawstats.20240918: Permission denied 2024-09-18T08:12:59.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:59 ntpd[18484]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-18T08:12:59.056 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:59 ntpd[18484]: can't open /var/log/ntpstats/peerstats.20240918: Permission denied 2024-09-18T08:12:59.057 INFO:teuthology.orchestra.run.smithi086.stdout:18 Sep 08:12:59 ntpd[18484]: ntpd: time slew -0.001414 s 2024-09-18T08:12:59.057 INFO:teuthology.orchestra.run.smithi086.stdout:ntpd: time slew -0.001414s 2024-09-18T08:12:59.058 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:59 ntpd[18484]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-18T08:12:59.058 INFO:teuthology.orchestra.run.smithi086.stderr:18 Sep 08:12:59 ntpd[18484]: can't open /var/log/ntpstats/loopstats.20240918: Permission denied 2024-09-18T08:12:59.107 INFO:teuthology.orchestra.run.smithi086.stdout: remote refid st t when poll reach delay offset jitter 2024-09-18T08:12:59.107 INFO:teuthology.orchestra.run.smithi086.stdout:============================================================================== 2024-09-18T08:12:59.107 INFO:teuthology.orchestra.run.smithi086.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-18T08:12:59.107 INFO:teuthology.orchestra.run.smithi086.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-18T08:12:59.107 INFO:teuthology.orchestra.run.smithi086.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-18T08:12:59.107 INFO:teuthology.orchestra.run.smithi086.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-18T08:12:59.107 INFO:teuthology.run_tasks:Running task install... 2024-09-18T08:12:59.116 DEBUG:teuthology.task.install:project ceph 2024-09-18T08:12:59.116 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e'}} 2024-09-18T08:12:59.116 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e'} 2024-09-18T08:12:59.116 INFO:teuthology.task.install:Using flavor: default 2024-09-18T08:12:59.122 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-18T08:12:59.122 INFO:teuthology.task.install:extra packages: [] 2024-09-18T08:12:59.122 DEBUG:teuthology.orchestra.run.smithi070:> sudo apt-key list | grep Ceph 2024-09-18T08:12:59.123 DEBUG:teuthology.orchestra.run.smithi086:> sudo apt-key list | grep Ceph 2024-09-18T08:12:59.123 DEBUG:teuthology.orchestra.run.smithi172:> sudo apt-key list | grep Ceph 2024-09-18T08:12:59.183 INFO:teuthology.orchestra.run.smithi070.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-18T08:12:59.192 INFO:teuthology.orchestra.run.smithi172.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-18T08:12:59.204 INFO:teuthology.orchestra.run.smithi086.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-18T08:12:59.212 INFO:teuthology.orchestra.run.smithi070.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-18T08:12:59.212 INFO:teuthology.orchestra.run.smithi070.stdout:uid [ unknown] Ceph.com (release key) 2024-09-18T08:12:59.212 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-18T08:12:59.213 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e 2024-09-18T08:12:59.223 INFO:teuthology.orchestra.run.smithi172.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-18T08:12:59.223 INFO:teuthology.orchestra.run.smithi172.stdout:uid [ unknown] Ceph.com (release key) 2024-09-18T08:12:59.224 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-18T08:12:59.224 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e 2024-09-18T08:12:59.231 INFO:teuthology.orchestra.run.smithi086.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-18T08:12:59.231 INFO:teuthology.orchestra.run.smithi086.stdout:uid [ unknown] Ceph.com (release key) 2024-09-18T08:12:59.232 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-18T08:12:59.232 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e 2024-09-18T08:12:59.369 INFO:teuthology.task.install.deb:Pulling from https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default/ 2024-09-18T08:12:59.369 INFO:teuthology.task.install.deb:Package version is 19.3.0-4983-ge7fb7b56-1jammy 2024-09-18T08:12:59.372 INFO:teuthology.task.install.deb:Pulling from https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default/ 2024-09-18T08:12:59.373 INFO:teuthology.task.install.deb:Package version is 19.3.0-4983-ge7fb7b56-1jammy 2024-09-18T08:12:59.380 INFO:teuthology.task.install.deb:Pulling from https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default/ 2024-09-18T08:12:59.381 INFO:teuthology.task.install.deb:Package version is 19.3.0-4983-ge7fb7b56-1jammy 2024-09-18T08:12:59.482 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-09-18T08:12:59.482 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-18T08:12:59.487 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-18T08:12:59.487 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-18T08:12:59.493 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-18T08:12:59.493 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-18T08:12:59.496 DEBUG:teuthology.orchestra.run.smithi172:> sudo apt-get update 2024-09-18T08:12:59.501 DEBUG:teuthology.orchestra.run.smithi086:> sudo apt-get update 2024-09-18T08:12:59.507 DEBUG:teuthology.orchestra.run.smithi070:> sudo apt-get update 2024-09-18T08:12:59.673 INFO:teuthology.orchestra.run.smithi086.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-18T08:12:59.682 INFO:teuthology.orchestra.run.smithi086.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-18T08:12:59.700 INFO:teuthology.orchestra.run.smithi086.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-18T08:12:59.718 INFO:teuthology.orchestra.run.smithi172.stdout:Ign:1 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy InRelease 2024-09-18T08:12:59.725 INFO:teuthology.orchestra.run.smithi086.stdout:Ign:4 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy InRelease 2024-09-18T08:12:59.728 INFO:teuthology.orchestra.run.smithi070.stdout:Ign:1 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy InRelease 2024-09-18T08:12:59.740 INFO:teuthology.orchestra.run.smithi086.stdout:Hit:5 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-18T08:12:59.750 INFO:teuthology.orchestra.run.smithi172.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-18T08:12:59.754 INFO:teuthology.orchestra.run.smithi172.stdout:Get:3 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy Release [7,005 B] 2024-09-18T08:12:59.754 INFO:teuthology.orchestra.run.smithi070.stdout:Get:2 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy Release [7,005 B] 2024-09-18T08:12:59.755 INFO:teuthology.orchestra.run.smithi086.stdout:Get:6 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy Release [7,005 B] 2024-09-18T08:12:59.776 INFO:teuthology.orchestra.run.smithi172.stdout:Ign:4 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-18T08:12:59.777 INFO:teuthology.orchestra.run.smithi086.stdout:Ign:7 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-18T08:12:59.777 INFO:teuthology.orchestra.run.smithi070.stdout:Ign:3 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-18T08:12:59.785 INFO:teuthology.orchestra.run.smithi172.stdout:Hit:5 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-18T08:12:59.799 INFO:teuthology.orchestra.run.smithi172.stdout:Get:6 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,432 B] 2024-09-18T08:12:59.799 INFO:teuthology.orchestra.run.smithi086.stdout:Get:8 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,432 B] 2024-09-18T08:12:59.806 INFO:teuthology.orchestra.run.smithi070.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-18T08:12:59.806 INFO:teuthology.orchestra.run.smithi070.stdout:Get:5 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 Packages [18.2 kB] 2024-09-18T08:12:59.825 INFO:teuthology.orchestra.run.smithi086.stdout:Get:9 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 Packages [18.2 kB] 2024-09-18T08:12:59.826 INFO:teuthology.orchestra.run.smithi172.stdout:Get:7 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 Packages [18.2 kB] 2024-09-18T08:12:59.834 INFO:teuthology.orchestra.run.smithi070.stdout:Get:6 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,432 B] 2024-09-18T08:12:59.866 INFO:teuthology.orchestra.run.smithi172.stdout:Hit:8 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-18T08:12:59.870 INFO:teuthology.orchestra.run.smithi070.stdout:Hit:7 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-18T08:12:59.877 INFO:teuthology.orchestra.run.smithi070.stdout:Hit:8 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-18T08:12:59.948 INFO:teuthology.orchestra.run.smithi172.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-18T08:12:59.959 INFO:teuthology.orchestra.run.smithi070.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-18T08:13:00.028 INFO:teuthology.orchestra.run.smithi086.stdout:Fetched 28.6 kB in 0s (83.5 kB/s) 2024-09-18T08:13:00.121 INFO:teuthology.orchestra.run.smithi172.stdout:Fetched 28.6 kB in 0s (64.5 kB/s) 2024-09-18T08:13:00.162 INFO:teuthology.orchestra.run.smithi070.stdout:Fetched 28.6 kB in 0s (60.2 kB/s) 2024-09-18T08:13:01.016 INFO:teuthology.orchestra.run.smithi086.stdout:Reading package lists... 2024-09-18T08:13:01.033 DEBUG:teuthology.orchestra.run.smithi086:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.3.0-4983-ge7fb7b56-1jammy cephadm=19.3.0-4983-ge7fb7b56-1jammy ceph-mds=19.3.0-4983-ge7fb7b56-1jammy ceph-mgr=19.3.0-4983-ge7fb7b56-1jammy ceph-common=19.3.0-4983-ge7fb7b56-1jammy ceph-fuse=19.3.0-4983-ge7fb7b56-1jammy ceph-test=19.3.0-4983-ge7fb7b56-1jammy ceph-volume=19.3.0-4983-ge7fb7b56-1jammy radosgw=19.3.0-4983-ge7fb7b56-1jammy python3-rados=19.3.0-4983-ge7fb7b56-1jammy python3-rgw=19.3.0-4983-ge7fb7b56-1jammy python3-cephfs=19.3.0-4983-ge7fb7b56-1jammy python3-rbd=19.3.0-4983-ge7fb7b56-1jammy libcephfs2=19.3.0-4983-ge7fb7b56-1jammy libcephfs-dev=19.3.0-4983-ge7fb7b56-1jammy librados2=19.3.0-4983-ge7fb7b56-1jammy librbd1=19.3.0-4983-ge7fb7b56-1jammy rbd-fuse=19.3.0-4983-ge7fb7b56-1jammy 2024-09-18T08:13:01.096 INFO:teuthology.orchestra.run.smithi086.stdout:Reading package lists... 2024-09-18T08:13:01.163 INFO:teuthology.orchestra.run.smithi172.stdout:Reading package lists... 2024-09-18T08:13:01.180 DEBUG:teuthology.orchestra.run.smithi172:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.3.0-4983-ge7fb7b56-1jammy cephadm=19.3.0-4983-ge7fb7b56-1jammy ceph-mds=19.3.0-4983-ge7fb7b56-1jammy ceph-mgr=19.3.0-4983-ge7fb7b56-1jammy ceph-common=19.3.0-4983-ge7fb7b56-1jammy ceph-fuse=19.3.0-4983-ge7fb7b56-1jammy ceph-test=19.3.0-4983-ge7fb7b56-1jammy ceph-volume=19.3.0-4983-ge7fb7b56-1jammy radosgw=19.3.0-4983-ge7fb7b56-1jammy python3-rados=19.3.0-4983-ge7fb7b56-1jammy python3-rgw=19.3.0-4983-ge7fb7b56-1jammy python3-cephfs=19.3.0-4983-ge7fb7b56-1jammy python3-rbd=19.3.0-4983-ge7fb7b56-1jammy libcephfs2=19.3.0-4983-ge7fb7b56-1jammy libcephfs-dev=19.3.0-4983-ge7fb7b56-1jammy librados2=19.3.0-4983-ge7fb7b56-1jammy librbd1=19.3.0-4983-ge7fb7b56-1jammy rbd-fuse=19.3.0-4983-ge7fb7b56-1jammy 2024-09-18T08:13:01.203 INFO:teuthology.orchestra.run.smithi070.stdout:Reading package lists... 2024-09-18T08:13:01.217 DEBUG:teuthology.orchestra.run.smithi070:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.3.0-4983-ge7fb7b56-1jammy cephadm=19.3.0-4983-ge7fb7b56-1jammy ceph-mds=19.3.0-4983-ge7fb7b56-1jammy ceph-mgr=19.3.0-4983-ge7fb7b56-1jammy ceph-common=19.3.0-4983-ge7fb7b56-1jammy ceph-fuse=19.3.0-4983-ge7fb7b56-1jammy ceph-test=19.3.0-4983-ge7fb7b56-1jammy ceph-volume=19.3.0-4983-ge7fb7b56-1jammy radosgw=19.3.0-4983-ge7fb7b56-1jammy python3-rados=19.3.0-4983-ge7fb7b56-1jammy python3-rgw=19.3.0-4983-ge7fb7b56-1jammy python3-cephfs=19.3.0-4983-ge7fb7b56-1jammy python3-rbd=19.3.0-4983-ge7fb7b56-1jammy libcephfs2=19.3.0-4983-ge7fb7b56-1jammy libcephfs-dev=19.3.0-4983-ge7fb7b56-1jammy librados2=19.3.0-4983-ge7fb7b56-1jammy librbd1=19.3.0-4983-ge7fb7b56-1jammy rbd-fuse=19.3.0-4983-ge7fb7b56-1jammy 2024-09-18T08:13:01.243 INFO:teuthology.orchestra.run.smithi172.stdout:Reading package lists... 2024-09-18T08:13:01.283 INFO:teuthology.orchestra.run.smithi070.stdout:Reading package lists... 2024-09-18T08:13:01.300 INFO:teuthology.orchestra.run.smithi086.stdout:Building dependency tree... 2024-09-18T08:13:01.301 INFO:teuthology.orchestra.run.smithi086.stdout:Reading state information... 2024-09-18T08:13:01.457 INFO:teuthology.orchestra.run.smithi172.stdout:Building dependency tree... 2024-09-18T08:13:01.458 INFO:teuthology.orchestra.run.smithi172.stdout:Reading state information... 2024-09-18T08:13:01.495 INFO:teuthology.orchestra.run.smithi070.stdout:Building dependency tree... 2024-09-18T08:13:01.496 INFO:teuthology.orchestra.run.smithi086.stdout:The following packages were automatically installed and are no longer required: 2024-09-18T08:13:01.496 INFO:teuthology.orchestra.run.smithi086.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-18T08:13:01.496 INFO:teuthology.orchestra.run.smithi086.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-18T08:13:01.496 INFO:teuthology.orchestra.run.smithi086.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-18T08:13:01.496 INFO:teuthology.orchestra.run.smithi086.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-18T08:13:01.496 INFO:teuthology.orchestra.run.smithi086.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-18T08:13:01.496 INFO:teuthology.orchestra.run.smithi086.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-18T08:13:01.497 INFO:teuthology.orchestra.run.smithi070.stdout:Reading state information... 2024-09-18T08:13:01.498 INFO:teuthology.orchestra.run.smithi086.stdout:The following additional packages will be installed: 2024-09-18T08:13:01.498 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-18T08:13:01.498 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-18T08:13:01.498 INFO:teuthology.orchestra.run.smithi086.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev libnbd0 liboath0 2024-09-18T08:13:01.498 INFO:teuthology.orchestra.run.smithi086.stdout: libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 2024-09-18T08:13:01.498 INFO:teuthology.orchestra.run.smithi086.stdout: libradosstriper1 librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph 2024-09-18T08:13:01.499 INFO:teuthology.orchestra.run.smithi086.stdout: libthrift-0.16.0 lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli 2024-09-18T08:13:01.499 INFO:teuthology.orchestra.run.smithi086.stdout: pkg-config python-asyncssh-doc python-babel-localedata 2024-09-18T08:13:01.499 INFO:teuthology.orchestra.run.smithi086.stdout: python-pastedeploy-tpl python3-asyncssh python3-babel python3-bcrypt 2024-09-18T08:13:01.499 INFO:teuthology.orchestra.run.smithi086.stdout: python3-cachetools python3-ceph-argparse python3-ceph-common python3-certifi 2024-09-18T08:13:01.499 INFO:teuthology.orchestra.run.smithi086.stdout: python3-cheroot python3-cherrypy3 python3-google-auth python3-idna 2024-09-18T08:13:01.499 INFO:teuthology.orchestra.run.smithi086.stdout: python3-iniconfig python3-jaraco.classes python3-jaraco.collections 2024-09-18T08:13:01.499 INFO:teuthology.orchestra.run.smithi086.stdout: python3-jaraco.functools python3-jaraco.text python3-jinja2 python3-joblib 2024-09-18T08:13:01.499 INFO:teuthology.orchestra.run.smithi086.stdout: python3-kubernetes python3-logutils python3-mako python3-markupsafe 2024-09-18T08:13:01.499 INFO:teuthology.orchestra.run.smithi086.stdout: python3-natsort python3-openssl python3-paste python3-pastedeploy 2024-09-18T08:13:01.499 INFO:teuthology.orchestra.run.smithi086.stdout: python3-pastescript python3-pecan python3-pluggy python3-portend 2024-09-18T08:13:01.499 INFO:teuthology.orchestra.run.smithi086.stdout: python3-prettytable python3-psutil python3-py python3-pyasn1 2024-09-18T08:13:01.499 INFO:teuthology.orchestra.run.smithi086.stdout: python3-pyasn1-modules python3-pygments python3-pyinotify python3-pytest 2024-09-18T08:13:01.499 INFO:teuthology.orchestra.run.smithi086.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-routes 2024-09-18T08:13:01.499 INFO:teuthology.orchestra.run.smithi086.stdout: python3-rsa python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-18T08:13:01.500 INFO:teuthology.orchestra.run.smithi086.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-18T08:13:01.500 INFO:teuthology.orchestra.run.smithi086.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-18T08:13:01.500 INFO:teuthology.orchestra.run.smithi086.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-18T08:13:01.500 INFO:teuthology.orchestra.run.smithi086.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-09-18T08:13:01.500 INFO:teuthology.orchestra.run.smithi086.stdout: xmlstarlet zip 2024-09-18T08:13:01.500 INFO:teuthology.orchestra.run.smithi086.stdout:Suggested packages: 2024-09-18T08:13:01.500 INFO:teuthology.orchestra.run.smithi086.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-09-18T08:13:01.500 INFO:teuthology.orchestra.run.smithi086.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-09-18T08:13:01.500 INFO:teuthology.orchestra.run.smithi086.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-09-18T08:13:01.501 INFO:teuthology.orchestra.run.smithi086.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-09-18T08:13:01.501 INFO:teuthology.orchestra.run.smithi086.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-09-18T08:13:01.501 INFO:teuthology.orchestra.run.smithi086.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-09-18T08:13:01.501 INFO:teuthology.orchestra.run.smithi086.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-09-18T08:13:01.501 INFO:teuthology.orchestra.run.smithi086.stdout:Recommended packages: 2024-09-18T08:13:01.501 INFO:teuthology.orchestra.run.smithi086.stdout: btrfs-tools 2024-09-18T08:13:01.601 INFO:teuthology.orchestra.run.smithi086.stdout:The following NEW packages will be installed: 2024-09-18T08:13:01.601 INFO:teuthology.orchestra.run.smithi086.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-18T08:13:01.601 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-18T08:13:01.601 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-18T08:13:01.603 INFO:teuthology.orchestra.run.smithi086.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-09-18T08:13:01.603 INFO:teuthology.orchestra.run.smithi086.stdout: liblua5.3-dev libnbd0 liboath0 libonig5 libpcre2-16-0 libqt5core5a 2024-09-18T08:13:01.603 INFO:teuthology.orchestra.run.smithi086.stdout: libqt5dbus5 libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-09-18T08:13:01.603 INFO:teuthology.orchestra.run.smithi086.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-09-18T08:13:01.603 INFO:teuthology.orchestra.run.smithi086.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-09-18T08:13:01.603 INFO:teuthology.orchestra.run.smithi086.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-09-18T08:13:01.604 INFO:teuthology.orchestra.run.smithi086.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-09-18T08:13:01.604 INFO:teuthology.orchestra.run.smithi086.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-09-18T08:13:01.604 INFO:teuthology.orchestra.run.smithi086.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-18T08:13:01.604 INFO:teuthology.orchestra.run.smithi086.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-18T08:13:01.604 INFO:teuthology.orchestra.run.smithi086.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-18T08:13:01.604 INFO:teuthology.orchestra.run.smithi086.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-18T08:13:01.604 INFO:teuthology.orchestra.run.smithi086.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-18T08:13:01.604 INFO:teuthology.orchestra.run.smithi086.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-18T08:13:01.604 INFO:teuthology.orchestra.run.smithi086.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-18T08:13:01.604 INFO:teuthology.orchestra.run.smithi086.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-09-18T08:13:01.604 INFO:teuthology.orchestra.run.smithi086.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-09-18T08:13:01.604 INFO:teuthology.orchestra.run.smithi086.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-09-18T08:13:01.604 INFO:teuthology.orchestra.run.smithi086.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-09-18T08:13:01.604 INFO:teuthology.orchestra.run.smithi086.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-09-18T08:13:01.605 INFO:teuthology.orchestra.run.smithi086.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-09-18T08:13:01.605 INFO:teuthology.orchestra.run.smithi086.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-09-18T08:13:01.605 INFO:teuthology.orchestra.run.smithi086.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-09-18T08:13:01.657 INFO:teuthology.orchestra.run.smithi172.stdout:The following packages were automatically installed and are no longer required: 2024-09-18T08:13:01.657 INFO:teuthology.orchestra.run.smithi172.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-18T08:13:01.657 INFO:teuthology.orchestra.run.smithi172.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-18T08:13:01.657 INFO:teuthology.orchestra.run.smithi172.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-18T08:13:01.657 INFO:teuthology.orchestra.run.smithi172.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-18T08:13:01.658 INFO:teuthology.orchestra.run.smithi172.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-18T08:13:01.658 INFO:teuthology.orchestra.run.smithi172.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-18T08:13:01.658 INFO:teuthology.orchestra.run.smithi172.stdout:The following additional packages will be installed: 2024-09-18T08:13:01.659 INFO:teuthology.orchestra.run.smithi172.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-18T08:13:01.659 INFO:teuthology.orchestra.run.smithi172.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-18T08:13:01.659 INFO:teuthology.orchestra.run.smithi172.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev libnbd0 liboath0 2024-09-18T08:13:01.659 INFO:teuthology.orchestra.run.smithi172.stdout: libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 2024-09-18T08:13:01.659 INFO:teuthology.orchestra.run.smithi172.stdout: libradosstriper1 librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph 2024-09-18T08:13:01.660 INFO:teuthology.orchestra.run.smithi172.stdout: libthrift-0.16.0 lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli 2024-09-18T08:13:01.660 INFO:teuthology.orchestra.run.smithi172.stdout: pkg-config python-asyncssh-doc python-babel-localedata 2024-09-18T08:13:01.660 INFO:teuthology.orchestra.run.smithi172.stdout: python-pastedeploy-tpl python3-asyncssh python3-babel python3-bcrypt 2024-09-18T08:13:01.660 INFO:teuthology.orchestra.run.smithi172.stdout: python3-cachetools python3-ceph-argparse python3-ceph-common python3-certifi 2024-09-18T08:13:01.660 INFO:teuthology.orchestra.run.smithi172.stdout: python3-cheroot python3-cherrypy3 python3-google-auth python3-idna 2024-09-18T08:13:01.661 INFO:teuthology.orchestra.run.smithi172.stdout: python3-iniconfig python3-jaraco.classes python3-jaraco.collections 2024-09-18T08:13:01.661 INFO:teuthology.orchestra.run.smithi172.stdout: python3-jaraco.functools python3-jaraco.text python3-jinja2 python3-joblib 2024-09-18T08:13:01.661 INFO:teuthology.orchestra.run.smithi172.stdout: python3-kubernetes python3-logutils python3-mako python3-markupsafe 2024-09-18T08:13:01.661 INFO:teuthology.orchestra.run.smithi172.stdout: python3-natsort python3-openssl python3-paste python3-pastedeploy 2024-09-18T08:13:01.661 INFO:teuthology.orchestra.run.smithi172.stdout: python3-pastescript python3-pecan python3-pluggy python3-portend 2024-09-18T08:13:01.661 INFO:teuthology.orchestra.run.smithi172.stdout: python3-prettytable python3-psutil python3-py python3-pyasn1 2024-09-18T08:13:01.661 INFO:teuthology.orchestra.run.smithi172.stdout: python3-pyasn1-modules python3-pygments python3-pyinotify python3-pytest 2024-09-18T08:13:01.661 INFO:teuthology.orchestra.run.smithi172.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-routes 2024-09-18T08:13:01.661 INFO:teuthology.orchestra.run.smithi172.stdout: python3-rsa python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-18T08:13:01.661 INFO:teuthology.orchestra.run.smithi172.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-18T08:13:01.661 INFO:teuthology.orchestra.run.smithi172.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-18T08:13:01.661 INFO:teuthology.orchestra.run.smithi172.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-18T08:13:01.661 INFO:teuthology.orchestra.run.smithi172.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-09-18T08:13:01.661 INFO:teuthology.orchestra.run.smithi172.stdout: xmlstarlet zip 2024-09-18T08:13:01.662 INFO:teuthology.orchestra.run.smithi172.stdout:Suggested packages: 2024-09-18T08:13:01.662 INFO:teuthology.orchestra.run.smithi172.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-09-18T08:13:01.662 INFO:teuthology.orchestra.run.smithi172.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-09-18T08:13:01.662 INFO:teuthology.orchestra.run.smithi172.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-09-18T08:13:01.662 INFO:teuthology.orchestra.run.smithi172.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-09-18T08:13:01.662 INFO:teuthology.orchestra.run.smithi172.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-09-18T08:13:01.662 INFO:teuthology.orchestra.run.smithi172.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-09-18T08:13:01.662 INFO:teuthology.orchestra.run.smithi172.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-09-18T08:13:01.662 INFO:teuthology.orchestra.run.smithi172.stdout:Recommended packages: 2024-09-18T08:13:01.662 INFO:teuthology.orchestra.run.smithi172.stdout: btrfs-tools 2024-09-18T08:13:01.704 INFO:teuthology.orchestra.run.smithi070.stdout:The following packages were automatically installed and are no longer required: 2024-09-18T08:13:01.704 INFO:teuthology.orchestra.run.smithi070.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-18T08:13:01.705 INFO:teuthology.orchestra.run.smithi070.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-18T08:13:01.705 INFO:teuthology.orchestra.run.smithi070.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-18T08:13:01.705 INFO:teuthology.orchestra.run.smithi070.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-18T08:13:01.705 INFO:teuthology.orchestra.run.smithi070.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-18T08:13:01.705 INFO:teuthology.orchestra.run.smithi070.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-18T08:13:01.706 INFO:teuthology.orchestra.run.smithi070.stdout:The following additional packages will be installed: 2024-09-18T08:13:01.706 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-18T08:13:01.706 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-18T08:13:01.706 INFO:teuthology.orchestra.run.smithi070.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev libnbd0 liboath0 2024-09-18T08:13:01.707 INFO:teuthology.orchestra.run.smithi070.stdout: libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 2024-09-18T08:13:01.707 INFO:teuthology.orchestra.run.smithi070.stdout: libradosstriper1 librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph 2024-09-18T08:13:01.707 INFO:teuthology.orchestra.run.smithi070.stdout: libthrift-0.16.0 lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli 2024-09-18T08:13:01.707 INFO:teuthology.orchestra.run.smithi070.stdout: pkg-config python-asyncssh-doc python-babel-localedata 2024-09-18T08:13:01.708 INFO:teuthology.orchestra.run.smithi070.stdout: python-pastedeploy-tpl python3-asyncssh python3-babel python3-bcrypt 2024-09-18T08:13:01.708 INFO:teuthology.orchestra.run.smithi070.stdout: python3-cachetools python3-ceph-argparse python3-ceph-common python3-certifi 2024-09-18T08:13:01.708 INFO:teuthology.orchestra.run.smithi070.stdout: python3-cheroot python3-cherrypy3 python3-google-auth python3-idna 2024-09-18T08:13:01.708 INFO:teuthology.orchestra.run.smithi070.stdout: python3-iniconfig python3-jaraco.classes python3-jaraco.collections 2024-09-18T08:13:01.708 INFO:teuthology.orchestra.run.smithi070.stdout: python3-jaraco.functools python3-jaraco.text python3-jinja2 python3-joblib 2024-09-18T08:13:01.708 INFO:teuthology.orchestra.run.smithi070.stdout: python3-kubernetes python3-logutils python3-mako python3-markupsafe 2024-09-18T08:13:01.708 INFO:teuthology.orchestra.run.smithi070.stdout: python3-natsort python3-openssl python3-paste python3-pastedeploy 2024-09-18T08:13:01.708 INFO:teuthology.orchestra.run.smithi070.stdout: python3-pastescript python3-pecan python3-pluggy python3-portend 2024-09-18T08:13:01.708 INFO:teuthology.orchestra.run.smithi070.stdout: python3-prettytable python3-psutil python3-py python3-pyasn1 2024-09-18T08:13:01.708 INFO:teuthology.orchestra.run.smithi070.stdout: python3-pyasn1-modules python3-pygments python3-pyinotify python3-pytest 2024-09-18T08:13:01.708 INFO:teuthology.orchestra.run.smithi070.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-routes 2024-09-18T08:13:01.708 INFO:teuthology.orchestra.run.smithi070.stdout: python3-rsa python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-18T08:13:01.708 INFO:teuthology.orchestra.run.smithi070.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-18T08:13:01.708 INFO:teuthology.orchestra.run.smithi070.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-18T08:13:01.708 INFO:teuthology.orchestra.run.smithi070.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-18T08:13:01.708 INFO:teuthology.orchestra.run.smithi070.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-09-18T08:13:01.709 INFO:teuthology.orchestra.run.smithi070.stdout: xmlstarlet zip 2024-09-18T08:13:01.709 INFO:teuthology.orchestra.run.smithi070.stdout:Suggested packages: 2024-09-18T08:13:01.709 INFO:teuthology.orchestra.run.smithi070.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-09-18T08:13:01.709 INFO:teuthology.orchestra.run.smithi070.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-09-18T08:13:01.709 INFO:teuthology.orchestra.run.smithi070.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-09-18T08:13:01.709 INFO:teuthology.orchestra.run.smithi070.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-09-18T08:13:01.709 INFO:teuthology.orchestra.run.smithi070.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-09-18T08:13:01.709 INFO:teuthology.orchestra.run.smithi070.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-09-18T08:13:01.709 INFO:teuthology.orchestra.run.smithi070.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-09-18T08:13:01.710 INFO:teuthology.orchestra.run.smithi070.stdout:Recommended packages: 2024-09-18T08:13:01.710 INFO:teuthology.orchestra.run.smithi070.stdout: btrfs-tools 2024-09-18T08:13:01.748 INFO:teuthology.orchestra.run.smithi086.stdout:0 upgraded, 119 newly installed, 0 to remove and 331 not upgraded. 2024-09-18T08:13:01.748 INFO:teuthology.orchestra.run.smithi086.stdout:Need to get 244 MB of archives. 2024-09-18T08:13:01.748 INFO:teuthology.orchestra.run.smithi086.stdout:After this operation, 909 MB of additional disk space will be used. 2024-09-18T08:13:01.748 INFO:teuthology.orchestra.run.smithi086.stdout:Get:1 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.3.0-4983-ge7fb7b56-1jammy [3,630 kB] 2024-09-18T08:13:01.765 INFO:teuthology.orchestra.run.smithi172.stdout:The following NEW packages will be installed: 2024-09-18T08:13:01.765 INFO:teuthology.orchestra.run.smithi172.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-18T08:13:01.765 INFO:teuthology.orchestra.run.smithi172.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-18T08:13:01.765 INFO:teuthology.orchestra.run.smithi172.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-18T08:13:01.765 INFO:teuthology.orchestra.run.smithi172.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-09-18T08:13:01.766 INFO:teuthology.orchestra.run.smithi172.stdout: liblua5.3-dev libnbd0 liboath0 libonig5 libpcre2-16-0 libqt5core5a 2024-09-18T08:13:01.766 INFO:teuthology.orchestra.run.smithi172.stdout: libqt5dbus5 libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-09-18T08:13:01.767 INFO:teuthology.orchestra.run.smithi172.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-09-18T08:13:01.767 INFO:teuthology.orchestra.run.smithi172.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-09-18T08:13:01.767 INFO:teuthology.orchestra.run.smithi172.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-09-18T08:13:01.767 INFO:teuthology.orchestra.run.smithi172.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-09-18T08:13:01.767 INFO:teuthology.orchestra.run.smithi172.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-09-18T08:13:01.767 INFO:teuthology.orchestra.run.smithi172.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-18T08:13:01.767 INFO:teuthology.orchestra.run.smithi172.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-18T08:13:01.767 INFO:teuthology.orchestra.run.smithi172.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-18T08:13:01.767 INFO:teuthology.orchestra.run.smithi172.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-18T08:13:01.768 INFO:teuthology.orchestra.run.smithi172.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-18T08:13:01.768 INFO:teuthology.orchestra.run.smithi172.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-18T08:13:01.768 INFO:teuthology.orchestra.run.smithi172.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-18T08:13:01.768 INFO:teuthology.orchestra.run.smithi172.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-09-18T08:13:01.768 INFO:teuthology.orchestra.run.smithi172.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-09-18T08:13:01.768 INFO:teuthology.orchestra.run.smithi172.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-09-18T08:13:01.768 INFO:teuthology.orchestra.run.smithi172.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-09-18T08:13:01.768 INFO:teuthology.orchestra.run.smithi172.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-09-18T08:13:01.768 INFO:teuthology.orchestra.run.smithi172.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-09-18T08:13:01.768 INFO:teuthology.orchestra.run.smithi172.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-09-18T08:13:01.768 INFO:teuthology.orchestra.run.smithi172.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-09-18T08:13:01.791 INFO:teuthology.orchestra.run.smithi086.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-09-18T08:13:01.812 INFO:teuthology.orchestra.run.smithi070.stdout:The following NEW packages will be installed: 2024-09-18T08:13:01.813 INFO:teuthology.orchestra.run.smithi070.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-18T08:13:01.813 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-18T08:13:01.813 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-18T08:13:01.813 INFO:teuthology.orchestra.run.smithi070.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-09-18T08:13:01.813 INFO:teuthology.orchestra.run.smithi070.stdout: liblua5.3-dev libnbd0 liboath0 libonig5 libpcre2-16-0 libqt5core5a 2024-09-18T08:13:01.813 INFO:teuthology.orchestra.run.smithi070.stdout: libqt5dbus5 libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-09-18T08:13:01.815 INFO:teuthology.orchestra.run.smithi070.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-09-18T08:13:01.815 INFO:teuthology.orchestra.run.smithi070.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-09-18T08:13:01.815 INFO:teuthology.orchestra.run.smithi070.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-09-18T08:13:01.815 INFO:teuthology.orchestra.run.smithi070.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-09-18T08:13:01.815 INFO:teuthology.orchestra.run.smithi070.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-09-18T08:13:01.816 INFO:teuthology.orchestra.run.smithi070.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-18T08:13:01.816 INFO:teuthology.orchestra.run.smithi070.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-18T08:13:01.816 INFO:teuthology.orchestra.run.smithi070.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-18T08:13:01.816 INFO:teuthology.orchestra.run.smithi070.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-18T08:13:01.816 INFO:teuthology.orchestra.run.smithi070.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-18T08:13:01.816 INFO:teuthology.orchestra.run.smithi070.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-18T08:13:01.816 INFO:teuthology.orchestra.run.smithi070.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-18T08:13:01.816 INFO:teuthology.orchestra.run.smithi070.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-09-18T08:13:01.816 INFO:teuthology.orchestra.run.smithi070.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-09-18T08:13:01.816 INFO:teuthology.orchestra.run.smithi070.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-09-18T08:13:01.817 INFO:teuthology.orchestra.run.smithi070.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-09-18T08:13:01.817 INFO:teuthology.orchestra.run.smithi070.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-09-18T08:13:01.817 INFO:teuthology.orchestra.run.smithi070.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-09-18T08:13:01.817 INFO:teuthology.orchestra.run.smithi070.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-09-18T08:13:01.817 INFO:teuthology.orchestra.run.smithi070.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-09-18T08:13:01.826 INFO:teuthology.orchestra.run.smithi172.stdout:0 upgraded, 119 newly installed, 0 to remove and 331 not upgraded. 2024-09-18T08:13:01.826 INFO:teuthology.orchestra.run.smithi172.stdout:Need to get 244 MB of archives. 2024-09-18T08:13:01.826 INFO:teuthology.orchestra.run.smithi172.stdout:After this operation, 909 MB of additional disk space will be used. 2024-09-18T08:13:01.826 INFO:teuthology.orchestra.run.smithi172.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-09-18T08:13:01.914 INFO:teuthology.orchestra.run.smithi172.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-09-18T08:13:01.916 INFO:teuthology.orchestra.run.smithi172.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-09-18T08:13:01.934 INFO:teuthology.orchestra.run.smithi172.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-09-18T08:13:01.940 INFO:teuthology.orchestra.run.smithi172.stdout:Get:5 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.3.0-4983-ge7fb7b56-1jammy [3,630 kB] 2024-09-18T08:13:01.956 INFO:teuthology.orchestra.run.smithi070.stdout:0 upgraded, 119 newly installed, 0 to remove and 331 not upgraded. 2024-09-18T08:13:01.956 INFO:teuthology.orchestra.run.smithi070.stdout:Need to get 244 MB of archives. 2024-09-18T08:13:01.956 INFO:teuthology.orchestra.run.smithi070.stdout:After this operation, 909 MB of additional disk space will be used. 2024-09-18T08:13:01.956 INFO:teuthology.orchestra.run.smithi070.stdout:Get:1 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.3.0-4983-ge7fb7b56-1jammy [3,630 kB] 2024-09-18T08:13:01.967 INFO:teuthology.orchestra.run.smithi086.stdout:Get:3 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.3.0-4983-ge7fb7b56-1jammy [3,334 kB] 2024-09-18T08:13:01.985 INFO:teuthology.orchestra.run.smithi172.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-09-18T08:13:01.987 INFO:teuthology.orchestra.run.smithi172.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-09-18T08:13:01.994 INFO:teuthology.orchestra.run.smithi172.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-09-18T08:13:01.997 INFO:teuthology.orchestra.run.smithi172.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libnbd0 amd64 1.10.5-1 [71.3 kB] 2024-09-18T08:13:01.998 INFO:teuthology.orchestra.run.smithi172.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-09-18T08:13:01.998 INFO:teuthology.orchestra.run.smithi172.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-09-18T08:13:01.999 INFO:teuthology.orchestra.run.smithi172.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-09-18T08:13:02.003 INFO:teuthology.orchestra.run.smithi070.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-09-18T08:13:02.005 INFO:teuthology.orchestra.run.smithi172.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-09-18T08:13:02.007 INFO:teuthology.orchestra.run.smithi172.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-09-18T08:13:02.008 INFO:teuthology.orchestra.run.smithi172.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-09-18T08:13:02.021 INFO:teuthology.orchestra.run.smithi172.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-09-18T08:13:02.021 INFO:teuthology.orchestra.run.smithi172.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-09-18T08:13:02.023 INFO:teuthology.orchestra.run.smithi172.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-09-18T08:13:02.025 INFO:teuthology.orchestra.run.smithi172.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-09-18T08:13:02.027 INFO:teuthology.orchestra.run.smithi172.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-09-18T08:13:02.027 INFO:teuthology.orchestra.run.smithi172.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-09-18T08:13:02.038 INFO:teuthology.orchestra.run.smithi172.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-18T08:13:02.039 INFO:teuthology.orchestra.run.smithi172.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-09-18T08:13:02.039 INFO:teuthology.orchestra.run.smithi172.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-09-18T08:13:02.040 INFO:teuthology.orchestra.run.smithi172.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-09-18T08:13:02.055 INFO:teuthology.orchestra.run.smithi172.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-09-18T08:13:02.056 INFO:teuthology.orchestra.run.smithi172.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-18T08:13:02.056 INFO:teuthology.orchestra.run.smithi172.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-18T08:13:02.056 INFO:teuthology.orchestra.run.smithi172.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-18T08:13:02.059 INFO:teuthology.orchestra.run.smithi172.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-18T08:13:02.059 INFO:teuthology.orchestra.run.smithi172.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-18T08:13:02.073 INFO:teuthology.orchestra.run.smithi172.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-18T08:13:02.073 INFO:teuthology.orchestra.run.smithi172.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-18T08:13:02.073 INFO:teuthology.orchestra.run.smithi172.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-18T08:13:02.074 INFO:teuthology.orchestra.run.smithi172.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-18T08:13:02.083 INFO:teuthology.orchestra.run.smithi086.stdout:Get:4 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.3.0-4983-ge7fb7b56-1jammy [721 kB] 2024-09-18T08:13:02.090 INFO:teuthology.orchestra.run.smithi172.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-18T08:13:02.091 INFO:teuthology.orchestra.run.smithi172.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-18T08:13:02.091 INFO:teuthology.orchestra.run.smithi172.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-18T08:13:02.092 INFO:teuthology.orchestra.run.smithi172.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-18T08:13:02.096 INFO:teuthology.orchestra.run.smithi172.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-18T08:13:02.097 INFO:teuthology.orchestra.run.smithi172.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-18T08:13:02.107 INFO:teuthology.orchestra.run.smithi172.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-18T08:13:02.107 INFO:teuthology.orchestra.run.smithi172.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-18T08:13:02.109 INFO:teuthology.orchestra.run.smithi172.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-18T08:13:02.111 INFO:teuthology.orchestra.run.smithi172.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-18T08:13:02.124 INFO:teuthology.orchestra.run.smithi172.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-09-18T08:13:02.125 INFO:teuthology.orchestra.run.smithi172.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-09-18T08:13:02.125 INFO:teuthology.orchestra.run.smithi172.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-18T08:13:02.128 INFO:teuthology.orchestra.run.smithi172.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-18T08:13:02.128 INFO:teuthology.orchestra.run.smithi172.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-18T08:13:02.129 INFO:teuthology.orchestra.run.smithi172.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-18T08:13:02.131 INFO:teuthology.orchestra.run.smithi086.stdout:Get:5 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.3.0-4983-ge7fb7b56-1jammy [356 kB] 2024-09-18T08:13:02.141 INFO:teuthology.orchestra.run.smithi172.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-09-18T08:13:02.145 INFO:teuthology.orchestra.run.smithi070.stdout:Get:3 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.3.0-4983-ge7fb7b56-1jammy [3,334 kB] 2024-09-18T08:13:02.182 INFO:teuthology.orchestra.run.smithi086.stdout:Get:6 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.3.0-4983-ge7fb7b56-1jammy [32.8 kB] 2024-09-18T08:13:02.186 INFO:teuthology.orchestra.run.smithi172.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-18T08:13:02.187 INFO:teuthology.orchestra.run.smithi172.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-18T08:13:02.188 INFO:teuthology.orchestra.run.smithi172.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-18T08:13:02.189 INFO:teuthology.orchestra.run.smithi172.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-18T08:13:02.190 INFO:teuthology.orchestra.run.smithi172.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-18T08:13:02.197 INFO:teuthology.orchestra.run.smithi070.stdout:Get:4 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.3.0-4983-ge7fb7b56-1jammy [721 kB] 2024-09-18T08:13:02.205 INFO:teuthology.orchestra.run.smithi086.stdout:Get:7 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.3.0-4983-ge7fb7b56-1jammy [180 kB] 2024-09-18T08:13:02.206 INFO:teuthology.orchestra.run.smithi172.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-18T08:13:02.208 INFO:teuthology.orchestra.run.smithi172.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-18T08:13:02.209 INFO:teuthology.orchestra.run.smithi070.stdout:Get:5 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.3.0-4983-ge7fb7b56-1jammy [356 kB] 2024-09-18T08:13:02.209 INFO:teuthology.orchestra.run.smithi172.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-18T08:13:02.211 INFO:teuthology.orchestra.run.smithi086.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-09-18T08:13:02.215 INFO:teuthology.orchestra.run.smithi070.stdout:Get:6 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.3.0-4983-ge7fb7b56-1jammy [32.8 kB] 2024-09-18T08:13:02.215 INFO:teuthology.orchestra.run.smithi070.stdout:Get:7 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.3.0-4983-ge7fb7b56-1jammy [180 kB] 2024-09-18T08:13:02.220 INFO:teuthology.orchestra.run.smithi086.stdout:Get:9 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.3.0-4983-ge7fb7b56-1jammy [71.3 kB] 2024-09-18T08:13:02.220 INFO:teuthology.orchestra.run.smithi070.stdout:Get:8 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.3.0-4983-ge7fb7b56-1jammy [71.3 kB] 2024-09-18T08:13:02.222 INFO:teuthology.orchestra.run.smithi070.stdout:Get:9 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.3.0-4983-ge7fb7b56-1jammy [338 kB] 2024-09-18T08:13:02.222 INFO:teuthology.orchestra.run.smithi086.stdout:Get:10 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.3.0-4983-ge7fb7b56-1jammy [338 kB] 2024-09-18T08:13:02.223 INFO:teuthology.orchestra.run.smithi172.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-18T08:13:02.224 INFO:teuthology.orchestra.run.smithi086.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-09-18T08:13:02.224 INFO:teuthology.orchestra.run.smithi172.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-18T08:13:02.225 INFO:teuthology.orchestra.run.smithi172.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-18T08:13:02.225 INFO:teuthology.orchestra.run.smithi172.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-18T08:13:02.225 INFO:teuthology.orchestra.run.smithi172.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-18T08:13:02.226 INFO:teuthology.orchestra.run.smithi172.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-09-18T08:13:02.233 INFO:teuthology.orchestra.run.smithi070.stdout:Get:10 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.3.0-4983-ge7fb7b56-1jammy [7,966 kB] 2024-09-18T08:13:02.234 INFO:teuthology.orchestra.run.smithi086.stdout:Get:12 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.3.0-4983-ge7fb7b56-1jammy [7,966 kB] 2024-09-18T08:13:02.239 INFO:teuthology.orchestra.run.smithi172.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-18T08:13:02.240 INFO:teuthology.orchestra.run.smithi172.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-18T08:13:02.243 INFO:teuthology.orchestra.run.smithi172.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-18T08:13:02.256 INFO:teuthology.orchestra.run.smithi172.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-18T08:13:02.258 INFO:teuthology.orchestra.run.smithi172.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-18T08:13:02.258 INFO:teuthology.orchestra.run.smithi172.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-18T08:13:02.261 INFO:teuthology.orchestra.run.smithi172.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-18T08:13:02.264 INFO:teuthology.orchestra.run.smithi172.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-09-18T08:13:02.265 INFO:teuthology.orchestra.run.smithi172.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-09-18T08:13:02.265 INFO:teuthology.orchestra.run.smithi172.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-18T08:13:02.274 INFO:teuthology.orchestra.run.smithi172.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-09-18T08:13:02.274 INFO:teuthology.orchestra.run.smithi172.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-18T08:13:02.277 INFO:teuthology.orchestra.run.smithi172.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-18T08:13:02.291 INFO:teuthology.orchestra.run.smithi172.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-18T08:13:02.291 INFO:teuthology.orchestra.run.smithi172.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-18T08:13:02.292 INFO:teuthology.orchestra.run.smithi172.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-18T08:13:02.293 INFO:teuthology.orchestra.run.smithi172.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-18T08:13:02.294 INFO:teuthology.orchestra.run.smithi172.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-18T08:13:02.300 INFO:teuthology.orchestra.run.smithi172.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-18T08:13:02.300 INFO:teuthology.orchestra.run.smithi172.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-18T08:13:02.305 INFO:teuthology.orchestra.run.smithi086.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-09-18T08:13:02.308 INFO:teuthology.orchestra.run.smithi172.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-18T08:13:02.310 INFO:teuthology.orchestra.run.smithi172.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-18T08:13:02.311 INFO:teuthology.orchestra.run.smithi172.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-18T08:13:02.427 INFO:teuthology.orchestra.run.smithi070.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-09-18T08:13:02.440 INFO:teuthology.orchestra.run.smithi070.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-09-18T08:13:02.521 INFO:teuthology.orchestra.run.smithi070.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-09-18T08:13:02.536 INFO:teuthology.orchestra.run.smithi086.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-09-18T08:13:02.547 INFO:teuthology.orchestra.run.smithi086.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-09-18T08:13:02.580 INFO:teuthology.orchestra.run.smithi086.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-09-18T08:13:02.586 INFO:teuthology.orchestra.run.smithi086.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libnbd0 amd64 1.10.5-1 [71.3 kB] 2024-09-18T08:13:02.588 INFO:teuthology.orchestra.run.smithi086.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-09-18T08:13:02.589 INFO:teuthology.orchestra.run.smithi086.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-09-18T08:13:02.591 INFO:teuthology.orchestra.run.smithi086.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-09-18T08:13:02.608 INFO:teuthology.orchestra.run.smithi086.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-09-18T08:13:02.612 INFO:teuthology.orchestra.run.smithi086.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-09-18T08:13:02.615 INFO:teuthology.orchestra.run.smithi070.stdout:Get:14 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.3.0-4983-ge7fb7b56-1jammy [112 kB] 2024-09-18T08:13:02.615 INFO:teuthology.orchestra.run.smithi086.stdout:Get:23 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.3.0-4983-ge7fb7b56-1jammy [112 kB] 2024-09-18T08:13:02.617 INFO:teuthology.orchestra.run.smithi070.stdout:Get:15 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.3.0-4983-ge7fb7b56-1jammy [473 kB] 2024-09-18T08:13:02.618 INFO:teuthology.orchestra.run.smithi086.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-09-18T08:13:02.618 INFO:teuthology.orchestra.run.smithi086.stdout:Get:25 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.3.0-4983-ge7fb7b56-1jammy [473 kB] 2024-09-18T08:13:02.650 INFO:teuthology.orchestra.run.smithi086.stdout:Get:26 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.3.0-4983-ge7fb7b56-1jammy [28.3 MB] 2024-09-18T08:13:02.650 INFO:teuthology.orchestra.run.smithi070.stdout:Get:16 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.3.0-4983-ge7fb7b56-1jammy [28.3 MB] 2024-09-18T08:13:02.699 INFO:teuthology.orchestra.run.smithi086.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-09-18T08:13:02.699 INFO:teuthology.orchestra.run.smithi086.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-09-18T08:13:02.704 INFO:teuthology.orchestra.run.smithi086.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-09-18T08:13:02.708 INFO:teuthology.orchestra.run.smithi086.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-09-18T08:13:02.711 INFO:teuthology.orchestra.run.smithi086.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-09-18T08:13:02.712 INFO:teuthology.orchestra.run.smithi086.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-09-18T08:13:02.713 INFO:teuthology.orchestra.run.smithi086.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-09-18T08:13:02.715 INFO:teuthology.orchestra.run.smithi086.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-09-18T08:13:02.715 INFO:teuthology.orchestra.run.smithi086.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-09-18T08:13:02.752 INFO:teuthology.orchestra.run.smithi070.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-09-18T08:13:02.763 INFO:teuthology.orchestra.run.smithi070.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-09-18T08:13:02.781 INFO:teuthology.orchestra.run.smithi086.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-09-18T08:13:02.792 INFO:teuthology.orchestra.run.smithi070.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-09-18T08:13:02.798 INFO:teuthology.orchestra.run.smithi086.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-09-18T08:13:02.799 INFO:teuthology.orchestra.run.smithi086.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-18T08:13:02.800 INFO:teuthology.orchestra.run.smithi086.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-18T08:13:02.801 INFO:teuthology.orchestra.run.smithi086.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-18T08:13:02.801 INFO:teuthology.orchestra.run.smithi070.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libnbd0 amd64 1.10.5-1 [71.3 kB] 2024-09-18T08:13:02.804 INFO:teuthology.orchestra.run.smithi070.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-09-18T08:13:02.805 INFO:teuthology.orchestra.run.smithi070.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-09-18T08:13:02.806 INFO:teuthology.orchestra.run.smithi086.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-18T08:13:02.806 INFO:teuthology.orchestra.run.smithi070.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-09-18T08:13:02.824 INFO:teuthology.orchestra.run.smithi070.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-09-18T08:13:02.828 INFO:teuthology.orchestra.run.smithi070.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-09-18T08:13:02.835 INFO:teuthology.orchestra.run.smithi070.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-09-18T08:13:02.863 INFO:teuthology.orchestra.run.smithi086.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-18T08:13:02.863 INFO:teuthology.orchestra.run.smithi086.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-18T08:13:02.865 INFO:teuthology.orchestra.run.smithi086.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-09-18T08:13:02.869 INFO:teuthology.orchestra.run.smithi086.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-18T08:13:02.914 INFO:teuthology.orchestra.run.smithi070.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-09-18T08:13:02.915 INFO:teuthology.orchestra.run.smithi070.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-09-18T08:13:02.919 INFO:teuthology.orchestra.run.smithi070.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-09-18T08:13:02.923 INFO:teuthology.orchestra.run.smithi070.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-09-18T08:13:02.927 INFO:teuthology.orchestra.run.smithi070.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-09-18T08:13:02.928 INFO:teuthology.orchestra.run.smithi070.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-09-18T08:13:02.929 INFO:teuthology.orchestra.run.smithi070.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-09-18T08:13:02.931 INFO:teuthology.orchestra.run.smithi070.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-09-18T08:13:02.932 INFO:teuthology.orchestra.run.smithi070.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-09-18T08:13:02.944 INFO:teuthology.orchestra.run.smithi086.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-18T08:13:02.944 INFO:teuthology.orchestra.run.smithi086.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-webob all 1:1.8.6-1.1ubuntu0.1 [86.7 kB] 2024-09-18T08:13:02.947 INFO:teuthology.orchestra.run.smithi086.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-18T08:13:02.949 INFO:teuthology.orchestra.run.smithi086.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-18T08:13:02.950 INFO:teuthology.orchestra.run.smithi086.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-18T08:13:02.998 INFO:teuthology.orchestra.run.smithi070.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-09-18T08:13:03.015 INFO:teuthology.orchestra.run.smithi070.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-09-18T08:13:03.015 INFO:teuthology.orchestra.run.smithi070.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-18T08:13:03.016 INFO:teuthology.orchestra.run.smithi070.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-18T08:13:03.017 INFO:teuthology.orchestra.run.smithi070.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-18T08:13:03.022 INFO:teuthology.orchestra.run.smithi070.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-18T08:13:03.023 INFO:teuthology.orchestra.run.smithi070.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-18T08:13:03.025 INFO:teuthology.orchestra.run.smithi086.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-18T08:13:03.026 INFO:teuthology.orchestra.run.smithi086.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-18T08:13:03.027 INFO:teuthology.orchestra.run.smithi086.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-18T08:13:03.028 INFO:teuthology.orchestra.run.smithi086.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-18T08:13:03.030 INFO:teuthology.orchestra.run.smithi086.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-18T08:13:03.081 INFO:teuthology.orchestra.run.smithi070.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-18T08:13:03.081 INFO:teuthology.orchestra.run.smithi070.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-09-18T08:13:03.084 INFO:teuthology.orchestra.run.smithi070.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-18T08:13:03.106 INFO:teuthology.orchestra.run.smithi086.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-18T08:13:03.108 INFO:teuthology.orchestra.run.smithi086.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-09-18T08:13:03.111 INFO:teuthology.orchestra.run.smithi086.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-09-18T08:13:03.113 INFO:teuthology.orchestra.run.smithi086.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-18T08:13:03.117 INFO:teuthology.orchestra.run.smithi086.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-18T08:13:03.162 INFO:teuthology.orchestra.run.smithi070.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-18T08:13:03.162 INFO:teuthology.orchestra.run.smithi070.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-webob all 1:1.8.6-1.1ubuntu0.1 [86.7 kB] 2024-09-18T08:13:03.165 INFO:teuthology.orchestra.run.smithi070.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-18T08:13:03.166 INFO:teuthology.orchestra.run.smithi070.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-18T08:13:03.167 INFO:teuthology.orchestra.run.smithi070.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-18T08:13:03.178 INFO:teuthology.orchestra.run.smithi070.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-18T08:13:03.188 INFO:teuthology.orchestra.run.smithi086.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-18T08:13:03.189 INFO:teuthology.orchestra.run.smithi086.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-18T08:13:03.194 INFO:teuthology.orchestra.run.smithi086.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-09-18T08:13:03.243 INFO:teuthology.orchestra.run.smithi070.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-18T08:13:03.244 INFO:teuthology.orchestra.run.smithi070.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-18T08:13:03.245 INFO:teuthology.orchestra.run.smithi070.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-18T08:13:03.248 INFO:teuthology.orchestra.run.smithi070.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-18T08:13:03.325 INFO:teuthology.orchestra.run.smithi070.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-18T08:13:03.327 INFO:teuthology.orchestra.run.smithi070.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-09-18T08:13:03.329 INFO:teuthology.orchestra.run.smithi070.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-09-18T08:13:03.331 INFO:teuthology.orchestra.run.smithi070.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-18T08:13:03.335 INFO:teuthology.orchestra.run.smithi070.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-18T08:13:03.336 INFO:teuthology.orchestra.run.smithi070.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-18T08:13:03.359 INFO:teuthology.orchestra.run.smithi086.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-18T08:13:03.360 INFO:teuthology.orchestra.run.smithi086.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-18T08:13:03.363 INFO:teuthology.orchestra.run.smithi086.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-18T08:13:03.364 INFO:teuthology.orchestra.run.smithi086.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-18T08:13:03.366 INFO:teuthology.orchestra.run.smithi086.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-18T08:13:03.401 INFO:teuthology.orchestra.run.smithi086.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-18T08:13:03.407 INFO:teuthology.orchestra.run.smithi070.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-18T08:13:03.411 INFO:teuthology.orchestra.run.smithi070.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-09-18T08:13:03.434 INFO:teuthology.orchestra.run.smithi086.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-18T08:13:03.435 INFO:teuthology.orchestra.run.smithi086.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-18T08:13:03.464 INFO:teuthology.orchestra.run.smithi086.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-18T08:13:03.464 INFO:teuthology.orchestra.run.smithi086.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-18T08:13:03.466 INFO:teuthology.orchestra.run.smithi172.stdout:Get:90 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.3.0-4983-ge7fb7b56-1jammy [3,334 kB] 2024-09-18T08:13:03.525 INFO:teuthology.orchestra.run.smithi086.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-18T08:13:03.526 INFO:teuthology.orchestra.run.smithi086.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-18T08:13:03.527 INFO:teuthology.orchestra.run.smithi086.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-18T08:13:03.528 INFO:teuthology.orchestra.run.smithi086.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-18T08:13:03.529 INFO:teuthology.orchestra.run.smithi086.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-18T08:13:03.531 INFO:teuthology.orchestra.run.smithi086.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-18T08:13:03.537 INFO:teuthology.orchestra.run.smithi086.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-18T08:13:03.573 INFO:teuthology.orchestra.run.smithi070.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-18T08:13:03.574 INFO:teuthology.orchestra.run.smithi070.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-18T08:13:03.577 INFO:teuthology.orchestra.run.smithi070.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-18T08:13:03.577 INFO:teuthology.orchestra.run.smithi070.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-18T08:13:03.580 INFO:teuthology.orchestra.run.smithi070.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-18T08:13:03.607 INFO:teuthology.orchestra.run.smithi086.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-18T08:13:03.610 INFO:teuthology.orchestra.run.smithi086.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-18T08:13:03.611 INFO:teuthology.orchestra.run.smithi086.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-18T08:13:03.615 INFO:teuthology.orchestra.run.smithi070.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-18T08:13:03.618 INFO:teuthology.orchestra.run.smithi070.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-18T08:13:03.619 INFO:teuthology.orchestra.run.smithi070.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-18T08:13:03.679 INFO:teuthology.orchestra.run.smithi172.stdout:Get:91 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.3.0-4983-ge7fb7b56-1jammy [721 kB] 2024-09-18T08:13:03.680 INFO:teuthology.orchestra.run.smithi070.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-18T08:13:03.680 INFO:teuthology.orchestra.run.smithi070.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-18T08:13:03.688 INFO:teuthology.orchestra.run.smithi086.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-18T08:13:03.695 INFO:teuthology.orchestra.run.smithi086.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-18T08:13:03.697 INFO:teuthology.orchestra.run.smithi172.stdout:Get:92 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.3.0-4983-ge7fb7b56-1jammy [356 kB] 2024-09-18T08:13:03.697 INFO:teuthology.orchestra.run.smithi086.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-09-18T08:13:03.699 INFO:teuthology.orchestra.run.smithi086.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-18T08:13:03.704 INFO:teuthology.orchestra.run.smithi172.stdout:Get:93 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.3.0-4983-ge7fb7b56-1jammy [32.8 kB] 2024-09-18T08:13:03.706 INFO:teuthology.orchestra.run.smithi172.stdout:Get:94 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.3.0-4983-ge7fb7b56-1jammy [180 kB] 2024-09-18T08:13:03.710 INFO:teuthology.orchestra.run.smithi086.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-09-18T08:13:03.711 INFO:teuthology.orchestra.run.smithi086.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-18T08:13:03.719 INFO:teuthology.orchestra.run.smithi086.stdout:Get:90 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-18T08:13:03.743 INFO:teuthology.orchestra.run.smithi070.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-18T08:13:03.744 INFO:teuthology.orchestra.run.smithi070.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-18T08:13:03.745 INFO:teuthology.orchestra.run.smithi070.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-18T08:13:03.746 INFO:teuthology.orchestra.run.smithi070.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-18T08:13:03.747 INFO:teuthology.orchestra.run.smithi070.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-18T08:13:03.747 INFO:teuthology.orchestra.run.smithi070.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-18T08:13:03.752 INFO:teuthology.orchestra.run.smithi172.stdout:Get:95 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.3.0-4983-ge7fb7b56-1jammy [71.3 kB] 2024-09-18T08:13:03.754 INFO:teuthology.orchestra.run.smithi070.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-18T08:13:03.754 INFO:teuthology.orchestra.run.smithi172.stdout:Get:96 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.3.0-4983-ge7fb7b56-1jammy [338 kB] 2024-09-18T08:13:03.761 INFO:teuthology.orchestra.run.smithi172.stdout:Get:97 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.3.0-4983-ge7fb7b56-1jammy [7,966 kB] 2024-09-18T08:13:03.769 INFO:teuthology.orchestra.run.smithi086.stdout:Get:91 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-18T08:13:03.771 INFO:teuthology.orchestra.run.smithi086.stdout:Get:92 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-18T08:13:03.772 INFO:teuthology.orchestra.run.smithi086.stdout:Get:93 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-18T08:13:03.825 INFO:teuthology.orchestra.run.smithi070.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-18T08:13:03.851 INFO:teuthology.orchestra.run.smithi086.stdout:Get:94 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-18T08:13:03.857 INFO:teuthology.orchestra.run.smithi086.stdout:Get:95 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-18T08:13:03.859 INFO:teuthology.orchestra.run.smithi070.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-18T08:13:03.861 INFO:teuthology.orchestra.run.smithi070.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-18T08:13:03.923 INFO:teuthology.orchestra.run.smithi086.stdout:Get:96 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-18T08:13:03.923 INFO:teuthology.orchestra.run.smithi086.stdout:Get:97 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.3.0-4983-ge7fb7b56-1jammy [5,209 kB] 2024-09-18T08:13:03.924 INFO:teuthology.orchestra.run.smithi070.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-18T08:13:03.924 INFO:teuthology.orchestra.run.smithi086.stdout:Get:98 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-18T08:13:03.924 INFO:teuthology.orchestra.run.smithi086.stdout:Get:99 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-18T08:13:03.925 INFO:teuthology.orchestra.run.smithi070.stdout:Get:85 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.3.0-4983-ge7fb7b56-1jammy [5,209 kB] 2024-09-18T08:13:03.929 INFO:teuthology.orchestra.run.smithi086.stdout:Get:100 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-18T08:13:03.930 INFO:teuthology.orchestra.run.smithi070.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-09-18T08:13:03.931 INFO:teuthology.orchestra.run.smithi086.stdout:Get:101 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-18T08:13:03.932 INFO:teuthology.orchestra.run.smithi070.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-09-18T08:13:03.933 INFO:teuthology.orchestra.run.smithi070.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-18T08:13:03.944 INFO:teuthology.orchestra.run.smithi070.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-09-18T08:13:03.946 INFO:teuthology.orchestra.run.smithi070.stdout:Get:90 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-18T08:13:03.953 INFO:teuthology.orchestra.run.smithi070.stdout:Get:91 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-18T08:13:03.988 INFO:teuthology.orchestra.run.smithi070.stdout:Get:92 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-18T08:13:03.989 INFO:teuthology.orchestra.run.smithi070.stdout:Get:93 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-18T08:13:04.032 INFO:teuthology.orchestra.run.smithi070.stdout:Get:94 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.3.0-4983-ge7fb7b56-1jammy [251 kB] 2024-09-18T08:13:04.032 INFO:teuthology.orchestra.run.smithi086.stdout:Get:102 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.3.0-4983-ge7fb7b56-1jammy [251 kB] 2024-09-18T08:13:04.037 INFO:teuthology.orchestra.run.smithi086.stdout:Get:103 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.3.0-4983-ge7fb7b56-1jammy [124 kB] 2024-09-18T08:13:04.040 INFO:teuthology.orchestra.run.smithi086.stdout:Get:104 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.3.0-4983-ge7fb7b56-1jammy [1,562 kB] 2024-09-18T08:13:04.042 INFO:teuthology.orchestra.run.smithi070.stdout:Get:95 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.3.0-4983-ge7fb7b56-1jammy [124 kB] 2024-09-18T08:13:04.045 INFO:teuthology.orchestra.run.smithi070.stdout:Get:96 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.3.0-4983-ge7fb7b56-1jammy [1,562 kB] 2024-09-18T08:13:04.069 INFO:teuthology.orchestra.run.smithi070.stdout:Get:97 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-18T08:13:04.073 INFO:teuthology.orchestra.run.smithi070.stdout:Get:98 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-18T08:13:04.075 INFO:teuthology.orchestra.run.smithi070.stdout:Get:99 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-18T08:13:04.092 INFO:teuthology.orchestra.run.smithi070.stdout:Get:100 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-18T08:13:04.093 INFO:teuthology.orchestra.run.smithi070.stdout:Get:101 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-18T08:13:04.094 INFO:teuthology.orchestra.run.smithi070.stdout:Get:102 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-18T08:13:04.099 INFO:teuthology.orchestra.run.smithi070.stdout:Get:103 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-18T08:13:04.100 INFO:teuthology.orchestra.run.smithi070.stdout:Get:104 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-18T08:13:04.136 INFO:teuthology.orchestra.run.smithi086.stdout:Get:105 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.3.0-4983-ge7fb7b56-1jammy [6,309 kB] 2024-09-18T08:13:04.136 INFO:teuthology.orchestra.run.smithi070.stdout:Get:105 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.3.0-4983-ge7fb7b56-1jammy [6,309 kB] 2024-09-18T08:13:04.340 INFO:teuthology.orchestra.run.smithi172.stdout:Get:98 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.3.0-4983-ge7fb7b56-1jammy [112 kB] 2024-09-18T08:13:04.342 INFO:teuthology.orchestra.run.smithi172.stdout:Get:99 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.3.0-4983-ge7fb7b56-1jammy [473 kB] 2024-09-18T08:13:04.352 INFO:teuthology.orchestra.run.smithi172.stdout:Get:100 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.3.0-4983-ge7fb7b56-1jammy [28.3 MB] 2024-09-18T08:13:04.355 INFO:teuthology.orchestra.run.smithi070.stdout:Get:106 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.3.0-4983-ge7fb7b56-1jammy [23.1 MB] 2024-09-18T08:13:04.472 INFO:teuthology.orchestra.run.smithi086.stdout:Get:106 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.3.0-4983-ge7fb7b56-1jammy [23.1 MB] 2024-09-18T08:13:05.467 INFO:teuthology.orchestra.run.smithi070.stdout:Get:107 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.3.0-4983-ge7fb7b56-1jammy [14.1 kB] 2024-09-18T08:13:05.468 INFO:teuthology.orchestra.run.smithi070.stdout:Get:108 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.3.0-4983-ge7fb7b56-1jammy [880 kB] 2024-09-18T08:13:05.484 INFO:teuthology.orchestra.run.smithi070.stdout:Get:109 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.3.0-4983-ge7fb7b56-1jammy [2,455 kB] 2024-09-18T08:13:05.529 INFO:teuthology.orchestra.run.smithi070.stdout:Get:110 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.3.0-4983-ge7fb7b56-1jammy [814 kB] 2024-09-18T08:13:05.581 INFO:teuthology.orchestra.run.smithi070.stdout:Get:111 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.3.0-4983-ge7fb7b56-1jammy [160 kB] 2024-09-18T08:13:05.585 INFO:teuthology.orchestra.run.smithi070.stdout:Get:112 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.3.0-4983-ge7fb7b56-1jammy [61.5 MB] 2024-09-18T08:13:05.711 INFO:teuthology.orchestra.run.smithi172.stdout:Get:101 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.3.0-4983-ge7fb7b56-1jammy [5,209 kB] 2024-09-18T08:13:05.827 INFO:teuthology.orchestra.run.smithi172.stdout:Get:102 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.3.0-4983-ge7fb7b56-1jammy [251 kB] 2024-09-18T08:13:05.833 INFO:teuthology.orchestra.run.smithi172.stdout:Get:103 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.3.0-4983-ge7fb7b56-1jammy [124 kB] 2024-09-18T08:13:05.843 INFO:teuthology.orchestra.run.smithi172.stdout:Get:104 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.3.0-4983-ge7fb7b56-1jammy [1,562 kB] 2024-09-18T08:13:05.908 INFO:teuthology.orchestra.run.smithi172.stdout:Get:105 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.3.0-4983-ge7fb7b56-1jammy [6,309 kB] 2024-09-18T08:13:06.112 INFO:teuthology.orchestra.run.smithi086.stdout:Get:107 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.3.0-4983-ge7fb7b56-1jammy [14.1 kB] 2024-09-18T08:13:06.112 INFO:teuthology.orchestra.run.smithi086.stdout:Get:108 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.3.0-4983-ge7fb7b56-1jammy [880 kB] 2024-09-18T08:13:06.132 INFO:teuthology.orchestra.run.smithi086.stdout:Get:109 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.3.0-4983-ge7fb7b56-1jammy [2,455 kB] 2024-09-18T08:13:06.162 INFO:teuthology.orchestra.run.smithi172.stdout:Get:106 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.3.0-4983-ge7fb7b56-1jammy [23.1 MB] 2024-09-18T08:13:06.285 INFO:teuthology.orchestra.run.smithi086.stdout:Get:110 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.3.0-4983-ge7fb7b56-1jammy [814 kB] 2024-09-18T08:13:06.314 INFO:teuthology.orchestra.run.smithi086.stdout:Get:111 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.3.0-4983-ge7fb7b56-1jammy [160 kB] 2024-09-18T08:13:06.351 INFO:teuthology.orchestra.run.smithi086.stdout:Get:112 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.3.0-4983-ge7fb7b56-1jammy [61.5 MB] 2024-09-18T08:13:07.208 INFO:teuthology.orchestra.run.smithi172.stdout:Get:107 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.3.0-4983-ge7fb7b56-1jammy [14.1 kB] 2024-09-18T08:13:07.295 INFO:teuthology.orchestra.run.smithi172.stdout:Get:108 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.3.0-4983-ge7fb7b56-1jammy [880 kB] 2024-09-18T08:13:07.312 INFO:teuthology.orchestra.run.smithi172.stdout:Get:109 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.3.0-4983-ge7fb7b56-1jammy [2,455 kB] 2024-09-18T08:13:07.354 INFO:teuthology.orchestra.run.smithi172.stdout:Get:110 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.3.0-4983-ge7fb7b56-1jammy [814 kB] 2024-09-18T08:13:07.365 INFO:teuthology.orchestra.run.smithi172.stdout:Get:111 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.3.0-4983-ge7fb7b56-1jammy [160 kB] 2024-09-18T08:13:07.367 INFO:teuthology.orchestra.run.smithi172.stdout:Get:112 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.3.0-4983-ge7fb7b56-1jammy [61.5 MB] 2024-09-18T08:13:08.517 INFO:teuthology.orchestra.run.smithi070.stdout:Get:113 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.3.0-4983-ge7fb7b56-1jammy [8,625 kB] 2024-09-18T08:13:08.779 INFO:teuthology.orchestra.run.smithi070.stdout:Get:114 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.3.0-4983-ge7fb7b56-1jammy [14.2 kB] 2024-09-18T08:13:08.780 INFO:teuthology.orchestra.run.smithi070.stdout:Get:115 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.3.0-4983-ge7fb7b56-1jammy [48.5 MB] 2024-09-18T08:13:10.109 INFO:teuthology.orchestra.run.smithi172.stdout:Get:113 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.3.0-4983-ge7fb7b56-1jammy [8,625 kB] 2024-09-18T08:13:10.335 INFO:teuthology.orchestra.run.smithi172.stdout:Get:114 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.3.0-4983-ge7fb7b56-1jammy [14.2 kB] 2024-09-18T08:13:10.335 INFO:teuthology.orchestra.run.smithi172.stdout:Get:115 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.3.0-4983-ge7fb7b56-1jammy [48.5 MB] 2024-09-18T08:13:10.779 INFO:teuthology.orchestra.run.smithi086.stdout:Get:113 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.3.0-4983-ge7fb7b56-1jammy [8,625 kB] 2024-09-18T08:13:11.055 INFO:teuthology.orchestra.run.smithi070.stdout:Get:116 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.3.0-4983-ge7fb7b56-1jammy [130 kB] 2024-09-18T08:13:11.093 INFO:teuthology.orchestra.run.smithi070.stdout:Get:117 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.3.0-4983-ge7fb7b56-1jammy [39.0 kB] 2024-09-18T08:13:11.094 INFO:teuthology.orchestra.run.smithi070.stdout:Get:118 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.3.0-4983-ge7fb7b56-1jammy [15.8 MB] 2024-09-18T08:13:11.108 INFO:teuthology.orchestra.run.smithi086.stdout:Get:114 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.3.0-4983-ge7fb7b56-1jammy [14.2 kB] 2024-09-18T08:13:11.108 INFO:teuthology.orchestra.run.smithi086.stdout:Get:115 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.3.0-4983-ge7fb7b56-1jammy [48.5 MB] 2024-09-18T08:13:11.740 INFO:teuthology.orchestra.run.smithi070.stdout:Get:119 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.3.0-4983-ge7fb7b56-1jammy [91.0 kB] 2024-09-18T08:13:12.261 INFO:teuthology.orchestra.run.smithi172.stdout:Get:116 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.3.0-4983-ge7fb7b56-1jammy [130 kB] 2024-09-18T08:13:12.264 INFO:teuthology.orchestra.run.smithi172.stdout:Get:117 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.3.0-4983-ge7fb7b56-1jammy [39.0 kB] 2024-09-18T08:13:12.265 INFO:teuthology.orchestra.run.smithi172.stdout:Get:118 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.3.0-4983-ge7fb7b56-1jammy [15.8 MB] 2024-09-18T08:13:12.306 INFO:teuthology.orchestra.run.smithi070.stdout:Fetched 244 MB in 10s (24.6 MB/s) 2024-09-18T08:13:12.436 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-18T08:13:12.493 INFO:teuthology.orchestra.run.smithi070.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-18T08:13:12.497 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-18T08:13:12.577 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-18T08:13:12.679 INFO:teuthology.orchestra.run.smithi172.stdout:Get:119 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.3.0-4983-ge7fb7b56-1jammy [91.0 kB] 2024-09-18T08:13:12.897 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-18T08:13:12.924 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-18T08:13:12.964 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-18T08:13:13.135 INFO:teuthology.orchestra.run.smithi086.stdout:Get:116 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.3.0-4983-ge7fb7b56-1jammy [130 kB] 2024-09-18T08:13:13.138 INFO:teuthology.orchestra.run.smithi086.stdout:Get:117 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.3.0-4983-ge7fb7b56-1jammy [39.0 kB] 2024-09-18T08:13:13.139 INFO:teuthology.orchestra.run.smithi086.stdout:Get:118 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.3.0-4983-ge7fb7b56-1jammy [15.8 MB] 2024-09-18T08:13:13.248 INFO:teuthology.orchestra.run.smithi172.stdout:Fetched 244 MB in 11s (22.4 MB/s) 2024-09-18T08:13:13.300 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-18T08:13:13.326 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-18T08:13:13.367 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-18T08:13:13.375 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-18T08:13:13.473 INFO:teuthology.orchestra.run.smithi172.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-18T08:13:13.479 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-18T08:13:13.486 INFO:teuthology.orchestra.run.smithi086.stdout:Get:119 https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.3.0-4983-ge7fb7b56-1jammy [91.0 kB] 2024-09-18T08:13:13.549 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-18T08:13:13.804 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-18T08:13:13.830 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-18T08:13:13.878 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-18T08:13:13.887 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-18T08:13:13.914 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-18T08:13:13.954 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-18T08:13:14.041 INFO:teuthology.orchestra.run.smithi086.stdout:Fetched 244 MB in 12s (20.5 MB/s) 2024-09-18T08:13:14.199 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-18T08:13:14.282 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-18T08:13:14.290 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-18T08:13:14.299 INFO:teuthology.orchestra.run.smithi086.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-18T08:13:14.304 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-18T08:13:14.309 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-18T08:13:14.317 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-18T08:13:14.348 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-18T08:13:14.357 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-18T08:13:14.389 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-18T08:13:14.660 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-18T08:13:14.686 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-18T08:13:14.719 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-18T08:13:14.726 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-18T08:13:14.745 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-18T08:13:14.767 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-18T08:13:14.793 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-18T08:13:14.794 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-18T08:13:14.833 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-18T08:13:15.046 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-18T08:13:15.072 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-18T08:13:15.111 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-18T08:13:15.112 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-18T08:13:15.138 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-18T08:13:15.170 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-18T08:13:15.180 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-18T08:13:15.207 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-18T08:13:15.247 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-18T08:13:15.457 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package librados2. 2024-09-18T08:13:15.484 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../007-librados2_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:15.524 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking librados2 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:15.592 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-18T08:13:15.598 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-18T08:13:15.618 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-18T08:13:15.624 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-18T08:13:15.658 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-18T08:13:15.673 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-18T08:13:15.953 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-18T08:13:15.980 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-18T08:13:16.002 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package libnbd0. 2024-09-18T08:13:16.021 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-18T08:13:16.028 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../008-libnbd0_1.10.5-1_amd64.deb ... 2024-09-18T08:13:16.034 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-18T08:13:16.061 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-18T08:13:16.068 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking libnbd0 (1.10.5-1) ... 2024-09-18T08:13:16.092 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-18T08:13:16.322 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package librados2. 2024-09-18T08:13:16.349 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../007-librados2_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:16.389 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking librados2 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:16.421 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-18T08:13:16.447 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-18T08:13:16.479 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package librbd1. 2024-09-18T08:13:16.487 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-18T08:13:16.494 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../009-librbd1_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:16.529 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking librbd1 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:16.850 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package libnbd0. 2024-09-18T08:13:16.873 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-18T08:13:16.877 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../008-libnbd0_1.10.5-1_amd64.deb ... 2024-09-18T08:13:16.900 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-18T08:13:16.940 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-18T08:13:16.982 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package libcephfs2. 2024-09-18T08:13:17.008 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../010-libcephfs2_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:17.048 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking libcephfs2 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:17.051 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking libnbd0 (1.10.5-1) ... 2024-09-18T08:13:17.268 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package librados2. 2024-09-18T08:13:17.295 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../007-librados2_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:17.326 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-rados. 2024-09-18T08:13:17.353 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../011-python3-rados_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:17.392 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-rados (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:17.493 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking librados2 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:17.695 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-18T08:13:17.720 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package librbd1. 2024-09-18T08:13:17.722 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../012-python3-ceph-argparse_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:17.747 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../009-librbd1_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:17.761 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-ceph-argparse (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:17.778 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking librbd1 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:17.895 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package libnbd0. 2024-09-18T08:13:17.922 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../008-libnbd0_1.10.5-1_amd64.deb ... 2024-09-18T08:13:17.954 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking libnbd0 (1.10.5-1) ... 2024-09-18T08:13:17.989 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-cephfs. 2024-09-18T08:13:18.015 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../013-python3-cephfs_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:18.056 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-cephfs (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:18.223 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package libcephfs2. 2024-09-18T08:13:18.249 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../010-libcephfs2_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:18.273 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package librbd1. 2024-09-18T08:13:18.288 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../009-librbd1_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:18.289 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking libcephfs2 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:18.359 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-18T08:13:18.364 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking librbd1 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:18.385 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../014-python3-ceph-common_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:18.425 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-ceph-common (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:18.567 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-rados. 2024-09-18T08:13:18.596 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../011-python3-rados_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:18.634 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-rados (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:18.728 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-18T08:13:18.755 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../015-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-18T08:13:18.795 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-18T08:13:18.801 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package libcephfs2. 2024-09-18T08:13:18.827 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../010-libcephfs2_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:18.867 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking libcephfs2 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:18.936 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-18T08:13:18.963 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../012-python3-ceph-argparse_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:18.995 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-ceph-argparse (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:19.122 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-prettytable. 2024-09-18T08:13:19.149 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../016-python3-prettytable_2.5.0-2_all.deb ... 2024-09-18T08:13:19.161 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-rados. 2024-09-18T08:13:19.177 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../011-python3-rados_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:19.188 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-18T08:13:19.205 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-cephfs. 2024-09-18T08:13:19.211 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-rados (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:19.221 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../013-python3-cephfs_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:19.255 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-cephfs (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:19.458 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-rbd. 2024-09-18T08:13:19.485 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../017-python3-rbd_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:19.497 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-18T08:13:19.513 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../012-python3-ceph-argparse_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:19.525 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-rbd (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:19.555 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-ceph-argparse (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:19.591 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-18T08:13:19.618 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../014-python3-ceph-common_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:19.658 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-ceph-common (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:19.808 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-cephfs. 2024-09-18T08:13:19.820 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-18T08:13:19.823 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../013-python3-cephfs_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:19.846 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../018-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-18T08:13:19.874 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-cephfs (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:19.886 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-18T08:13:19.995 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-18T08:13:20.021 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../015-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-18T08:13:20.061 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-18T08:13:20.138 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-09-18T08:13:20.154 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../019-libreadline-dev_8.1.2-1_amd64.deb ... 2024-09-18T08:13:20.185 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-18T08:13:20.196 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-09-18T08:13:20.211 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../014-python3-ceph-common_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:20.252 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-ceph-common (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:20.381 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-prettytable. 2024-09-18T08:13:20.408 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../016-python3-prettytable_2.5.0-2_all.deb ... 2024-09-18T08:13:20.447 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-18T08:13:20.499 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-09-18T08:13:20.515 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../020-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-09-18T08:13:20.538 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-18T08:13:20.551 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../015-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-18T08:13:20.557 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-18T08:13:20.579 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-18T08:13:20.683 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-rbd. 2024-09-18T08:13:20.710 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../017-python3-rbd_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:20.741 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-rbd (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:20.852 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package lua5.1. 2024-09-18T08:13:20.868 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../021-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-09-18T08:13:20.874 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-prettytable. 2024-09-18T08:13:20.900 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../016-python3-prettytable_2.5.0-2_all.deb ... 2024-09-18T08:13:20.902 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-09-18T08:13:20.941 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-18T08:13:21.086 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-18T08:13:21.113 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../018-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-18T08:13:21.153 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-18T08:13:21.197 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package lua-any. 2024-09-18T08:13:21.201 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-rbd. 2024-09-18T08:13:21.223 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../022-lua-any_27ubuntu1_all.deb ... 2024-09-18T08:13:21.227 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../017-python3-rbd_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:21.263 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking lua-any (27ubuntu1) ... 2024-09-18T08:13:21.268 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-rbd (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:21.422 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-09-18T08:13:21.449 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../019-libreadline-dev_8.1.2-1_amd64.deb ... 2024-09-18T08:13:21.489 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-09-18T08:13:21.629 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-18T08:13:21.669 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package zip. 2024-09-18T08:13:21.669 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../018-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-18T08:13:21.678 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../023-zip_3.0-12build2_amd64.deb ... 2024-09-18T08:13:21.695 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-18T08:13:21.717 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking zip (3.0-12build2) ... 2024-09-18T08:13:21.791 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-09-18T08:13:21.807 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../020-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-09-18T08:13:21.850 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-18T08:13:21.964 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-09-18T08:13:21.980 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../019-libreadline-dev_8.1.2-1_amd64.deb ... 2024-09-18T08:13:21.988 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package unzip. 2024-09-18T08:13:22.014 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-09-18T08:13:22.015 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../024-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-09-18T08:13:22.046 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-09-18T08:13:22.137 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package lua5.1. 2024-09-18T08:13:22.163 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../021-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-09-18T08:13:22.203 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-09-18T08:13:22.326 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-09-18T08:13:22.341 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../020-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-09-18T08:13:22.384 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-18T08:13:22.441 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package luarocks. 2024-09-18T08:13:22.468 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../025-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-09-18T08:13:22.508 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-09-18T08:13:22.673 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package lua-any. 2024-09-18T08:13:22.688 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../022-lua-any_27ubuntu1_all.deb ... 2024-09-18T08:13:22.731 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking lua-any (27ubuntu1) ... 2024-09-18T08:13:22.879 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package lua5.1. 2024-09-18T08:13:22.882 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package librgw2. 2024-09-18T08:13:22.905 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../021-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-09-18T08:13:22.909 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../026-librgw2_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:22.941 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package zip. 2024-09-18T08:13:22.945 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-09-18T08:13:22.948 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking librgw2 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:22.957 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../023-zip_3.0-12build2_amd64.deb ... 2024-09-18T08:13:22.992 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking zip (3.0-12build2) ... 2024-09-18T08:13:23.265 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package lua-any. 2024-09-18T08:13:23.280 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../022-lua-any_27ubuntu1_all.deb ... 2024-09-18T08:13:23.304 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package unzip. 2024-09-18T08:13:23.315 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking lua-any (27ubuntu1) ... 2024-09-18T08:13:23.330 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../024-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-09-18T08:13:23.370 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-09-18T08:13:23.517 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package zip. 2024-09-18T08:13:23.533 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../023-zip_3.0-12build2_amd64.deb ... 2024-09-18T08:13:23.567 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking zip (3.0-12build2) ... 2024-09-18T08:13:23.567 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-rgw. 2024-09-18T08:13:23.583 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../027-python3-rgw_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:23.626 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-rgw (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:23.766 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package luarocks. 2024-09-18T08:13:23.792 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../025-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-09-18T08:13:23.832 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-09-18T08:13:23.887 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package unzip. 2024-09-18T08:13:23.887 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-18T08:13:23.913 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../024-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-09-18T08:13:23.914 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../028-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-18T08:13:23.945 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-09-18T08:13:23.945 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-18T08:13:24.215 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package librgw2. 2024-09-18T08:13:24.241 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../026-librgw2_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:24.248 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package libradosstriper1. 2024-09-18T08:13:24.274 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../029-libradosstriper1_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:24.281 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking librgw2 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:24.318 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking libradosstriper1 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:24.340 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package luarocks. 2024-09-18T08:13:24.367 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../025-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-09-18T08:13:24.407 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-09-18T08:13:24.735 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package ceph-common. 2024-09-18T08:13:24.762 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../030-ceph-common_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:24.789 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package librgw2. 2024-09-18T08:13:24.801 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking ceph-common (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:24.815 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../026-librgw2_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:24.855 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking librgw2 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:24.875 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-rgw. 2024-09-18T08:13:24.890 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../027-python3-rgw_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:24.928 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-rgw (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:25.245 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-18T08:13:25.271 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../028-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-18T08:13:25.311 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-18T08:13:25.449 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-rgw. 2024-09-18T08:13:25.465 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../027-python3-rgw_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:25.508 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-rgw (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:25.631 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package libradosstriper1. 2024-09-18T08:13:25.657 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../029-libradosstriper1_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:25.698 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking libradosstriper1 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:25.802 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-18T08:13:25.828 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../028-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-18T08:13:25.860 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-18T08:13:26.093 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package ceph-common. 2024-09-18T08:13:26.119 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../030-ceph-common_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:26.159 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking ceph-common (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:26.188 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package libradosstriper1. 2024-09-18T08:13:26.206 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package ceph-base. 2024-09-18T08:13:26.214 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../029-libradosstriper1_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:26.233 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../031-ceph-base_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:26.255 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking libradosstriper1 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:26.274 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking ceph-base (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:26.683 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package ceph-common. 2024-09-18T08:13:26.709 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../030-ceph-common_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:26.749 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking ceph-common (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:26.802 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-18T08:13:26.829 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../032-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-18T08:13:26.869 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-18T08:13:27.105 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-cheroot. 2024-09-18T08:13:27.131 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../033-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-18T08:13:27.173 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-18T08:13:27.474 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-18T08:13:27.500 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../034-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-18T08:13:27.540 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-18T08:13:27.573 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package ceph-base. 2024-09-18T08:13:27.599 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../031-ceph-base_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:27.640 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking ceph-base (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:27.869 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-18T08:13:27.895 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../035-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-18T08:13:27.935 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-18T08:13:28.188 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package ceph-base. 2024-09-18T08:13:28.210 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../031-ceph-base_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:28.213 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-18T08:13:28.239 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../036-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-18T08:13:28.255 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking ceph-base (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:28.279 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-18T08:13:28.294 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-18T08:13:28.309 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../032-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-18T08:13:28.352 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-18T08:13:28.515 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-tempora. 2024-09-18T08:13:28.542 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../037-python3-tempora_4.1.2-1_all.deb ... 2024-09-18T08:13:28.582 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-18T08:13:28.655 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-cheroot. 2024-09-18T08:13:28.681 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../033-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-18T08:13:28.721 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-18T08:13:28.825 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-18T08:13:28.851 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../032-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-18T08:13:28.891 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-18T08:13:28.893 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-portend. 2024-09-18T08:13:28.920 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../038-python3-portend_3.0.0-1_all.deb ... 2024-09-18T08:13:28.960 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-18T08:13:29.041 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-18T08:13:29.067 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../034-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-18T08:13:29.108 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-18T08:13:29.194 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-cheroot. 2024-09-18T08:13:29.220 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../033-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-18T08:13:29.260 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-18T08:13:29.288 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-18T08:13:29.314 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../039-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-18T08:13:29.354 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-18T08:13:29.377 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-18T08:13:29.392 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../035-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-18T08:13:29.427 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-18T08:13:29.572 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-18T08:13:29.598 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../034-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-18T08:13:29.624 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-18T08:13:29.638 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-18T08:13:29.650 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../040-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-18T08:13:29.671 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-18T08:13:29.687 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../036-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-18T08:13:29.690 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-18T08:13:29.721 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-18T08:13:29.983 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-18T08:13:30.008 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-tempora. 2024-09-18T08:13:30.009 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../035-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-18T08:13:30.019 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-natsort. 2024-09-18T08:13:30.034 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../037-python3-tempora_4.1.2-1_all.deb ... 2024-09-18T08:13:30.034 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../041-python3-natsort_8.0.2-1_all.deb ... 2024-09-18T08:13:30.049 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-18T08:13:30.074 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-18T08:13:30.085 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-18T08:13:30.302 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-18T08:13:30.328 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../036-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-18T08:13:30.363 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-logutils. 2024-09-18T08:13:30.368 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-18T08:13:30.390 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../042-python3-logutils_0.3.3-8_all.deb ... 2024-09-18T08:13:30.394 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-portend. 2024-09-18T08:13:30.420 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../038-python3-portend_3.0.0-1_all.deb ... 2024-09-18T08:13:30.430 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-18T08:13:30.460 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-18T08:13:30.680 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-tempora. 2024-09-18T08:13:30.706 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../037-python3-tempora_4.1.2-1_all.deb ... 2024-09-18T08:13:30.716 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-18T08:13:30.738 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-18T08:13:30.742 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../043-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-18T08:13:30.746 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-18T08:13:30.753 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../039-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-18T08:13:30.788 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-18T08:13:30.791 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-18T08:13:31.032 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-portend. 2024-09-18T08:13:31.059 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../038-python3-portend_3.0.0-1_all.deb ... 2024-09-18T08:13:31.059 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-18T08:13:31.084 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../040-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-18T08:13:31.094 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-mako. 2024-09-18T08:13:31.098 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-18T08:13:31.120 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../044-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-18T08:13:31.124 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-18T08:13:31.160 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-18T08:13:31.359 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-18T08:13:31.375 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../039-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-18T08:13:31.409 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-18T08:13:31.455 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-18T08:13:31.482 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../045-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-18T08:13:31.511 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-natsort. 2024-09-18T08:13:31.522 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-18T08:13:31.538 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../041-python3-natsort_8.0.2-1_all.deb ... 2024-09-18T08:13:31.578 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-18T08:13:31.687 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-18T08:13:31.714 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../040-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-18T08:13:31.754 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-18T08:13:31.873 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-logutils. 2024-09-18T08:13:31.888 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../042-python3-logutils_0.3.3-8_all.deb ... 2024-09-18T08:13:31.923 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-18T08:13:31.958 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-18T08:13:31.984 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../046-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-18T08:13:32.024 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-18T08:13:32.107 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-natsort. 2024-09-18T08:13:32.134 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../041-python3-natsort_8.0.2-1_all.deb ... 2024-09-18T08:13:32.174 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-18T08:13:32.209 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-18T08:13:32.235 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../043-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-18T08:13:32.275 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-18T08:13:32.327 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-webob. 2024-09-18T08:13:32.353 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../047-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-18T08:13:32.394 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-18T08:13:32.451 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-logutils. 2024-09-18T08:13:32.467 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../042-python3-logutils_0.3.3-8_all.deb ... 2024-09-18T08:13:32.501 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-18T08:13:32.578 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-mako. 2024-09-18T08:13:32.605 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../044-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-18T08:13:32.645 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-18T08:13:32.738 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-waitress. 2024-09-18T08:13:32.765 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../048-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-18T08:13:32.788 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-18T08:13:32.807 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-18T08:13:32.814 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../043-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-18T08:13:32.854 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-18T08:13:32.956 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-18T08:13:32.983 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../045-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-18T08:13:33.023 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-18T08:13:33.124 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-tempita. 2024-09-18T08:13:33.151 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../049-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-18T08:13:33.199 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-18T08:13:33.284 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-18T08:13:33.299 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../046-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-18T08:13:33.334 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-18T08:13:33.340 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-mako. 2024-09-18T08:13:33.366 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../044-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-18T08:13:33.406 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-18T08:13:33.460 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-paste. 2024-09-18T08:13:33.487 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../050-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-18T08:13:33.519 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-18T08:13:33.612 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-webob. 2024-09-18T08:13:33.638 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../047-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-18T08:13:33.678 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-18T08:13:33.760 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-18T08:13:33.786 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../045-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-18T08:13:33.826 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-18T08:13:33.830 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-18T08:13:33.845 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../051-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-18T08:13:33.888 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-18T08:13:34.031 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-waitress. 2024-09-18T08:13:34.058 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../048-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-18T08:13:34.101 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-18T08:13:34.112 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-18T08:13:34.138 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../046-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-18T08:13:34.141 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-18T08:13:34.167 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../052-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-18T08:13:34.179 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-18T08:13:34.207 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-18T08:13:34.409 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-tempita. 2024-09-18T08:13:34.436 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../049-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-18T08:13:34.448 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-webob. 2024-09-18T08:13:34.475 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../047-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-18T08:13:34.476 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-18T08:13:34.511 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-webtest. 2024-09-18T08:13:34.514 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-18T08:13:34.537 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../053-python3-webtest_2.0.35-1_all.deb ... 2024-09-18T08:13:34.577 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-18T08:13:34.746 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-paste. 2024-09-18T08:13:34.761 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../050-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-18T08:13:34.795 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-18T08:13:34.847 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-pecan. 2024-09-18T08:13:34.850 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-waitress. 2024-09-18T08:13:34.873 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../054-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-18T08:13:34.877 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../048-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-18T08:13:34.905 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-18T08:13:34.921 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-18T08:13:35.107 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-18T08:13:35.134 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../051-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-18T08:13:35.174 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-18T08:13:35.243 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-certifi. 2024-09-18T08:13:35.258 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../055-python3-certifi_2020.6.20-1_all.deb ... 2024-09-18T08:13:35.293 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-18T08:13:35.451 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-18T08:13:35.478 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../052-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-18T08:13:35.509 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-18T08:13:35.621 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-idna. 2024-09-18T08:13:35.647 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../056-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-18T08:13:35.687 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-18T08:13:35.771 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-webtest. 2024-09-18T08:13:35.798 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../053-python3-webtest_2.0.35-1_all.deb ... 2024-09-18T08:13:35.838 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-18T08:13:35.998 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-urllib3. 2024-09-18T08:13:36.012 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-tempita. 2024-09-18T08:13:36.025 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../057-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-18T08:13:36.038 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../049-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-18T08:13:36.065 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-18T08:13:36.087 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-18T08:13:36.166 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-pecan. 2024-09-18T08:13:36.192 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../054-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-18T08:13:36.232 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-18T08:13:36.389 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-paste. 2024-09-18T08:13:36.393 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-requests. 2024-09-18T08:13:36.416 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../050-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-18T08:13:36.420 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../058-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-18T08:13:36.456 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-18T08:13:36.485 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-18T08:13:36.604 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-certifi. 2024-09-18T08:13:36.631 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../055-python3-certifi_2020.6.20-1_all.deb ... 2024-09-18T08:13:36.670 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-18T08:13:36.775 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-18T08:13:36.791 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../051-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-18T08:13:36.796 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-18T08:13:36.822 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../059-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-18T08:13:36.834 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-18T08:13:36.862 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-18T08:13:36.931 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-idna. 2024-09-18T08:13:36.947 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../056-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-18T08:13:36.981 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-18T08:13:37.136 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-18T08:13:37.148 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-18T08:13:37.163 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../052-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-18T08:13:37.175 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../060-ceph-mgr-modules-core_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:37.203 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-18T08:13:37.215 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking ceph-mgr-modules-core (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:37.293 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-urllib3. 2024-09-18T08:13:37.319 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../057-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-18T08:13:37.359 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-18T08:13:37.489 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-webtest. 2024-09-18T08:13:37.505 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../053-python3-webtest_2.0.35-1_all.deb ... 2024-09-18T08:13:37.564 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-18T08:13:37.612 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-18T08:13:37.638 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../061-libsqlite3-mod-ceph_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:37.678 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking libsqlite3-mod-ceph (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:37.687 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-requests. 2024-09-18T08:13:37.714 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../058-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-18T08:13:37.754 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-18T08:13:37.833 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-pecan. 2024-09-18T08:13:37.848 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../054-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-18T08:13:37.883 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-18T08:13:37.964 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-18T08:13:37.991 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../062-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-18T08:13:38.030 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-18T08:13:38.048 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-18T08:13:38.075 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../059-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-18T08:13:38.115 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-18T08:13:38.196 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-certifi. 2024-09-18T08:13:38.223 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../055-python3-certifi_2020.6.20-1_all.deb ... 2024-09-18T08:13:38.254 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-18T08:13:38.309 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-openssl. 2024-09-18T08:13:38.335 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../063-python3-openssl_21.0.0-1_all.deb ... 2024-09-18T08:13:38.375 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-18T08:13:38.489 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-18T08:13:38.516 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../060-ceph-mgr-modules-core_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:38.574 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-idna. 2024-09-18T08:13:38.600 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../056-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-18T08:13:38.634 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking ceph-mgr-modules-core (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:38.640 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-18T08:13:38.703 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package ceph-mgr. 2024-09-18T08:13:38.730 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../064-ceph-mgr_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:38.769 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking ceph-mgr (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:38.960 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-urllib3. 2024-09-18T08:13:38.986 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../057-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-18T08:13:39.026 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-18T08:13:39.065 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-18T08:13:39.092 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../061-libsqlite3-mod-ceph_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:39.131 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking libsqlite3-mod-ceph (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:39.164 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package ceph-mon. 2024-09-18T08:13:39.191 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../065-ceph-mon_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:39.231 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking ceph-mon (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:39.363 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-requests. 2024-09-18T08:13:39.389 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../058-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-18T08:13:39.429 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-18T08:13:39.442 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-18T08:13:39.469 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../062-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-18T08:13:39.509 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-18T08:13:39.723 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-18T08:13:39.750 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../059-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-18T08:13:39.768 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package ceph-osd. 2024-09-18T08:13:39.790 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-18T08:13:39.795 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../066-ceph-osd_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:39.803 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-openssl. 2024-09-18T08:13:39.826 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking ceph-osd (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:39.830 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../063-python3-openssl_21.0.0-1_all.deb ... 2024-09-18T08:13:39.871 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-18T08:13:40.076 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-18T08:13:40.103 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../060-ceph-mgr-modules-core_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:40.143 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking ceph-mgr-modules-core (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:40.165 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package ceph-mgr. 2024-09-18T08:13:40.191 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../064-ceph-mgr_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:40.223 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking ceph-mgr (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:40.514 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-18T08:13:40.541 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../061-libsqlite3-mod-ceph_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:40.580 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking libsqlite3-mod-ceph (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:40.618 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package ceph-mon. 2024-09-18T08:13:40.644 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../065-ceph-mon_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:40.684 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking ceph-mon (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:40.870 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package ceph. 2024-09-18T08:13:40.886 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../067-ceph_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:40.891 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-18T08:13:40.918 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../062-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-18T08:13:40.929 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking ceph (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:40.958 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-18T08:13:41.248 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package ceph-fuse. 2024-09-18T08:13:41.260 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-openssl. 2024-09-18T08:13:41.275 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../068-ceph-fuse_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:41.287 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../063-python3-openssl_21.0.0-1_all.deb ... 2024-09-18T08:13:41.288 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package ceph-osd. 2024-09-18T08:13:41.314 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking ceph-fuse (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:41.314 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../066-ceph-osd_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:41.327 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-18T08:13:41.354 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking ceph-osd (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:41.663 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package ceph-mgr. 2024-09-18T08:13:41.684 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package ceph-mds. 2024-09-18T08:13:41.691 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../064-ceph-mgr_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:41.711 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../069-ceph-mds_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:41.721 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking ceph-mgr (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:41.750 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking ceph-mds (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:42.108 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package ceph-mon. 2024-09-18T08:13:42.120 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package cephadm. 2024-09-18T08:13:42.134 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../065-ceph-mon_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:42.147 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../070-cephadm_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:42.174 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking ceph-mon (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:42.178 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking cephadm (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:42.374 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package ceph. 2024-09-18T08:13:42.389 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../067-ceph_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:42.423 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-18T08:13:42.424 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking ceph (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:42.449 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../071-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-18T08:13:42.489 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-18T08:13:42.728 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package ceph-fuse. 2024-09-18T08:13:42.753 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../068-ceph-fuse_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:42.769 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package ceph-osd. 2024-09-18T08:13:42.793 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking ceph-fuse (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:42.797 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../066-ceph-osd_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:42.800 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-18T08:13:42.816 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../072-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-18T08:13:42.836 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking ceph-osd (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:42.875 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-18T08:13:43.163 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package ceph-mds. 2024-09-18T08:13:43.190 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../069-ceph-mds_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:43.229 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking ceph-mds (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:43.591 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package cephadm. 2024-09-18T08:13:43.617 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../070-cephadm_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:43.649 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking cephadm (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:43.830 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-babel. 2024-09-18T08:13:43.845 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../073-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-18T08:13:43.879 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-18T08:13:43.935 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-18T08:13:43.961 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../071-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-18T08:13:43.997 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package ceph. 2024-09-18T08:13:44.001 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-18T08:13:44.013 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../067-ceph_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:44.047 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking ceph (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:44.216 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-jinja2. 2024-09-18T08:13:44.242 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../074-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-18T08:13:44.282 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-18T08:13:44.308 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package ceph-fuse. 2024-09-18T08:13:44.323 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../068-ceph-fuse_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:44.346 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-18T08:13:44.362 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../072-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-18T08:13:44.366 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking ceph-fuse (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:44.404 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-18T08:13:44.585 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-18T08:13:44.612 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../075-ceph-mgr-cephadm_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:44.643 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking ceph-mgr-cephadm (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:44.752 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package ceph-mds. 2024-09-18T08:13:44.779 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../069-ceph-mds_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:44.819 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking ceph-mds (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:44.955 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-18T08:13:44.971 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../076-python3-repoze.lru_0.7-2_all.deb ... 2024-09-18T08:13:45.005 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-18T08:13:45.255 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package cephadm. 2024-09-18T08:13:45.282 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../070-cephadm_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:45.283 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-routes. 2024-09-18T08:13:45.310 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../077-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-18T08:13:45.321 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking cephadm (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:45.358 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-18T08:13:45.376 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-babel. 2024-09-18T08:13:45.392 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../073-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-18T08:13:45.426 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-18T08:13:45.616 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-18T08:13:45.642 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../071-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-18T08:13:45.644 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-18T08:13:45.671 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../078-ceph-mgr-dashboard_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:45.682 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-18T08:13:45.711 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking ceph-mgr-dashboard (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:45.712 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-jinja2. 2024-09-18T08:13:45.740 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../074-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-18T08:13:45.770 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-18T08:13:46.026 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-18T08:13:46.053 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../072-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-18T08:13:46.073 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-18T08:13:46.089 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../075-ceph-mgr-cephadm_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:46.093 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-18T08:13:46.123 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking ceph-mgr-cephadm (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:46.435 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-18T08:13:46.462 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../076-python3-repoze.lru_0.7-2_all.deb ... 2024-09-18T08:13:46.493 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-18T08:13:46.771 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-routes. 2024-09-18T08:13:46.798 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../077-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-18T08:13:46.838 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-18T08:13:47.114 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-babel. 2024-09-18T08:13:47.141 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-18T08:13:47.141 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../073-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-18T08:13:47.168 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../078-ceph-mgr-dashboard_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:47.181 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-18T08:13:47.199 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking ceph-mgr-dashboard (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:47.484 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-jinja2. 2024-09-18T08:13:47.510 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../074-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-18T08:13:47.550 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-18T08:13:47.895 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-18T08:13:47.921 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../075-ceph-mgr-cephadm_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:47.961 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking ceph-mgr-cephadm (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:48.283 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-18T08:13:48.310 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../076-python3-repoze.lru_0.7-2_all.deb ... 2024-09-18T08:13:48.349 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-18T08:13:48.465 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-18T08:13:48.482 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../079-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-18T08:13:48.523 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-18T08:13:48.652 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-routes. 2024-09-18T08:13:48.679 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../077-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-18T08:13:48.718 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-18T08:13:49.002 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-joblib. 2024-09-18T08:13:49.029 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../080-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-18T08:13:49.068 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-18T08:13:49.080 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-18T08:13:49.107 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../078-ceph-mgr-dashboard_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:49.146 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking ceph-mgr-dashboard (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:49.413 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-18T08:13:49.441 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../081-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-18T08:13:49.471 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-18T08:13:49.749 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-sklearn. 2024-09-18T08:13:49.777 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../082-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-18T08:13:49.862 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-18T08:13:49.880 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../079-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-18T08:13:49.910 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-18T08:13:49.912 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-18T08:13:50.383 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-joblib. 2024-09-18T08:13:50.410 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../080-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-18T08:13:50.449 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-18T08:13:50.611 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-18T08:13:50.639 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../083-ceph-mgr-diskprediction-local_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:50.677 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking ceph-mgr-diskprediction-local (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:50.769 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-18T08:13:50.797 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../081-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-18T08:13:50.835 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-18T08:13:51.130 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-sklearn. 2024-09-18T08:13:51.158 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../082-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-18T08:13:51.282 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-18T08:13:51.671 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-cachetools. 2024-09-18T08:13:51.699 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../084-python3-cachetools_5.0.0-1_all.deb ... 2024-09-18T08:13:51.738 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-18T08:13:51.985 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-18T08:13:52.001 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-18T08:13:52.013 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../083-ceph-mgr-diskprediction-local_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:52.018 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../079-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-18T08:13:52.041 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-18T08:13:52.051 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking ceph-mgr-diskprediction-local (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:52.058 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-18T08:13:52.068 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../085-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-18T08:13:52.116 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-18T08:13:52.428 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-18T08:13:52.455 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../086-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-18T08:13:52.494 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-18T08:13:52.546 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-joblib. 2024-09-18T08:13:52.573 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../080-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-18T08:13:52.612 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-18T08:13:52.805 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-rsa. 2024-09-18T08:13:52.833 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../087-python3-rsa_4.8-1_all.deb ... 2024-09-18T08:13:52.871 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-18T08:13:52.997 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-cachetools. 2024-09-18T08:13:53.016 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-18T08:13:53.024 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../084-python3-cachetools_5.0.0-1_all.deb ... 2024-09-18T08:13:53.043 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../081-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-18T08:13:53.063 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-18T08:13:53.082 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-18T08:13:53.134 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-google-auth. 2024-09-18T08:13:53.150 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../088-python3-google-auth_1.5.1-3_all.deb ... 2024-09-18T08:13:53.183 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-18T08:13:53.343 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-sklearn. 2024-09-18T08:13:53.370 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../082-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-18T08:13:53.466 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-18T08:13:53.494 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../085-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-18T08:13:53.532 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-18T08:13:53.553 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-18T08:13:53.581 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../089-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-18T08:13:53.594 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-18T08:13:53.620 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-18T08:13:53.948 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-websocket. 2024-09-18T08:13:53.975 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../090-python3-websocket_1.2.3-1_all.deb ... 2024-09-18T08:13:54.014 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-18T08:13:54.061 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-18T08:13:54.089 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../086-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-18T08:13:54.127 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-18T08:13:54.334 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-18T08:13:54.358 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../091-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-18T08:13:54.401 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-18T08:13:54.430 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-rsa. 2024-09-18T08:13:54.458 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../087-python3-rsa_4.8-1_all.deb ... 2024-09-18T08:13:54.496 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-18T08:13:54.587 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-18T08:13:54.614 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../083-ceph-mgr-diskprediction-local_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:54.653 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking ceph-mgr-diskprediction-local (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:54.817 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-google-auth. 2024-09-18T08:13:54.845 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../088-python3-google-auth_1.5.1-3_all.deb ... 2024-09-18T08:13:54.883 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-18T08:13:55.106 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-18T08:13:55.122 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../092-ceph-mgr-k8sevents_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:55.164 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking ceph-mgr-k8sevents (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:55.204 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-18T08:13:55.232 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../089-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-18T08:13:55.270 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-18T08:13:55.509 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-18T08:13:55.537 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../093-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-18T08:13:55.539 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-websocket. 2024-09-18T08:13:55.555 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../090-python3-websocket_1.2.3-1_all.deb ... 2024-09-18T08:13:55.575 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-18T08:13:55.589 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-18T08:13:55.614 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-cachetools. 2024-09-18T08:13:55.642 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../084-python3-cachetools_5.0.0-1_all.deb ... 2024-09-18T08:13:55.681 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-18T08:13:55.893 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-18T08:13:55.912 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-18T08:13:55.921 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../091-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-18T08:13:55.940 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../094-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-18T08:13:55.959 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-18T08:13:55.978 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-18T08:13:55.984 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-18T08:13:56.011 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../085-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-18T08:13:56.050 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-18T08:13:56.206 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package jq. 2024-09-18T08:13:56.222 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../095-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-18T08:13:56.256 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-18T08:13:56.387 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-18T08:13:56.415 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../086-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-18T08:13:56.453 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-18T08:13:56.492 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package socat. 2024-09-18T08:13:56.508 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../096-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-18T08:13:56.550 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-18T08:13:56.615 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-18T08:13:56.632 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../092-ceph-mgr-k8sevents_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:56.673 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking ceph-mgr-k8sevents (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:56.764 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-rsa. 2024-09-18T08:13:56.792 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../087-python3-rsa_4.8-1_all.deb ... 2024-09-18T08:13:56.822 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-18T08:13:56.845 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package xmlstarlet. 2024-09-18T08:13:56.861 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../097-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-18T08:13:56.895 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-18T08:13:56.934 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-18T08:13:56.962 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../093-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-18T08:13:56.992 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-18T08:13:57.126 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-google-auth. 2024-09-18T08:13:57.154 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../088-python3-google-auth_1.5.1-3_all.deb ... 2024-09-18T08:13:57.193 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-18T08:13:57.337 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-18T08:13:57.365 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../094-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-18T08:13:57.403 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-18T08:13:57.432 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package ceph-test. 2024-09-18T08:13:57.460 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../098-ceph-test_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:57.496 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-18T08:13:57.498 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking ceph-test (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:57.523 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../089-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-18T08:13:57.562 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-18T08:13:57.665 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package jq. 2024-09-18T08:13:57.693 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../095-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-18T08:13:57.731 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-18T08:13:57.873 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-websocket. 2024-09-18T08:13:57.901 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../090-python3-websocket_1.2.3-1_all.deb ... 2024-09-18T08:13:57.939 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-18T08:13:57.984 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package socat. 2024-09-18T08:13:58.012 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../096-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-18T08:13:58.050 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-18T08:13:58.260 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-18T08:13:58.288 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../091-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-18T08:13:58.326 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-18T08:13:58.345 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package xmlstarlet. 2024-09-18T08:13:58.361 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../097-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-18T08:13:58.403 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-18T08:13:58.758 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package ceph-test. 2024-09-18T08:13:58.774 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../098-ceph-test_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:13:58.816 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking ceph-test (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:59.006 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-18T08:13:59.022 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../092-ceph-mgr-k8sevents_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:59.064 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking ceph-mgr-k8sevents (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:59.392 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-18T08:13:59.420 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../093-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-18T08:13:59.458 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-18T08:13:59.778 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package ceph-volume. 2024-09-18T08:13:59.787 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-18T08:13:59.806 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../099-ceph-volume_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:13:59.815 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../094-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-18T08:13:59.844 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking ceph-volume (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:13:59.853 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-18T08:14:00.089 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package jq. 2024-09-18T08:14:00.117 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../095-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-18T08:14:00.155 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-18T08:14:00.157 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-18T08:14:00.184 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../100-libcephfs-dev_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:14:00.223 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking libcephfs-dev (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:00.417 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package socat. 2024-09-18T08:14:00.432 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../096-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-18T08:14:00.475 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-18T08:14:00.543 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package lua-socket:amd64. 2024-09-18T08:14:00.570 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../101-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-09-18T08:14:00.609 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-18T08:14:00.811 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package xmlstarlet. 2024-09-18T08:14:00.827 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../097-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-18T08:14:00.861 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-18T08:14:00.930 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package lua-sec:amd64. 2024-09-18T08:14:00.954 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package ceph-volume. 2024-09-18T08:14:00.958 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../102-lua-sec_1.0.2-1_amd64.deb ... 2024-09-18T08:14:00.981 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../099-ceph-volume_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:14:00.997 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-09-18T08:14:01.020 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking ceph-volume (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:01.223 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package ceph-test. 2024-09-18T08:14:01.239 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../098-ceph-test_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:14:01.281 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking ceph-test (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:01.316 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-18T08:14:01.344 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../100-libcephfs-dev_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:14:01.353 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package nvme-cli. 2024-09-18T08:14:01.380 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../103-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-18T08:14:01.382 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking libcephfs-dev (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:01.419 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-18T08:14:01.693 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package lua-socket:amd64. 2024-09-18T08:14:01.721 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../101-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-09-18T08:14:01.760 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-18T08:14:01.841 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package pkg-config. 2024-09-18T08:14:01.869 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../104-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-09-18T08:14:01.907 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-09-18T08:14:02.073 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package lua-sec:amd64. 2024-09-18T08:14:02.101 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../102-lua-sec_1.0.2-1_amd64.deb ... 2024-09-18T08:14:02.140 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-09-18T08:14:02.168 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-18T08:14:02.184 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../105-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-18T08:14:02.226 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-18T08:14:02.493 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package nvme-cli. 2024-09-18T08:14:02.521 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../103-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-18T08:14:02.560 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-18T08:14:02.663 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-18T08:14:02.691 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../106-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-18T08:14:02.729 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-18T08:14:02.982 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package pkg-config. 2024-09-18T08:14:02.990 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-pastescript. 2024-09-18T08:14:03.006 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../107-python3-pastescript_2.0.2-4_all.deb ... 2024-09-18T08:14:03.009 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../104-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-09-18T08:14:03.040 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-18T08:14:03.048 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-09-18T08:14:03.309 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-18T08:14:03.325 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../105-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-18T08:14:03.367 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-18T08:14:03.394 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-pluggy. 2024-09-18T08:14:03.421 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../108-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-18T08:14:03.427 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package ceph-volume. 2024-09-18T08:14:03.456 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../099-ceph-volume_19.3.0-4983-ge7fb7b56-1jammy_all.deb ... 2024-09-18T08:14:03.460 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-18T08:14:03.494 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking ceph-volume (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:03.771 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-18T08:14:03.771 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-psutil. 2024-09-18T08:14:03.789 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-18T08:14:03.800 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../109-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-18T08:14:03.800 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../106-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-18T08:14:03.817 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../100-libcephfs-dev_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:14:03.837 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-18T08:14:03.837 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-18T08:14:03.855 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking libcephfs-dev (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:04.157 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-pastescript. 2024-09-18T08:14:04.174 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-py. 2024-09-18T08:14:04.183 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package lua-socket:amd64. 2024-09-18T08:14:04.184 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../107-python3-pastescript_2.0.2-4_all.deb ... 2024-09-18T08:14:04.201 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../110-python3-py_1.10.0-1_all.deb ... 2024-09-18T08:14:04.212 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../101-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-09-18T08:14:04.223 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-18T08:14:04.240 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-18T08:14:04.250 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-18T08:14:04.526 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-pygments. 2024-09-18T08:14:04.554 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../111-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-18T08:14:04.593 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-18T08:14:04.604 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package lua-sec:amd64. 2024-09-18T08:14:04.632 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../102-lua-sec_1.0.2-1_amd64.deb ... 2024-09-18T08:14:04.810 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-pluggy. 2024-09-18T08:14:04.831 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-09-18T08:14:04.838 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../108-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-18T08:14:04.876 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-18T08:14:05.047 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-18T08:14:05.075 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../112-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-18T08:14:05.113 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-18T08:14:05.154 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-psutil. 2024-09-18T08:14:05.183 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../109-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-18T08:14:05.212 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-18T08:14:05.233 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package nvme-cli. 2024-09-18T08:14:05.261 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../103-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-18T08:14:05.299 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-18T08:14:05.416 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-toml. 2024-09-18T08:14:05.444 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../113-python3-toml_0.10.2-1_all.deb ... 2024-09-18T08:14:05.482 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-18T08:14:05.549 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-py. 2024-09-18T08:14:05.577 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../110-python3-py_1.10.0-1_all.deb ... 2024-09-18T08:14:05.615 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-18T08:14:05.713 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package pkg-config. 2024-09-18T08:14:05.741 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../104-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-09-18T08:14:05.743 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-pytest. 2024-09-18T08:14:05.760 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../114-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-18T08:14:05.779 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-09-18T08:14:05.793 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-18T08:14:05.960 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-pygments. 2024-09-18T08:14:05.989 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../111-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-18T08:14:06.026 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-18T08:14:06.031 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-18T08:14:06.048 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../105-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-18T08:14:06.090 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-18T08:14:06.147 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package python3-simplejson. 2024-09-18T08:14:06.175 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../115-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-18T08:14:06.213 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-18T08:14:06.439 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-18T08:14:06.455 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../112-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-18T08:14:06.488 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-18T08:14:06.490 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-18T08:14:06.507 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../116-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-18T08:14:06.518 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-18T08:14:06.546 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../106-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-18T08:14:06.549 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-18T08:14:06.585 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-18T08:14:06.775 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-toml. 2024-09-18T08:14:06.803 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../113-python3-toml_0.10.2-1_all.deb ... 2024-09-18T08:14:06.841 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-18T08:14:06.887 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-pastescript. 2024-09-18T08:14:06.916 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../107-python3-pastescript_2.0.2-4_all.deb ... 2024-09-18T08:14:06.954 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-18T08:14:07.144 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-pytest. 2024-09-18T08:14:07.173 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../114-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-18T08:14:07.211 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-18T08:14:07.282 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-pluggy. 2024-09-18T08:14:07.303 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package radosgw. 2024-09-18T08:14:07.310 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../108-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-18T08:14:07.331 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../117-radosgw_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:14:07.348 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-18T08:14:07.369 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking radosgw (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:07.522 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package python3-simplejson. 2024-09-18T08:14:07.550 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../115-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-18T08:14:07.588 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-18T08:14:07.618 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-psutil. 2024-09-18T08:14:07.646 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../109-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-18T08:14:07.684 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-18T08:14:07.841 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-18T08:14:07.870 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../116-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-18T08:14:07.908 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-18T08:14:08.046 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-py. 2024-09-18T08:14:08.073 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../110-python3-py_1.10.0-1_all.deb ... 2024-09-18T08:14:08.120 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-18T08:14:08.264 INFO:teuthology.orchestra.run.smithi070.stdout:Selecting previously unselected package rbd-fuse. 2024-09-18T08:14:08.292 INFO:teuthology.orchestra.run.smithi070.stdout:Preparing to unpack .../118-rbd-fuse_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:14:08.330 INFO:teuthology.orchestra.run.smithi070.stdout:Unpacking rbd-fuse (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:08.457 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-pygments. 2024-09-18T08:14:08.485 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../111-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-18T08:14:08.523 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-18T08:14:08.604 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package radosgw. 2024-09-18T08:14:08.618 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-18T08:14:08.632 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../117-radosgw_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:14:08.678 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking radosgw (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:08.869 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-18T08:14:08.994 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-18T08:14:08.994 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-18T08:14:09.022 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../112-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-18T08:14:09.060 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-18T08:14:09.251 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-09-18T08:14:09.380 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-toml. 2024-09-18T08:14:09.407 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../113-python3-toml_0.10.2-1_all.deb ... 2024-09-18T08:14:09.446 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-18T08:14:09.574 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-18T08:14:09.598 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package rbd-fuse. 2024-09-18T08:14:09.626 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../118-rbd-fuse_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:14:09.749 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-pytest. 2024-09-18T08:14:09.777 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../114-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-18T08:14:09.815 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-18T08:14:09.848 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking rbd-fuse (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:09.979 INFO:teuthology.orchestra.run.smithi070.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-18T08:14:10.046 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up cephadm (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:10.144 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-18T08:14:10.194 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package python3-simplejson. 2024-09-18T08:14:10.222 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../115-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-18T08:14:10.260 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-18T08:14:10.386 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-18T08:14:10.504 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-18T08:14:10.520 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-18T08:14:10.537 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../116-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-18T08:14:10.579 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-18T08:14:10.587 INFO:teuthology.orchestra.run.smithi070.stdout:Adding system user cephadm....done 2024-09-18T08:14:10.702 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-18T08:14:10.767 INFO:teuthology.orchestra.run.smithi172.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-09-18T08:14:10.953 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-18T08:14:11.114 INFO:teuthology.orchestra.run.smithi172.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-18T08:14:11.204 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-18T08:14:11.308 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package radosgw. 2024-09-18T08:14:11.330 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-18T08:14:11.336 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../117-radosgw_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:14:11.378 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking radosgw (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:11.513 INFO:teuthology.orchestra.run.smithi172.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-18T08:14:11.581 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up cephadm (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:11.581 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-18T08:14:11.816 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-18T08:14:11.934 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-18T08:14:12.089 INFO:teuthology.orchestra.run.smithi172.stdout:Adding system user cephadm....done 2024-09-18T08:14:12.210 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-18T08:14:12.236 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-18T08:14:12.327 INFO:teuthology.orchestra.run.smithi086.stdout:Selecting previously unselected package rbd-fuse. 2024-09-18T08:14:12.355 INFO:teuthology.orchestra.run.smithi086.stdout:Preparing to unpack .../118-rbd-fuse_19.3.0-4983-ge7fb7b56-1jammy_amd64.deb ... 2024-09-18T08:14:12.410 INFO:teuthology.orchestra.run.smithi086.stdout:Unpacking rbd-fuse (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:12.497 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-18T08:14:12.570 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-18T08:14:12.715 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-18T08:14:12.781 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-18T08:14:12.830 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-18T08:14:12.907 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-18T08:14:12.965 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-18T08:14:13.099 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-18T08:14:13.114 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-09-18T08:14:13.183 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-18T08:14:13.332 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-18T08:14:13.363 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-09-18T08:14:13.434 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-18T08:14:13.544 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-18T08:14:13.567 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-18T08:14:13.658 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-18T08:14:13.810 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-18T08:14:13.837 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-18T08:14:14.060 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-ceph-argparse (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:14.092 INFO:teuthology.orchestra.run.smithi086.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-18T08:14:14.176 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up cephadm (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:14.206 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-18T08:14:14.311 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-18T08:14:14.465 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-18T08:14:14.529 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up libnbd0 (1.10.5-1) ... 2024-09-18T08:14:14.608 INFO:teuthology.orchestra.run.smithi086.stdout:Adding system user cephadm....done 2024-09-18T08:14:14.655 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-18T08:14:14.733 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-09-18T08:14:14.765 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-18T08:14:14.772 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-09-18T08:14:14.873 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-18T08:14:14.968 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-18T08:14:15.052 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-18T08:14:15.124 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-09-18T08:14:15.194 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-18T08:14:15.392 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-18T08:14:15.436 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-18T08:14:15.518 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-18T08:14:15.527 INFO:teuthology.orchestra.run.smithi070.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-09-18T08:14:15.547 INFO:teuthology.orchestra.run.smithi070.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-09-18T08:14:15.611 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-18T08:14:15.679 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-ceph-argparse (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:15.737 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-18T08:14:15.744 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-18T08:14:15.939 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-18T08:14:15.979 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-18T08:14:16.073 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up libnbd0 (1.10.5-1) ... 2024-09-18T08:14:16.096 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-18T08:14:16.097 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-18T08:14:16.199 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-18T08:14:16.206 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-18T08:14:16.325 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-09-18T08:14:16.398 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-18T08:14:16.451 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-18T08:14:16.457 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-18T08:14:16.702 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-09-18T08:14:16.708 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-18T08:14:16.758 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-18T08:14:17.009 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up zip (3.0-12build2) ... 2024-09-18T08:14:17.017 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-18T08:14:17.062 INFO:teuthology.orchestra.run.smithi172.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-09-18T08:14:17.110 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-18T08:14:17.117 INFO:teuthology.orchestra.run.smithi172.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-09-18T08:14:17.180 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-18T08:14:17.277 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-09-18T08:14:17.307 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-18T08:14:17.504 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-18T08:14:17.683 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-18T08:14:17.738 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-18T08:14:17.770 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-18T08:14:17.800 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-18T08:14:17.997 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-18T08:14:18.053 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-18T08:14:18.053 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-18T08:14:18.155 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-18T08:14:18.256 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-ceph-argparse (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:18.286 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-18T08:14:18.306 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-18T08:14:18.575 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-18T08:14:18.587 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up zip (3.0-12build2) ... 2024-09-18T08:14:18.599 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-18T08:14:18.700 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up libnbd0 (1.10.5-1) ... 2024-09-18T08:14:18.704 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-18T08:14:18.826 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-09-18T08:14:18.944 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-09-18T08:14:18.992 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-18T08:14:19.045 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-18T08:14:19.218 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-18T08:14:19.279 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-09-18T08:14:19.390 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-18T08:14:19.586 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-18T08:14:19.658 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-18T08:14:19.658 INFO:teuthology.orchestra.run.smithi086.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-09-18T08:14:19.686 INFO:teuthology.orchestra.run.smithi086.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-09-18T08:14:19.740 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-18T08:14:19.783 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-18T08:14:19.871 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-18T08:14:19.891 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-18T08:14:19.893 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-18T08:14:20.214 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-18T08:14:20.251 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-18T08:14:20.377 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-18T08:14:20.414 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-18T08:14:20.456 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-18T08:14:20.565 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-ceph-common (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:20.636 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-18T08:14:20.853 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-18T08:14:20.867 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-18T08:14:20.878 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-18T08:14:21.129 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-18T08:14:21.163 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up zip (3.0-12build2) ... 2024-09-18T08:14:21.193 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-18T08:14:21.289 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-18T08:14:21.514 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-18T08:14:21.801 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-18T08:14:22.033 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-18T08:14:22.142 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-18T08:14:22.292 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-18T08:14:22.368 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-18T08:14:22.373 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-09-18T08:14:22.418 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-18T08:14:22.494 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-ceph-common (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:22.535 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-18T08:14:22.625 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-18T08:14:22.734 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-18T08:14:22.803 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-18T08:14:22.828 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-18T08:14:22.985 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-18T08:14:23.114 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-18T08:14:23.135 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-18T08:14:23.185 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-18T08:14:23.240 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-18T08:14:23.414 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-18T08:14:23.539 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-18T08:14:23.789 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-18T08:14:23.798 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-18T08:14:24.032 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-18T08:14:24.091 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-18T08:14:24.141 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-18T08:14:24.294 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-09-18T08:14:24.418 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-18T08:14:24.443 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-18T08:14:24.554 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-18T08:14:24.669 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-18T08:14:24.688 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-18T08:14:24.693 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-18T08:14:24.794 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-ceph-common (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:24.928 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-18T08:14:24.964 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-18T08:14:25.087 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-18T08:14:25.115 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-18T08:14:25.187 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-18T08:14:25.225 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-18T08:14:25.422 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-18T08:14:25.438 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-18T08:14:25.509 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-18T08:14:25.697 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-18T08:14:25.761 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-18T08:14:25.824 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-18T08:14:26.012 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-18T08:14:26.092 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-18T08:14:26.137 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-18T08:14:26.218 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-18T08:14:26.447 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-18T08:14:26.519 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-18T08:14:26.527 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-09-18T08:14:26.715 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-18T08:14:26.762 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-18T08:14:26.819 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-18T08:14:26.871 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-18T08:14:26.991 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-18T08:14:27.087 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-18T08:14:27.131 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-18T08:14:27.213 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-09-18T08:14:27.234 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-18T08:14:27.257 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-18T08:14:27.339 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-18T08:14:27.391 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-18T08:14:27.427 INFO:teuthology.orchestra.run.smithi070.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-18T08:14:27.476 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-18T08:14:27.658 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-18T08:14:27.743 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-18T08:14:27.744 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-18T08:14:27.783 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-18T08:14:27.870 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-18T08:14:28.002 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-18T08:14:28.163 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-18T08:14:28.244 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-18T08:14:28.289 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-18T08:14:28.345 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-18T08:14:28.368 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-18T08:14:28.582 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-18T08:14:28.622 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-18T08:14:28.802 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up lua-any (27ubuntu1) ... 2024-09-18T08:14:28.866 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-18T08:14:28.872 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-18T08:14:28.928 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-18T08:14:29.126 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-18T08:14:29.132 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-18T08:14:29.187 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-18T08:14:29.243 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-09-18T08:14:29.314 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-18T08:14:29.369 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-18T08:14:29.383 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-18T08:14:29.460 INFO:teuthology.orchestra.run.smithi172.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-18T08:14:29.631 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-18T08:14:29.634 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-18T08:14:29.713 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-18T08:14:29.839 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-18T08:14:29.902 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-18T08:14:29.941 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-18T08:14:30.011 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-18T08:14:30.192 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-18T08:14:30.224 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-18T08:14:30.270 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-18T08:14:30.293 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-18T08:14:30.371 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-18T08:14:30.483 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up lua-any (27ubuntu1) ... 2024-09-18T08:14:30.577 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-18T08:14:30.584 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-18T08:14:30.656 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-18T08:14:30.843 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-18T08:14:30.938 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-18T08:14:30.956 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-18T08:14:30.969 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-18T08:14:31.198 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-18T08:14:31.216 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-09-18T08:14:31.279 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-18T08:14:31.367 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-09-18T08:14:31.493 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-18T08:14:31.575 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-18T08:14:31.582 INFO:teuthology.orchestra.run.smithi086.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-18T08:14:31.588 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-18T08:14:31.836 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-18T08:14:31.859 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-18T08:14:31.873 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-18T08:14:31.937 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-18T08:14:31.999 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-18T08:14:32.203 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-18T08:14:32.275 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-18T08:14:32.305 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-18T08:14:32.329 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up librados2 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:32.455 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up libsqlite3-mod-ceph (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:32.564 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up lua-any (27ubuntu1) ... 2024-09-18T08:14:32.581 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-09-18T08:14:32.594 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-18T08:14:32.690 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-18T08:14:32.854 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-18T08:14:32.859 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up libcephfs2 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:32.958 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-18T08:14:32.985 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up libradosstriper1 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:33.084 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-18T08:14:33.111 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-18T08:14:33.256 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-18T08:14:33.388 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up librbd1 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:33.419 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-18T08:14:33.489 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up ceph-mgr-modules-core (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:33.549 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-18T08:14:33.615 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up ceph-fuse (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:33.711 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-18T08:14:33.836 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-18T08:14:33.836 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-18T08:14:33.893 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-18T08:14:33.962 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-18T08:14:34.028 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up librados2 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:34.063 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-18T08:14:34.153 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up libsqlite3-mod-ceph (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:34.280 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-09-18T08:14:34.314 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-18T08:14:34.325 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up libcephfs-dev (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:34.450 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-rados (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:34.576 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up librgw2 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:34.616 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up libcephfs2 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:34.661 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-18T08:14:34.702 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-18T08:14:34.725 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up libradosstriper1 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:34.835 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-18T08:14:34.904 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-18T08:14:35.111 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up librbd1 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:35.237 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up ceph-mgr-modules-core (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:35.289 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-18T08:14:35.363 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up ceph-fuse (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:35.565 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-18T08:14:35.579 INFO:teuthology.orchestra.run.smithi172.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-18T08:14:35.579 INFO:teuthology.orchestra.run.smithi172.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-18T08:14:35.918 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-18T08:14:35.930 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-rbd (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:36.042 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up libcephfs-dev (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:36.052 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up librados2 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:36.056 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up rbd-fuse (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:36.143 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-rados (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:36.161 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up libsqlite3-mod-ceph (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:36.191 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-rgw (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:36.260 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up librgw2 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:36.271 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-09-18T08:14:36.316 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up python3-cephfs (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:36.386 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-18T08:14:36.442 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up ceph-common (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:36.591 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up libcephfs2 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:36.717 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up libradosstriper1 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:36.843 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-18T08:14:36.968 INFO:teuthology.orchestra.run.smithi070.stdout:Adding group ceph....done 2024-09-18T08:14:37.128 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up librbd1 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:37.229 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up ceph-mgr-modules-core (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:37.330 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up ceph-fuse (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:37.353 INFO:teuthology.orchestra.run.smithi070.stdout:Adding system user ceph....done 2024-09-18T08:14:37.522 INFO:teuthology.orchestra.run.smithi070.stdout:Setting system user ceph properties....done 2024-09-18T08:14:37.526 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-18T08:14:37.526 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-18T08:14:37.540 INFO:teuthology.orchestra.run.smithi070.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-18T08:14:37.614 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-rbd (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:37.677 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-18T08:14:37.749 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up rbd-fuse (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:37.866 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-rgw (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:37.967 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up python3-cephfs (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:37.993 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-18T08:14:38.032 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up libcephfs-dev (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:38.093 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up ceph-common (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:38.141 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-rados (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:38.460 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up ceph-test (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:38.586 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up radosgw (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:38.628 INFO:teuthology.orchestra.run.smithi172.stdout:Adding group ceph....done 2024-09-18T08:14:38.634 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up librgw2 (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:38.760 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-18T08:14:38.963 INFO:teuthology.orchestra.run.smithi172.stdout:Adding system user ceph....done 2024-09-18T08:14:39.034 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-18T08:14:39.034 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-18T08:14:39.131 INFO:teuthology.orchestra.run.smithi172.stdout:Setting system user ceph properties....done 2024-09-18T08:14:39.143 INFO:teuthology.orchestra.run.smithi172.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-18T08:14:39.277 INFO:teuthology.orchestra.run.smithi172.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-18T08:14:39.496 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up ceph-base (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:39.613 INFO:teuthology.orchestra.run.smithi172.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-18T08:14:39.824 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-18T08:14:39.955 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-rbd (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:40.061 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up ceph-test (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:40.081 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up rbd-fuse (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:40.186 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up radosgw (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:40.191 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-rgw (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:40.272 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up ceph-mds (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:40.300 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up python3-cephfs (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:40.401 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up ceph-common (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:40.484 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-18T08:14:40.485 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-18T08:14:40.639 INFO:teuthology.orchestra.run.smithi172.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-18T08:14:40.639 INFO:teuthology.orchestra.run.smithi172.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-18T08:14:40.944 INFO:teuthology.orchestra.run.smithi086.stdout:Adding group ceph....done 2024-09-18T08:14:40.966 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up ceph-mgr (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:41.080 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up ceph-base (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:41.194 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-18T08:14:41.194 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-18T08:14:41.329 INFO:teuthology.orchestra.run.smithi086.stdout:Adding system user ceph....done 2024-09-18T08:14:41.446 INFO:teuthology.orchestra.run.smithi172.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-18T08:14:41.497 INFO:teuthology.orchestra.run.smithi086.stdout:Setting system user ceph properties....done 2024-09-18T08:14:41.509 INFO:teuthology.orchestra.run.smithi086.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-18T08:14:41.644 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-18T08:14:41.675 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up ceph-osd (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:41.915 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up ceph-mds (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:41.950 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-18T08:14:41.951 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-18T08:14:41.973 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-18T08:14:42.151 INFO:teuthology.orchestra.run.smithi172.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-18T08:14:42.151 INFO:teuthology.orchestra.run.smithi172.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-18T08:14:42.427 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up ceph-test (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:42.460 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up ceph-mgr-k8sevents (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:42.586 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up ceph-mgr-diskprediction-local (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:42.608 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up ceph-mgr (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:42.611 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up radosgw (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:42.737 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up ceph-mon (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:42.825 INFO:teuthology.orchestra.run.smithi172.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-18T08:14:42.825 INFO:teuthology.orchestra.run.smithi172.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-18T08:14:42.947 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-18T08:14:42.948 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-18T08:14:43.098 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-18T08:14:43.098 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-18T08:14:43.351 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up ceph-osd (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:43.446 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up ceph-mgr-cephadm (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:43.564 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up ceph (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:43.588 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up ceph-base (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:43.628 INFO:teuthology.orchestra.run.smithi172.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-18T08:14:43.628 INFO:teuthology.orchestra.run.smithi172.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-18T08:14:43.665 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up ceph-mgr-dashboard (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:43.800 INFO:teuthology.orchestra.run.smithi070.stdout:Setting up ceph-volume (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:43.942 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-18T08:14:44.111 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up ceph-mgr-k8sevents (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:44.153 INFO:teuthology.orchestra.run.smithi070.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-09-18T08:14:44.237 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up ceph-mgr-diskprediction-local (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:44.254 INFO:teuthology.orchestra.run.smithi070.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-18T08:14:44.388 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up ceph-mon (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:44.406 INFO:teuthology.orchestra.run.smithi070.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-18T08:14:44.432 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up ceph-mds (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:44.601 INFO:teuthology.orchestra.run.smithi172.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-18T08:14:44.601 INFO:teuthology.orchestra.run.smithi172.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-18T08:14:44.635 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-18T08:14:44.635 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-18T08:14:45.072 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up ceph-mgr-cephadm (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:45.092 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up ceph-mgr (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:45.232 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up ceph (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:45.305 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-18T08:14:45.305 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-18T08:14:45.333 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up ceph-mgr-dashboard (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:45.459 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up ceph-volume (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:45.540 INFO:teuthology.orchestra.run.smithi070.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-09-18T08:14:45.793 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up ceph-osd (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:45.836 INFO:teuthology.orchestra.run.smithi172.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-09-18T08:14:45.954 INFO:teuthology.orchestra.run.smithi172.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-18T08:14:46.223 INFO:teuthology.orchestra.run.smithi070.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-18T08:14:46.230 DEBUG:teuthology.parallel:result is None 2024-09-18T08:14:46.375 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-18T08:14:46.375 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-18T08:14:46.441 INFO:teuthology.orchestra.run.smithi172.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-18T08:14:46.854 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up ceph-mgr-k8sevents (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:46.955 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up ceph-mgr-diskprediction-local (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:47.097 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up ceph-mon (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:47.308 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-18T08:14:47.309 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-18T08:14:47.525 INFO:teuthology.orchestra.run.smithi172.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-09-18T08:14:47.790 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up ceph-mgr-cephadm (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:47.992 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up ceph (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:48.158 INFO:teuthology.orchestra.run.smithi172.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-18T08:14:48.164 DEBUG:teuthology.parallel:result is None 2024-09-18T08:14:48.176 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up ceph-mgr-dashboard (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:48.327 INFO:teuthology.orchestra.run.smithi086.stdout:Setting up ceph-volume (19.3.0-4983-ge7fb7b56-1jammy) ... 2024-09-18T08:14:48.680 INFO:teuthology.orchestra.run.smithi086.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-09-18T08:14:48.772 INFO:teuthology.orchestra.run.smithi086.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-18T08:14:48.916 INFO:teuthology.orchestra.run.smithi086.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-18T08:14:50.167 INFO:teuthology.orchestra.run.smithi086.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-09-18T08:14:50.861 INFO:teuthology.orchestra.run.smithi086.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-18T08:14:50.865 DEBUG:teuthology.parallel:result is None 2024-09-18T08:14:50.866 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e 2024-09-18T08:14:51.017 DEBUG:teuthology.orchestra.run.smithi070:> dpkg-query -W -f '${Version}' ceph 2024-09-18T08:14:51.037 INFO:teuthology.orchestra.run.smithi070.stdout:19.3.0-4983-ge7fb7b56-1jammy 2024-09-18T08:14:51.038 INFO:teuthology.packaging:The installed version of ceph is 19.3.0-4983-ge7fb7b56-1jammy 2024-09-18T08:14:51.038 INFO:teuthology.task.install:The correct ceph version 19.3.0-4983-ge7fb7b56-1jammy is installed. 2024-09-18T08:14:51.040 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e 2024-09-18T08:14:51.178 DEBUG:teuthology.orchestra.run.smithi086:> dpkg-query -W -f '${Version}' ceph 2024-09-18T08:14:51.197 INFO:teuthology.orchestra.run.smithi086.stdout:19.3.0-4983-ge7fb7b56-1jammy 2024-09-18T08:14:51.197 INFO:teuthology.packaging:The installed version of ceph is 19.3.0-4983-ge7fb7b56-1jammy 2024-09-18T08:14:51.197 INFO:teuthology.task.install:The correct ceph version 19.3.0-4983-ge7fb7b56-1jammy is installed. 2024-09-18T08:14:51.199 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e 2024-09-18T08:14:51.345 DEBUG:teuthology.orchestra.run.smithi172:> dpkg-query -W -f '${Version}' ceph 2024-09-18T08:14:51.365 INFO:teuthology.orchestra.run.smithi172.stdout:19.3.0-4983-ge7fb7b56-1jammy 2024-09-18T08:14:51.365 INFO:teuthology.packaging:The installed version of ceph is 19.3.0-4983-ge7fb7b56-1jammy 2024-09-18T08:14:51.365 INFO:teuthology.task.install:The correct ceph version 19.3.0-4983-ge7fb7b56-1jammy is installed. 2024-09-18T08:14:51.367 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-09-18T08:14:51.367 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-18T08:14:51.367 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-18T08:14:51.381 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-18T08:14:51.382 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-18T08:14:51.396 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-09-18T08:14:51.396 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-18T08:14:51.425 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-09-18T08:14:51.425 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-18T08:14:51.425 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd of=/usr/bin/daemon-helper 2024-09-18T08:14:51.437 DEBUG:teuthology.orchestra.run.smithi070:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-18T08:14:51.492 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-18T08:14:51.492 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd of=/usr/bin/daemon-helper 2024-09-18T08:14:51.506 DEBUG:teuthology.orchestra.run.smithi086:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-18T08:14:51.561 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-09-18T08:14:51.561 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd of=/usr/bin/daemon-helper 2024-09-18T08:14:51.575 DEBUG:teuthology.orchestra.run.smithi172:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-18T08:14:51.631 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-09-18T08:14:51.632 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-18T08:14:51.632 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-18T08:14:51.644 DEBUG:teuthology.orchestra.run.smithi070:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-18T08:14:51.699 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-18T08:14:51.699 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-18T08:14:51.712 DEBUG:teuthology.orchestra.run.smithi086:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-18T08:14:51.765 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-09-18T08:14:51.765 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-18T08:14:51.778 DEBUG:teuthology.orchestra.run.smithi172:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-18T08:14:51.830 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-09-18T08:14:51.831 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-18T08:14:51.831 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd of=/usr/bin/stdin-killer 2024-09-18T08:14:51.844 DEBUG:teuthology.orchestra.run.smithi070:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-18T08:14:51.901 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-18T08:14:51.901 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd of=/usr/bin/stdin-killer 2024-09-18T08:14:51.914 DEBUG:teuthology.orchestra.run.smithi086:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-18T08:14:51.969 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-09-18T08:14:51.969 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd of=/usr/bin/stdin-killer 2024-09-18T08:14:51.982 DEBUG:teuthology.orchestra.run.smithi172:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-18T08:14:52.034 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-18T08:14:52.136 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': 'e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e'} 2024-09-18T08:14:52.136 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e 2024-09-18T08:14:52.136 INFO:tasks.cephadm:Cluster fsid is 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:14:52.137 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-18T08:14:52.137 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.70', 'mon.b': '172.21.15.86', 'mon.c': '172.21.15.172'} 2024-09-18T08:14:52.137 INFO:tasks.cephadm:First mon is mon.a on smithi070 2024-09-18T08:14:52.137 INFO:tasks.cephadm:First mgr is a 2024-09-18T08:14:52.137 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-18T08:14:52.137 DEBUG:teuthology.orchestra.run.smithi070:> sudo hostname $(hostname -s) 2024-09-18T08:14:52.152 DEBUG:teuthology.orchestra.run.smithi086:> sudo hostname $(hostname -s) 2024-09-18T08:14:52.166 DEBUG:teuthology.orchestra.run.smithi172:> sudo hostname $(hostname -s) 2024-09-18T08:14:52.180 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-18T08:14:52.180 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e 2024-09-18T08:14:52.323 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e', '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/83115/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.3.0-4983-ge7fb7b56', 'node_name': '172.21.2.17+braggi17', '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-4983-ge7fb7b56-1jammy'}, 'url': 'https://2.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-09-17 20:21:43.091116', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'wip-guits-main-2024-09-17-1213', 'chacra_url': 'https://2.chacra.ceph.com/repos/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-09-18T08:14:52.464 INFO:tasks.util.chacra:got chacra host 2.chacra.ceph.com, ref wip-guits-main-2024-09-17-1213, sha1 e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e 2024-09-18T08:14:52.467 INFO:tasks.cephadm:Discovered cachra url: https://2.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-18T08:14:52.467 INFO:tasks.cephadm:Downloading cephadm from url: https://2.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-18T08:14:52.468 DEBUG:teuthology.orchestra.run.smithi070:> curl --silent -L https://2.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-18T08:14:52.912 INFO:teuthology.orchestra.run.smithi070.stdout:-rw-rw-r-- 1 ubuntu ubuntu 811939 Sep 18 08:14 /home/ubuntu/cephtest/cephadm 2024-09-18T08:14:52.912 DEBUG:teuthology.orchestra.run.smithi086:> curl --silent -L https://2.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-18T08:14:53.352 INFO:teuthology.orchestra.run.smithi086.stdout:-rw-rw-r-- 1 ubuntu ubuntu 811939 Sep 18 08:14 /home/ubuntu/cephtest/cephadm 2024-09-18T08:14:53.352 DEBUG:teuthology.orchestra.run.smithi172:> curl --silent -L https://2.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-09-17-1213/e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-18T08:14:53.802 INFO:teuthology.orchestra.run.smithi172.stdout:-rw-rw-r-- 1 ubuntu ubuntu 811939 Sep 18 08:14 /home/ubuntu/cephtest/cephadm 2024-09-18T08:14:53.803 DEBUG:teuthology.orchestra.run.smithi070:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-18T08:14:53.811 DEBUG:teuthology.orchestra.run.smithi086:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-18T08:14:53.819 DEBUG:teuthology.orchestra.run.smithi172:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-18T08:14:53.839 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e on all hosts... 2024-09-18T08:14:53.839 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e pull 2024-09-18T08:14:53.854 DEBUG:teuthology.orchestra.run.smithi086:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e pull 2024-09-18T08:14:53.862 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e pull 2024-09-18T08:14:54.035 INFO:teuthology.orchestra.run.smithi070.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e... 2024-09-18T08:14:54.045 INFO:teuthology.orchestra.run.smithi086.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e... 2024-09-18T08:14:54.049 INFO:teuthology.orchestra.run.smithi172.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e... 2024-09-18T08:15:53.972 INFO:teuthology.orchestra.run.smithi070.stdout:{ 2024-09-18T08:15:53.972 INFO:teuthology.orchestra.run.smithi070.stdout: "ceph_version": "ceph version 19.3.0-4983-ge7fb7b56 (e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e) squid (dev)", 2024-09-18T08:15:53.972 INFO:teuthology.orchestra.run.smithi070.stdout: "image_id": "b22e1e37ddf1ca6e22136cd6540a9ab61e7cafb8bfbc7a91a2f20f7f9941bd9a", 2024-09-18T08:15:53.972 INFO:teuthology.orchestra.run.smithi070.stdout: "repo_digests": [ 2024-09-18T08:15:53.973 INFO:teuthology.orchestra.run.smithi070.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:1f5b5a3734f665ef333266f39143ac3ef1eb1951b21258f2307e10332e2d7ac9" 2024-09-18T08:15:53.973 INFO:teuthology.orchestra.run.smithi070.stdout: ] 2024-09-18T08:15:53.973 INFO:teuthology.orchestra.run.smithi070.stdout:} 2024-09-18T08:16:34.661 INFO:teuthology.orchestra.run.smithi172.stdout:{ 2024-09-18T08:16:34.662 INFO:teuthology.orchestra.run.smithi172.stdout: "ceph_version": "ceph version 19.3.0-4983-ge7fb7b56 (e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e) squid (dev)", 2024-09-18T08:16:34.662 INFO:teuthology.orchestra.run.smithi172.stdout: "image_id": "b22e1e37ddf1ca6e22136cd6540a9ab61e7cafb8bfbc7a91a2f20f7f9941bd9a", 2024-09-18T08:16:34.662 INFO:teuthology.orchestra.run.smithi172.stdout: "repo_digests": [ 2024-09-18T08:16:34.662 INFO:teuthology.orchestra.run.smithi172.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:1f5b5a3734f665ef333266f39143ac3ef1eb1951b21258f2307e10332e2d7ac9" 2024-09-18T08:16:34.663 INFO:teuthology.orchestra.run.smithi172.stdout: ] 2024-09-18T08:16:34.663 INFO:teuthology.orchestra.run.smithi172.stdout:} 2024-09-18T08:17:07.668 INFO:teuthology.orchestra.run.smithi086.stdout:{ 2024-09-18T08:17:07.668 INFO:teuthology.orchestra.run.smithi086.stdout: "ceph_version": "ceph version 19.3.0-4983-ge7fb7b56 (e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e) squid (dev)", 2024-09-18T08:17:07.668 INFO:teuthology.orchestra.run.smithi086.stdout: "image_id": "b22e1e37ddf1ca6e22136cd6540a9ab61e7cafb8bfbc7a91a2f20f7f9941bd9a", 2024-09-18T08:17:07.668 INFO:teuthology.orchestra.run.smithi086.stdout: "repo_digests": [ 2024-09-18T08:17:07.668 INFO:teuthology.orchestra.run.smithi086.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:1f5b5a3734f665ef333266f39143ac3ef1eb1951b21258f2307e10332e2d7ac9" 2024-09-18T08:17:07.668 INFO:teuthology.orchestra.run.smithi086.stdout: ] 2024-09-18T08:17:07.668 INFO:teuthology.orchestra.run.smithi086.stdout:} 2024-09-18T08:17:07.718 DEBUG:teuthology.orchestra.run.smithi070:> sudo mkdir -p /etc/ceph 2024-09-18T08:17:07.733 DEBUG:teuthology.orchestra.run.smithi086:> sudo mkdir -p /etc/ceph 2024-09-18T08:17:07.747 DEBUG:teuthology.orchestra.run.smithi172:> sudo mkdir -p /etc/ceph 2024-09-18T08:17:07.761 DEBUG:teuthology.orchestra.run.smithi070:> sudo chmod 777 /etc/ceph 2024-09-18T08:17:07.785 DEBUG:teuthology.orchestra.run.smithi086:> sudo chmod 777 /etc/ceph 2024-09-18T08:17:07.801 DEBUG:teuthology.orchestra.run.smithi172:> sudo chmod 777 /etc/ceph 2024-09-18T08:17:07.815 INFO:tasks.cephadm:Writing seed config... 2024-09-18T08:17:07.817 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2024-09-18T08:17:07.817 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-18T08:17:07.817 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-18T08:17:07.817 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = False 2024-09-18T08:17:07.817 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-18T08:17:07.817 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-18T08:17:07.817 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-18T08:17:07.817 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-18T08:17:07.817 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-18T08:17:07.818 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-18T08:17:07.818 DEBUG:teuthology.orchestra.run.smithi070:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-18T08:17:07.838 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 = 1481c73c-7596-11ef-bceb-c7b262605968 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-18T08:17:07.838 DEBUG:teuthology.orchestra.run.smithi070:mon.a> sudo journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@mon.a.service 2024-09-18T08:17:07.883 DEBUG:teuthology.orchestra.run.smithi070:mgr.a> sudo journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@mgr.a.service 2024-09-18T08:17:07.927 INFO:tasks.cephadm:Bootstrapping... 2024-09-18T08:17:07.927 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e -v bootstrap --fsid 1481c73c-7596-11ef-bceb-c7b262605968 --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.70 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-18T08:17:08.153 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------------------------------------------------------------------- 2024-09-18T08:17:08.153 INFO:teuthology.orchestra.run.smithi070.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e', '-v', 'bootstrap', '--fsid', '1481c73c-7596-11ef-bceb-c7b262605968', '--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.70', '--skip-admin-label'] 2024-09-18T08:17:08.153 INFO:teuthology.orchestra.run.smithi070.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-18T08:17:08.154 INFO:teuthology.orchestra.run.smithi070.stdout:Verifying podman|docker is present... 2024-09-18T08:17:08.154 INFO:teuthology.orchestra.run.smithi070.stdout:Verifying lvm2 is present... 2024-09-18T08:17:08.154 INFO:teuthology.orchestra.run.smithi070.stdout:Verifying time synchronization is in place... 2024-09-18T08:17:08.159 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-18T08:17:08.159 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-18T08:17:08.164 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-18T08:17:08.164 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout inactive 2024-09-18T08:17:08.168 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-18T08:17:08.168 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-18T08:17:08.172 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-18T08:17:08.172 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout inactive 2024-09-18T08:17:08.176 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-18T08:17:08.176 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout masked 2024-09-18T08:17:08.179 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-18T08:17:08.180 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout inactive 2024-09-18T08:17:08.183 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-18T08:17:08.183 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-18T08:17:08.186 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-18T08:17:08.187 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout inactive 2024-09-18T08:17:08.190 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout enabled 2024-09-18T08:17:08.194 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout active 2024-09-18T08:17:08.194 INFO:teuthology.orchestra.run.smithi070.stdout:Unit ntp.service is enabled and running 2024-09-18T08:17:08.194 INFO:teuthology.orchestra.run.smithi070.stdout:Repeating the final host check... 2024-09-18T08:17:08.194 INFO:teuthology.orchestra.run.smithi070.stdout:docker (/usr/bin/docker) is present 2024-09-18T08:17:08.194 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl is present 2024-09-18T08:17:08.195 INFO:teuthology.orchestra.run.smithi070.stdout:lvcreate is present 2024-09-18T08:17:08.198 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-18T08:17:08.198 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-18T08:17:08.201 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-18T08:17:08.201 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout inactive 2024-09-18T08:17:08.204 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-18T08:17:08.204 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-18T08:17:08.207 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-18T08:17:08.207 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout inactive 2024-09-18T08:17:08.210 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-18T08:17:08.210 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout masked 2024-09-18T08:17:08.213 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-18T08:17:08.213 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout inactive 2024-09-18T08:17:08.217 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-18T08:17:08.217 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-18T08:17:08.220 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-18T08:17:08.220 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout inactive 2024-09-18T08:17:08.223 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout enabled 2024-09-18T08:17:08.227 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout active 2024-09-18T08:17:08.227 INFO:teuthology.orchestra.run.smithi070.stdout:Unit ntp.service is enabled and running 2024-09-18T08:17:08.227 INFO:teuthology.orchestra.run.smithi070.stdout:Host looks OK 2024-09-18T08:17:08.227 INFO:teuthology.orchestra.run.smithi070.stdout:Cluster fsid: 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:17:08.227 INFO:teuthology.orchestra.run.smithi070.stdout:Acquiring lock 140074203195056 on /run/cephadm/1481c73c-7596-11ef-bceb-c7b262605968.lock 2024-09-18T08:17:08.227 INFO:teuthology.orchestra.run.smithi070.stdout:Lock 140074203195056 acquired on /run/cephadm/1481c73c-7596-11ef-bceb-c7b262605968.lock 2024-09-18T08:17:08.227 INFO:teuthology.orchestra.run.smithi070.stdout:Verifying IP 172.21.15.70 port 3300 ... 2024-09-18T08:17:08.227 INFO:teuthology.orchestra.run.smithi070.stdout:Verifying IP 172.21.15.70 port 6789 ... 2024-09-18T08:17:08.228 INFO:teuthology.orchestra.run.smithi070.stdout:Base mon IP(s) is [172.21.15.70:3300, 172.21.15.70:6789], mon addrv is [v2:172.21.15.70:3300,v1:172.21.15.70:6789] 2024-09-18T08:17:08.230 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 2024-09-18T08:17:08.230 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.70 metric 100 2024-09-18T08:17:08.230 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/sbin/ip: stdout 158.69.67.47 via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.70 metric 100 2024-09-18T08:17:08.230 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-09-18T08:17:08.230 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.70 metric 100 2024-09-18T08:17:08.230 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/sbin/ip: stdout 172.21.0.1 dev enp3s0f1 proto dhcp scope link src 172.21.15.70 metric 100 2024-09-18T08:17:08.231 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/sbin/ip: stdout 172.21.0.2 dev enp3s0f1 proto dhcp scope link src 172.21.15.70 metric 100 2024-09-18T08:17:08.231 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/sbin/ip: stdout 172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.70 metric 100 2024-09-18T08:17:08.232 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-18T08:17:08.232 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/sbin/ip: stdout fe80::/64 dev enp3s0f1 proto kernel metric 256 pref medium 2024-09-18T08:17:08.232 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 100 expires 1793sec pref medium 2024-09-18T08:17:08.235 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-18T08:17:08.235 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-18T08:17:08.235 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-18T08:17:08.235 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/sbin/ip: stdout 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-09-18T08:17:08.235 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/sbin/ip: stdout inet6 fe80::ec4:7aff:fe8f:d3e7/64 scope link 2024-09-18T08:17:08.235 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-18T08:17:08.236 INFO:teuthology.orchestra.run.smithi070.stdout:Mon IP `172.21.15.70` is in CIDR network `172.21.0.0/20` 2024-09-18T08:17:08.236 INFO:teuthology.orchestra.run.smithi070.stdout:Mon IP `172.21.15.70` is in CIDR network `172.21.0.0/20` 2024-09-18T08:17:08.236 INFO:teuthology.orchestra.run.smithi070.stdout:Mon IP `172.21.15.70` is in CIDR network `172.21.0.1/32` 2024-09-18T08:17:08.236 INFO:teuthology.orchestra.run.smithi070.stdout:Mon IP `172.21.15.70` is in CIDR network `172.21.0.1/32` 2024-09-18T08:17:08.236 INFO:teuthology.orchestra.run.smithi070.stdout:Mon IP `172.21.15.70` is in CIDR network `172.21.0.2/32` 2024-09-18T08:17:08.236 INFO:teuthology.orchestra.run.smithi070.stdout:Mon IP `172.21.15.70` is in CIDR network `172.21.0.2/32` 2024-09-18T08:17:08.236 INFO:teuthology.orchestra.run.smithi070.stdout:Mon IP `172.21.15.70` is in CIDR network `172.21.15.254/32` 2024-09-18T08:17:08.237 INFO:teuthology.orchestra.run.smithi070.stdout:Mon IP `172.21.15.70` is in CIDR network `172.21.15.254/32` 2024-09-18T08:17:08.237 INFO:teuthology.orchestra.run.smithi070.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20', '172.21.0.1/32', '172.21.0.1/32', '172.21.0.2/32', '172.21.0.2/32', '172.21.15.254/32', '172.21.15.254/32'] 2024-09-18T08:17:08.237 INFO:teuthology.orchestra.run.smithi070.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-18T08:17:08.237 INFO:teuthology.orchestra.run.smithi070.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e... 2024-09-18T08:17:08.470 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/docker: stdout e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e: Pulling from ceph-ci/ceph 2024-09-18T08:17:08.470 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/docker: stdout Digest: sha256:1f5b5a3734f665ef333266f39143ac3ef1eb1951b21258f2307e10332e2d7ac9 2024-09-18T08:17:08.470 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e 2024-09-18T08:17:08.470 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e 2024-09-18T08:17:09.971 INFO:teuthology.orchestra.run.smithi070.stdout:ceph: stdout ceph version 19.3.0-4983-ge7fb7b56 (e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e) squid (dev) 2024-09-18T08:17:09.971 INFO:teuthology.orchestra.run.smithi070.stdout:Ceph version: ceph version 19.3.0-4983-ge7fb7b56 (e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e) squid (dev) 2024-09-18T08:17:09.971 INFO:teuthology.orchestra.run.smithi070.stdout:Extracting ceph user uid/gid from container image... 2024-09-18T08:17:11.310 INFO:teuthology.orchestra.run.smithi070.stdout:stat: stdout 167 167 2024-09-18T08:17:11.310 INFO:teuthology.orchestra.run.smithi070.stdout:Creating initial keys... 2024-09-18T08:17:12.649 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-authtool: stdout AQCIjOpmwz5BBxAA0TiG8ORyS57odIYyXP9HeA== 2024-09-18T08:17:14.056 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-authtool: stdout AQCJjOpmv8FMHxAAKOfKC9WQuwROjy2pwYmQ1g== 2024-09-18T08:17:15.437 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-authtool: stdout AQCKjOpm/Xz1NBAAFy8NB0+zPDfVmFIawaegbw== 2024-09-18T08:17:15.437 INFO:teuthology.orchestra.run.smithi070.stdout:Creating initial monmap... 2024-09-18T08:17:16.768 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-18T08:17:16.768 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-09-18T08:17:16.768 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:17:16.769 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-18T08:17:16.769 INFO:teuthology.orchestra.run.smithi070.stdout:monmaptool for a [v2:172.21.15.70:3300,v1:172.21.15.70:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-18T08:17:16.769 INFO:teuthology.orchestra.run.smithi070.stdout:setting min_mon_release = quincy 2024-09-18T08:17:16.769 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/monmaptool: set fsid to 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:17:16.769 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-18T08:17:16.769 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:17:16.769 INFO:teuthology.orchestra.run.smithi070.stdout:Creating mon... 2024-09-18T08:17:18.158 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.617+0000 7f86e167dc80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-18T08:17:18.158 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.617+0000 7f86e167dc80 1 imported monmap: 2024-09-18T08:17:18.159 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-09-18T08:17:18.159 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:17:18.159 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-09-18T08:17:16.299901+0000 2024-09-18T08:17:18.159 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:17:18.159 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr min_mon_release 17 (quincy) 2024-09-18T08:17:18.159 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-09-18T08:17:18.159 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:17:18.159 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 2024-09-18T08:17:18.159 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.617+0000 7f86e167dc80 0 /usr/bin/ceph-mon: set fsid to 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:17:18.159 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: RocksDB version: 7.9.2 2024-09-18T08:17:18.159 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 2024-09-18T08:17:18.159 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Git sha 0 2024-09-18T08:17:18.159 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Compile date 2024-09-17 15:59:30 2024-09-18T08:17:18.159 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: DB SUMMARY 2024-09-18T08:17:18.160 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 2024-09-18T08:17:18.160 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: DB Session ID: V48QJC2ACHQVPTMHUC6W 2024-09-18T08:17:18.160 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 2024-09-18T08:17:18.160 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 0, files: 2024-09-18T08:17:18.160 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 2024-09-18T08:17:18.160 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 2024-09-18T08:17:18.160 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 2024-09-18T08:17:18.160 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.error_if_exists: 0 2024-09-18T08:17:18.160 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.create_if_missing: 1 2024-09-18T08:17:18.160 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.paranoid_checks: 1 2024-09-18T08:17:18.160 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-18T08:17:18.160 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-18T08:17:18.161 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-18T08:17:18.161 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.env: 0x55d3c7ee8120 2024-09-18T08:17:18.161 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-18T08:17:18.161 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.info_log: 0x55d3ca260bc0 2024-09-18T08:17:18.161 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-18T08:17:18.161 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.statistics: (nil) 2024-09-18T08:17:18.161 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.use_fsync: 0 2024-09-18T08:17:18.161 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_log_file_size: 0 2024-09-18T08:17:18.161 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-18T08:17:18.161 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-18T08:17:18.161 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-18T08:17:18.161 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-18T08:17:18.161 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.allow_fallocate: 1 2024-09-18T08:17:18.162 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-18T08:17:18.162 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-18T08:17:18.162 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.use_direct_reads: 0 2024-09-18T08:17:18.162 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-18T08:17:18.162 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-18T08:17:18.162 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.db_log_dir: 2024-09-18T08:17:18.162 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.wal_dir: 2024-09-18T08:17:18.162 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-18T08:17:18.162 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-18T08:17:18.162 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-18T08:17:18.162 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-18T08:17:18.162 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-18T08:17:18.162 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-18T08:17:18.162 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-18T08:17:18.163 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-18T08:17:18.163 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.write_buffer_manager: 0x55d3ca259cc0 2024-09-18T08:17:18.163 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-18T08:17:18.163 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-18T08:17:18.163 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-18T08:17:18.163 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-18T08:17:18.163 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-18T08:17:18.163 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-18T08:17:18.163 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-18T08:17:18.163 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-18T08:17:18.163 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.unordered_write: 0 2024-09-18T08:17:18.163 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-18T08:17:18.163 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-18T08:17:18.163 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-18T08:17:18.164 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-18T08:17:18.164 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.row_cache: None 2024-09-18T08:17:18.164 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.wal_filter: None 2024-09-18T08:17:18.164 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-18T08:17:18.164 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-18T08:17:18.164 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.two_write_queues: 0 2024-09-18T08:17:18.164 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-18T08:17:18.164 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.wal_compression: 0 2024-09-18T08:17:18.164 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.atomic_flush: 0 2024-09-18T08:17:18.164 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-18T08:17:18.164 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-18T08:17:18.164 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-18T08:17:18.164 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.log_readahead_size: 0 2024-09-18T08:17:18.165 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-18T08:17:18.165 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-18T08:17:18.165 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-18T08:17:18.165 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-18T08:17:18.165 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-18T08:17:18.165 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-18T08:17:18.165 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-18T08:17:18.165 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_background_jobs: 2 2024-09-18T08:17:18.165 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_background_compactions: -1 2024-09-18T08:17:18.165 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_subcompactions: 1 2024-09-18T08:17:18.165 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-18T08:17:18.165 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-18T08:17:18.165 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-18T08:17:18.165 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-18T08:17:18.166 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-18T08:17:18.166 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-18T08:17:18.166 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-18T08:17:18.166 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-18T08:17:18.166 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_open_files: -1 2024-09-18T08:17:18.166 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-18T08:17:18.166 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-18T08:17:18.166 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-18T08:17:18.166 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-18T08:17:18.166 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_background_flushes: -1 2024-09-18T08:17:18.166 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Compression algorithms supported: 2024-09-18T08:17:18.166 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: kZSTD supported: 0 2024-09-18T08:17:18.166 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: kXpressCompression supported: 0 2024-09-18T08:17:18.166 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: kBZip2Compression supported: 0 2024-09-18T08:17:18.167 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-18T08:17:18.167 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: kLZ4Compression supported: 1 2024-09-18T08:17:18.167 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: kZlibCompression supported: 1 2024-09-18T08:17:18.167 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-18T08:17:18.167 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: kSnappyCompression supported: 1 2024-09-18T08:17:18.167 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-18T08:17:18.167 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-18T08:17:18.167 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-09-18T08:17:18.167 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 2024-09-18T08:17:18.167 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000001 2024-09-18T08:17:18.167 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 2024-09-18T08:17:18.167 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-18T08:17:18.167 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 2024-09-18T08:17:18.167 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-18T08:17:18.168 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.merge_operator: 2024-09-18T08:17:18.168 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compaction_filter: None 2024-09-18T08:17:18.168 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-18T08:17:18.168 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-18T08:17:18.168 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-18T08:17:18.168 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-18T08:17:18.168 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55d3ca260820) 2024-09-18T08:17:18.168 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-09-18T08:17:18.168 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-09-18T08:17:18.168 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-18T08:17:18.168 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-09-18T08:17:18.168 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-09-18T08:17:18.168 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-09-18T08:17:18.169 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-09-18T08:17:18.169 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-09-18T08:17:18.169 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-09-18T08:17:18.169 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-09-18T08:17:18.169 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x55d3ca249610 2024-09-18T08:17:18.169 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-09-18T08:17:18.169 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-09-18T08:17:18.169 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-09-18T08:17:18.169 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-09-18T08:17:18.169 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-09-18T08:17:18.169 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-09-18T08:17:18.169 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-09-18T08:17:18.169 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-09-18T08:17:18.169 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-09-18T08:17:18.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-09-18T08:17:18.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-09-18T08:17:18.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-09-18T08:17:18.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-09-18T08:17:18.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-09-18T08:17:18.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-09-18T08:17:18.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-09-18T08:17:18.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-09-18T08:17:18.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-09-18T08:17:18.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-09-18T08:17:18.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-09-18T08:17:18.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-09-18T08:17:18.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-09-18T08:17:18.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-09-18T08:17:18.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-09-18T08:17:18.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-09-18T08:17:18.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-09-18T08:17:18.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 2024-09-18T08:17:18.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-18T08:17:18.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-18T08:17:18.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compression: NoCompression 2024-09-18T08:17:18.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-18T08:17:18.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-18T08:17:18.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-18T08:17:18.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.num_levels: 7 2024-09-18T08:17:18.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-18T08:17:18.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-18T08:17:18.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-18T08:17:18.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-18T08:17:18.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-18T08:17:18.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-18T08:17:18.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-18T08:17:18.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-18T08:17:18.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-18T08:17:18.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-18T08:17:18.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-18T08:17:18.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-18T08:17:18.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-18T08:17:18.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-18T08:17:18.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-18T08:17:18.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-18T08:17:18.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-18T08:17:18.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-18T08:17:18.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-18T08:17:18.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-18T08:17:18.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-18T08:17:18.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-18T08:17:18.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-18T08:17:18.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-18T08:17:18.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-18T08:17:18.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-18T08:17:18.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-18T08:17:18.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-18T08:17:18.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-18T08:17:18.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-18T08:17:18.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-18T08:17:18.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-18T08:17:18.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-18T08:17:18.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-18T08:17:18.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-18T08:17:18.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-18T08:17:18.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-18T08:17:18.175 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-18T08:17:18.175 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-18T08:17:18.175 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-18T08:17:18.175 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-18T08:17:18.175 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-18T08:17:18.175 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-18T08:17:18.175 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-18T08:17:18.175 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-18T08:17:18.175 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-18T08:17:18.175 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-18T08:17:18.175 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-18T08:17:18.175 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-18T08:17:18.175 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-18T08:17:18.176 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-18T08:17:18.176 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-18T08:17:18.176 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-18T08:17:18.176 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-18T08:17:18.176 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.inplace_update_support: 0 2024-09-18T08:17:18.176 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-18T08:17:18.176 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-18T08:17:18.176 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-18T08:17:18.176 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-18T08:17:18.176 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.bloom_locality: 0 2024-09-18T08:17:18.176 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.max_successive_merges: 0 2024-09-18T08:17:18.176 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-18T08:17:18.176 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-18T08:17:18.176 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-18T08:17:18.177 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-18T08:17:18.177 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.ttl: 2592000 2024-09-18T08:17:18.177 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-18T08:17:18.177 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-18T08:17:18.177 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-18T08:17:18.177 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.enable_blob_files: false 2024-09-18T08:17:18.177 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.min_blob_size: 0 2024-09-18T08:17:18.177 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-18T08:17:18.177 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-18T08:17:18.177 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-18T08:17:18.177 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-18T08:17:18.177 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-18T08:17:18.177 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-18T08:17:18.177 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-18T08:17:18.178 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-18T08:17:18.178 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 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-18T08:17:18.178 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 2024-09-18T08:17:18.178 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-18T08:17:18.178 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 2024-09-18T08:17:18.178 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 1a21d3ae-bfea-44e3-884f-c7b7544854f5 2024-09-18T08:17:18.178 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 2024-09-18T08:17:18.178 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.621+0000 7f86e167dc80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-09-18T08:17:18.178 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 2024-09-18T08:17:18.178 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.625+0000 7f86e167dc80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55d3ca278e00 2024-09-18T08:17:18.179 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.625+0000 7f86e167dc80 4 rocksdb: DB pointer 0x55d3ca35a000 2024-09-18T08:17:18.179 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.625+0000 7f86d8e08640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-18T08:17:18.179 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.625+0000 7f86d8e08640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-18T08:17:18.179 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-09-18T08:17:18.179 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-18T08:17:18.179 INFO:teuthology.orchestra.run.smithi070.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-18T08:17:18.179 INFO:teuthology.orchestra.run.smithi070.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-18T08:17:18.179 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-18T08:17:18.179 INFO:teuthology.orchestra.run.smithi070.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-18T08:17:18.179 INFO:teuthology.orchestra.run.smithi070.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-18T08:17:18.179 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-18T08:17:18.179 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 2024-09-18T08:17:18.179 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-18T08:17:18.180 INFO:teuthology.orchestra.run.smithi070.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-18T08:17:18.180 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-18T08:17:18.180 INFO:teuthology.orchestra.run.smithi070.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-18T08:17:18.180 INFO:teuthology.orchestra.run.smithi070.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-18T08:17:18.180 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 2024-09-18T08:17:18.180 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-18T08:17:18.180 INFO:teuthology.orchestra.run.smithi070.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-18T08:17:18.180 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-18T08:17:18.180 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 2024-09-18T08:17:18.180 INFO:teuthology.orchestra.run.smithi070.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-18T08:17:18.180 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 2024-09-18T08:17:18.181 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-18T08:17:18.181 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-09-18T08:17:18.181 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-09-18T08:17:18.181 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-09-18T08:17:18.181 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-09-18T08:17:18.181 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-09-18T08:17:18.181 INFO:teuthology.orchestra.run.smithi070.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-18T08:17:18.181 INFO:teuthology.orchestra.run.smithi070.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-18T08:17:18.181 INFO:teuthology.orchestra.run.smithi070.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-18T08:17:18.181 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x55d3ca249610#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1e-05 secs_since: 0 2024-09-18T08:17:18.181 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-09-18T08:17:18.182 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 2024-09-18T08:17:18.182 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-09-18T08:17:18.182 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr 2024-09-18T08:17:18.182 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.625+0000 7f86e167dc80 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-09-18T08:17:18.182 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.625+0000 7f86e167dc80 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-09-18T08:17:18.182 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-18T08:17:17.625+0000 7f86e167dc80 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-a for mon.a 2024-09-18T08:17:18.182 INFO:teuthology.orchestra.run.smithi070.stdout:create mon.a on 2024-09-18T08:17:18.410 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Removed /etc/systemd/system/multi-user.target.wants/ceph.target. 2024-09-18T08:17:18.623 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-09-18T08:17:18.855 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-1481c73c-7596-11ef-bceb-c7b262605968.target -> /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968.target. 2024-09-18T08:17:18.855 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-1481c73c-7596-11ef-bceb-c7b262605968.target -> /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968.target. 2024-09-18T08:17:19.132 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-1481c73c-7596-11ef-bceb-c7b262605968@mon.a 2024-09-18T08:17:19.132 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Failed to reset failed state of unit ceph-1481c73c-7596-11ef-bceb-c7b262605968@mon.a.service: Unit ceph-1481c73c-7596-11ef-bceb-c7b262605968@mon.a.service not loaded. 2024-09-18T08:17:19.343 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968.target.wants/ceph-1481c73c-7596-11ef-bceb-c7b262605968@mon.a.service -> /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.service. 2024-09-18T08:17:19.353 INFO:teuthology.orchestra.run.smithi070.stdout:firewalld does not appear to be present 2024-09-18T08:17:19.353 INFO:teuthology.orchestra.run.smithi070.stdout:Not possible to enable service . firewalld.service is not available 2024-09-18T08:17:19.353 INFO:teuthology.orchestra.run.smithi070.stdout:Waiting for mon to start... 2024-09-18T08:17:19.353 INFO:teuthology.orchestra.run.smithi070.stdout:Waiting for mon... 2024-09-18T08:17:20.982 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:20 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.815690+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-18T08:17:21.497 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout cluster: 2024-09-18T08:17:21.497 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout id: 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:17:21.497 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-18T08:17:21.497 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-18T08:17:21.497 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout services: 2024-09-18T08:17:21.497 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.146317s) 2024-09-18T08:17:21.498 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-18T08:17:21.498 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-18T08:17:21.498 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-18T08:17:21.498 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout data: 2024-09-18T08:17:21.498 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-18T08:17:21.498 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-18T08:17:21.498 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-18T08:17:21.498 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout pgs: 2024-09-18T08:17:21.498 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-18T08:17:21.498 INFO:teuthology.orchestra.run.smithi070.stdout:mon is available 2024-09-18T08:17:21.498 INFO:teuthology.orchestra.run.smithi070.stdout:Assimilating anything we can from ceph.conf... 2024-09-18T08:17:22.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.836021+0000 mon.a (mon.0) 2 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-18T08:17:22.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.836021+0000 mon.a (mon.0) 2 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-18T08:17:22.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.836202+0000 mon.a (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-09-18T08:17:22.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.836202+0000 mon.a (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-09-18T08:17:22.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.836215+0000 mon.a (mon.0) 4 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:17:22.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.836215+0000 mon.a (mon.0) 4 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:17:22.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.836223+0000 mon.a (mon.0) 5 : cluster [DBG] last_changed 2024-09-18T08:17:16.299901+0000 2024-09-18T08:17:22.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.836223+0000 mon.a (mon.0) 5 : cluster [DBG] last_changed 2024-09-18T08:17:16.299901+0000 2024-09-18T08:17:22.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.836231+0000 mon.a (mon.0) 6 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:17:22.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.836231+0000 mon.a (mon.0) 6 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:17:22.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.836239+0000 mon.a (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:17:22.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.836239+0000 mon.a (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:17:22.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.836246+0000 mon.a (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-09-18T08:17:22.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.836246+0000 mon.a (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-09-18T08:17:22.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.836253+0000 mon.a (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:17:22.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.836253+0000 mon.a (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:17:22.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.838595+0000 mon.a (mon.0) 10 : cluster [DBG] fsmap 2024-09-18T08:17:22.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.838595+0000 mon.a (mon.0) 10 : cluster [DBG] fsmap 2024-09-18T08:17:22.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.840778+0000 mon.a (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-18T08:17:22.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.840778+0000 mon.a (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-18T08:17:22.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.841193+0000 mon.a (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-09-18T08:17:22.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: cluster 2024-09-18T08:17:20.841193+0000 mon.a (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-09-18T08:17:22.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: audit 2024-09-18T08:17:20.982294+0000 mon.a (mon.0) 13 : audit [DBG] from='client.? 172.21.15.70:0/364635439' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-18T08:17:22.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:21 smithi070 bash[22363]: audit 2024-09-18T08:17:20.982294+0000 mon.a (mon.0) 13 : audit [DBG] from='client.? 172.21.15.70:0/364635439' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-18T08:17:23.068 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-18T08:17:23.068 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout [global] 2024-09-18T08:17:23.068 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout fsid = 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:17:23.068 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-18T08:17:23.068 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.70:3300,v1:172.21.15.70:6789] 2024-09-18T08:17:23.068 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-18T08:17:23.068 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-18T08:17:23.068 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-18T08:17:23.068 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-18T08:17:23.068 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-18T08:17:23.069 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-18T08:17:23.069 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2024-09-18T08:17:23.069 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-18T08:17:23.069 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-18T08:17:23.069 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout [osd] 2024-09-18T08:17:23.069 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-18T08:17:23.069 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-18T08:17:23.069 INFO:teuthology.orchestra.run.smithi070.stdout:Generating new minimal ceph.conf... 2024-09-18T08:17:23.136 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:22 smithi070 bash[22363]: audit 2024-09-18T08:17:22.541757+0000 mon.a (mon.0) 14 : audit [INF] from='client.? 172.21.15.70:0/3403372105' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-18T08:17:23.136 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:22 smithi070 bash[22363]: audit 2024-09-18T08:17:22.541757+0000 mon.a (mon.0) 14 : audit [INF] from='client.? 172.21.15.70:0/3403372105' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-18T08:17:23.136 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:22 smithi070 bash[22363]: audit 2024-09-18T08:17:22.546839+0000 mon.a (mon.0) 15 : audit [INF] from='client.? 172.21.15.70:0/3403372105' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-18T08:17:23.136 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:22 smithi070 bash[22363]: audit 2024-09-18T08:17:22.546839+0000 mon.a (mon.0) 15 : audit [INF] from='client.? 172.21.15.70:0/3403372105' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-18T08:17:24.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:24 smithi070 bash[22363]: audit 2024-09-18T08:17:24.317634+0000 mon.a (mon.0) 16 : audit [DBG] from='client.? 172.21.15.70:0/4065257126' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:17:24.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:24 smithi070 bash[22363]: audit 2024-09-18T08:17:24.317634+0000 mon.a (mon.0) 16 : audit [DBG] from='client.? 172.21.15.70:0/4065257126' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:17:24.820 INFO:teuthology.orchestra.run.smithi070.stdout:Restarting the monitor... 2024-09-18T08:17:25.171 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:24 smithi070 systemd[1]: Stopping Ceph mon.a for 1481c73c-7596-11ef-bceb-c7b262605968... 2024-09-18T08:17:25.171 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:24 smithi070 bash[22363]: debug 2024-09-18T08:17:24.940+0000 7f5dcda29640 -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-18T08:17:25.171 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:24 smithi070 bash[22363]: debug 2024-09-18T08:17:24.940+0000 7f5dcda29640 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-09-18T08:17:25.677 INFO:teuthology.orchestra.run.smithi070.stdout:Setting public_network to 172.21.0.1/32,172.21.0.2/32,172.21.0.0/20,172.21.15.254/32 in mon config section 2024-09-18T08:17:25.779 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:25 smithi070 bash[22745]: ceph-1481c73c-7596-11ef-bceb-c7b262605968-mon-a 2024-09-18T08:17:25.779 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:25 smithi070 bash[22806]: Error response from daemon: No such container: ceph-1481c73c-7596-11ef-bceb-c7b262605968-mon-a 2024-09-18T08:17:25.779 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:25 smithi070 systemd[1]: ceph-1481c73c-7596-11ef-bceb-c7b262605968@mon.a.service: Deactivated successfully. 2024-09-18T08:17:25.779 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:25 smithi070 systemd[1]: Stopped Ceph mon.a for 1481c73c-7596-11ef-bceb-c7b262605968. 2024-09-18T08:17:25.780 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:25 smithi070 systemd[1]: Started Ceph mon.a for 1481c73c-7596-11ef-bceb-c7b262605968. 2024-09-18T08:17:27.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.988+0000 7fd88eebcc80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-18T08:17:27.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.988+0000 7fd88eebcc80 0 ceph version 19.3.0-4983-ge7fb7b56 (e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e) squid (dev), process ceph-mon, pid 7 2024-09-18T08:17:27.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.988+0000 7fd88eebcc80 0 pidfile_write: ignore empty --pid-file 2024-09-18T08:17:27.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.992+0000 7fd88eebcc80 0 load: jerasure load: lrc 2024-09-18T08:17:27.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: RocksDB version: 7.9.2 2024-09-18T08:17:27.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Git sha 0 2024-09-18T08:17:27.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Compile date 2024-09-17 15:59:30 2024-09-18T08:17:27.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: DB SUMMARY 2024-09-18T08:17:27.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: DB Session ID: UYUQWPHPBSFJW6TW189X 2024-09-18T08:17:27.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: CURRENT file: CURRENT 2024-09-18T08:17:27.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: IDENTITY file: IDENTITY 2024-09-18T08:17:27.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-18T08:17:27.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-09-18T08:17:27.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 88806 ; 2024-09-18T08:17:27.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.error_if_exists: 0 2024-09-18T08:17:27.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.create_if_missing: 0 2024-09-18T08:17:27.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.paranoid_checks: 1 2024-09-18T08:17:27.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-18T08:17:27.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-18T08:17:27.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-18T08:17:27.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.env: 0x5589544bb120 2024-09-18T08:17:27.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-18T08:17:27.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:26 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.info_log: 0x558956413700 2024-09-18T08:17:27.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-18T08:17:27.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.statistics: (nil) 2024-09-18T08:17:27.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.use_fsync: 0 2024-09-18T08:17:27.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_log_file_size: 0 2024-09-18T08:17:27.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-18T08:17:27.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-18T08:17:27.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-18T08:17:27.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-18T08:17:27.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.allow_fallocate: 1 2024-09-18T08:17:27.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-18T08:17:27.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-18T08:17:27.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.use_direct_reads: 0 2024-09-18T08:17:27.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-18T08:17:27.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-18T08:17:27.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.db_log_dir: 2024-09-18T08:17:27.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.wal_dir: 2024-09-18T08:17:27.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-18T08:17:27.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-18T08:17:27.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-18T08:17:27.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-18T08:17:27.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-18T08:17:27.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-18T08:17:27.239 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-18T08:17:27.239 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-18T08:17:27.239 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.write_buffer_manager: 0x558956417b80 2024-09-18T08:17:27.239 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-18T08:17:27.239 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-18T08:17:27.239 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-18T08:17:27.239 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-18T08:17:27.239 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-18T08:17:27.239 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-18T08:17:27.239 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-18T08:17:27.240 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-18T08:17:27.240 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.unordered_write: 0 2024-09-18T08:17:27.240 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-18T08:17:27.240 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-18T08:17:27.240 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-18T08:17:27.240 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-18T08:17:27.240 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.row_cache: None 2024-09-18T08:17:27.240 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.wal_filter: None 2024-09-18T08:17:27.240 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-18T08:17:27.240 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-18T08:17:27.240 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.two_write_queues: 0 2024-09-18T08:17:27.240 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-18T08:17:27.241 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.wal_compression: 0 2024-09-18T08:17:27.241 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.atomic_flush: 0 2024-09-18T08:17:27.241 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-18T08:17:27.241 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-18T08:17:27.241 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-18T08:17:27.241 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.log_readahead_size: 0 2024-09-18T08:17:27.241 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-18T08:17:27.241 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-18T08:17:27.241 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-18T08:17:27.241 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-18T08:17:27.241 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-18T08:17:27.241 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-18T08:17:27.241 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-18T08:17:27.241 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_background_jobs: 2 2024-09-18T08:17:27.242 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_background_compactions: -1 2024-09-18T08:17:27.242 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_subcompactions: 1 2024-09-18T08:17:27.242 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-18T08:17:27.242 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-18T08:17:27.242 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-18T08:17:27.242 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-18T08:17:27.242 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-18T08:17:27.242 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-18T08:17:27.242 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-18T08:17:27.242 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-18T08:17:27.242 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_open_files: -1 2024-09-18T08:17:27.242 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-18T08:17:27.242 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-18T08:17:27.243 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-18T08:17:27.243 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-18T08:17:27.243 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_background_flushes: -1 2024-09-18T08:17:27.243 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Compression algorithms supported: 2024-09-18T08:17:27.243 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: kZSTD supported: 0 2024-09-18T08:17:27.243 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: kXpressCompression supported: 0 2024-09-18T08:17:27.243 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: kBZip2Compression supported: 0 2024-09-18T08:17:27.243 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-18T08:17:27.243 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: kLZ4Compression supported: 1 2024-09-18T08:17:27.243 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: kZlibCompression supported: 1 2024-09-18T08:17:27.243 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-18T08:17:27.243 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: kSnappyCompression supported: 1 2024-09-18T08:17:27.243 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-18T08:17:27.244 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-18T08:17:27.244 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-09-18T08:17:27.244 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-18T08:17:27.244 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-18T08:17:27.244 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.merge_operator: 2024-09-18T08:17:27.244 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compaction_filter: None 2024-09-18T08:17:27.244 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-18T08:17:27.244 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-18T08:17:27.244 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-18T08:17:27.244 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-18T08:17:27.244 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x558956413320) 2024-09-18T08:17:27.244 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cache_index_and_filter_blocks: 1 2024-09-18T08:17:27.244 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-18T08:17:27.245 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-18T08:17:27.245 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: pin_top_level_index_and_filter: 1 2024-09-18T08:17:27.245 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: index_type: 0 2024-09-18T08:17:27.245 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: data_block_index_type: 0 2024-09-18T08:17:27.245 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: index_shortening: 1 2024-09-18T08:17:27.245 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: data_block_hash_table_util_ratio: 0.750000 2024-09-18T08:17:27.245 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: checksum: 4 2024-09-18T08:17:27.245 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: no_block_cache: 0 2024-09-18T08:17:27.245 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: block_cache: 0x558956409610 2024-09-18T08:17:27.245 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: block_cache_name: BinnedLRUCache 2024-09-18T08:17:27.245 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: block_cache_options: 2024-09-18T08:17:27.245 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: capacity : 536870912 2024-09-18T08:17:27.245 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: num_shard_bits : 4 2024-09-18T08:17:27.246 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: strict_capacity_limit : 0 2024-09-18T08:17:27.246 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: high_pri_pool_ratio: 0.000 2024-09-18T08:17:27.246 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: block_cache_compressed: (nil) 2024-09-18T08:17:27.246 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: persistent_cache: (nil) 2024-09-18T08:17:27.246 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: block_size: 4096 2024-09-18T08:17:27.246 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: block_size_deviation: 10 2024-09-18T08:17:27.246 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: block_restart_interval: 16 2024-09-18T08:17:27.246 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: index_block_restart_interval: 1 2024-09-18T08:17:27.246 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: metadata_block_size: 4096 2024-09-18T08:17:27.246 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: partition_filters: 0 2024-09-18T08:17:27.246 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: use_delta_encoding: 1 2024-09-18T08:17:27.246 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: filter_policy: bloomfilter 2024-09-18T08:17:27.246 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: whole_key_filtering: 1 2024-09-18T08:17:27.246 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: verify_compression: 0 2024-09-18T08:17:27.247 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: read_amp_bytes_per_bit: 0 2024-09-18T08:17:27.247 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: format_version: 5 2024-09-18T08:17:27.247 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: enable_index_compression: 1 2024-09-18T08:17:27.247 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: block_align: 0 2024-09-18T08:17:27.247 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: max_auto_readahead_size: 262144 2024-09-18T08:17:27.247 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: prepopulate_block_cache: 0 2024-09-18T08:17:27.247 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: initial_auto_readahead_size: 8192 2024-09-18T08:17:27.247 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: num_file_reads_for_auto_readahead: 2 2024-09-18T08:17:27.247 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-18T08:17:27.247 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-18T08:17:27.248 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compression: NoCompression 2024-09-18T08:17:27.249 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-18T08:17:27.249 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-18T08:17:27.249 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-18T08:17:27.249 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.num_levels: 7 2024-09-18T08:17:27.249 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-18T08:17:27.249 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-18T08:17:27.249 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-18T08:17:27.249 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-18T08:17:27.249 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-18T08:17:27.249 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-18T08:17:27.249 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-18T08:17:27.249 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-18T08:17:27.250 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-18T08:17:27.250 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-18T08:17:27.250 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-18T08:17:27.250 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-18T08:17:27.250 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-18T08:17:27.250 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-18T08:17:27.250 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-18T08:17:27.250 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-18T08:17:27.250 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-18T08:17:27.250 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-18T08:17:27.250 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-18T08:17:27.250 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-18T08:17:27.250 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-18T08:17:27.250 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-18T08:17:27.251 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-18T08:17:27.251 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-18T08:17:27.251 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-18T08:17:27.251 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-18T08:17:27.251 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-18T08:17:27.251 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-18T08:17:27.251 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-18T08:17:27.251 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-18T08:17:27.251 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-18T08:17:27.251 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-18T08:17:27.251 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-18T08:17:27.251 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-18T08:17:27.251 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-18T08:17:27.252 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-18T08:17:27.252 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-18T08:17:27.252 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-18T08:17:27.252 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-18T08:17:27.252 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-18T08:17:27.252 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-18T08:17:27.252 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-18T08:17:27.252 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-18T08:17:27.252 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-18T08:17:27.252 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-18T08:17:27.252 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-18T08:17:27.252 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-18T08:17:27.252 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-18T08:17:27.253 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-18T08:17:27.253 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-18T08:17:27.253 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-18T08:17:27.253 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-18T08:17:27.253 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-18T08:17:27.253 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-18T08:17:27.253 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.inplace_update_support: 0 2024-09-18T08:17:27.253 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-18T08:17:27.253 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-18T08:17:27.253 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-18T08:17:27.253 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-18T08:17:27.253 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.bloom_locality: 0 2024-09-18T08:17:27.253 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.max_successive_merges: 0 2024-09-18T08:17:27.254 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-18T08:17:27.254 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-18T08:17:27.254 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-18T08:17:27.254 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-18T08:17:27.254 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.ttl: 2592000 2024-09-18T08:17:27.254 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-18T08:17:27.254 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-18T08:17:27.254 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-18T08:17:27.254 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.enable_blob_files: false 2024-09-18T08:17:27.254 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.min_blob_size: 0 2024-09-18T08:17:27.254 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-18T08:17:27.254 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-18T08:17:27.254 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-18T08:17:27.254 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-18T08:17:27.255 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-18T08:17:27.255 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-18T08:17:27.255 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-18T08:17:27.255 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-18T08:17:27.255 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 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-18T08:17:27.255 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-18T08:17:27.255 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 1a21d3ae-bfea-44e3-884f-c7b7544854f5 2024-09-18T08:17:27.255 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726647447001133, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-18T08:17:27.255 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-18T08:17:27.255 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726647447002126, "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": 1726647446, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "1a21d3ae-bfea-44e3-884f-c7b7544854f5", "db_session_id": "UYUQWPHPBSFJW6TW189X", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-18T08:17:27.255 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726647447002248, "job": 1, "event": "recovery_finished"} 2024-09-18T08:17:27.255 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-18T08:17:27.256 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:26.996+0000 7fd88eebcc80 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-18T08:17:27.256 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:27.000+0000 7fd88eebcc80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x558956436e00 2024-09-18T08:17:27.256 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:27.000+0000 7fd88eebcc80 4 rocksdb: DB pointer 0x55895653a000 2024-09-18T08:17:27.256 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:27.000+0000 7fd884c84640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-18T08:17:27.256 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: debug 2024-09-18T08:17:27.000+0000 7fd884c84640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-18T08:17:27.256 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: ** DB Stats ** 2024-09-18T08:17:27.256 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-18T08:17:27.256 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: 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-18T08:17:27.256 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-18T08:17:27.256 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-18T08:17:27.256 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: 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-18T08:17:27.256 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-18T08:17:27.257 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-18T08:17:27.257 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: ** Compaction Stats [default] ** 2024-09-18T08:17:27.257 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: 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-18T08:17:27.257 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-18T08:17:27.257 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: L0 2/0 85.41 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 127.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-18T08:17:27.257 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: Sum 2/0 85.41 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 127.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-18T08:17:27.257 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 127.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-18T08:17:27.257 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: ** Compaction Stats [default] ** 2024-09-18T08:17:27.257 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: 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-18T08:17:27.257 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-18T08:17:27.257 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 127.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-18T08:17:27.257 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-18T08:17:27.257 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-18T08:17:27.258 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-18T08:17:27.258 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-18T08:17:27.258 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: AddFile(Total Files): cumulative 0, interval 0 2024-09-18T08:17:27.258 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-18T08:17:27.258 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: AddFile(Keys): cumulative 0, interval 0 2024-09-18T08:17:27.258 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: Cumulative compaction: 0.00 GB write, 23.27 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-18T08:17:27.258 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: Interval compaction: 0.00 GB write, 23.27 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-18T08:17:27.258 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: 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-18T08:17:27.258 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: Block cache BinnedLRUCache@0x558956409610#7 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.1e-05 secs_since: 0 2024-09-18T08:17:27.258 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: 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-18T08:17:27.258 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: ** File Read Latency Histogram By Level [default] ** 2024-09-18T08:17:27.258 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.011034+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-18T08:17:27.258 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.011034+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-18T08:17:27.258 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.011190+0000 mon.a (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-09-18T08:17:27.259 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.011190+0000 mon.a (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-09-18T08:17:27.259 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.011238+0000 mon.a (mon.0) 3 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:17:27.259 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.011238+0000 mon.a (mon.0) 3 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:17:27.259 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.011287+0000 mon.a (mon.0) 4 : cluster [DBG] last_changed 2024-09-18T08:17:16.299901+0000 2024-09-18T08:17:27.259 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.011287+0000 mon.a (mon.0) 4 : cluster [DBG] last_changed 2024-09-18T08:17:16.299901+0000 2024-09-18T08:17:27.259 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.011333+0000 mon.a (mon.0) 5 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:17:27.259 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.011333+0000 mon.a (mon.0) 5 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:17:27.259 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.011378+0000 mon.a (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:17:27.259 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.011378+0000 mon.a (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:17:27.259 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.011424+0000 mon.a (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-09-18T08:17:27.259 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.011424+0000 mon.a (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-09-18T08:17:27.259 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.011469+0000 mon.a (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:17:27.259 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.011469+0000 mon.a (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:17:27.259 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.012077+0000 mon.a (mon.0) 9 : cluster [DBG] fsmap 2024-09-18T08:17:27.260 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.012077+0000 mon.a (mon.0) 9 : cluster [DBG] fsmap 2024-09-18T08:17:27.260 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.012193+0000 mon.a (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-18T08:17:27.260 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.012193+0000 mon.a (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-18T08:17:27.260 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.012792+0000 mon.a (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-09-18T08:17:27.260 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:27 smithi070 bash[22844]: cluster 2024-09-18T08:17:27.012792+0000 mon.a (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-09-18T08:17:27.774 INFO:teuthology.orchestra.run.smithi070.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-18T08:17:27.800 INFO:teuthology.orchestra.run.smithi070.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-18T08:17:27.800 INFO:teuthology.orchestra.run.smithi070.stdout:Creating mgr... 2024-09-18T08:17:27.801 INFO:teuthology.orchestra.run.smithi070.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-18T08:17:27.801 INFO:teuthology.orchestra.run.smithi070.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-18T08:17:28.102 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-1481c73c-7596-11ef-bceb-c7b262605968@mgr.a 2024-09-18T08:17:28.102 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Failed to reset failed state of unit ceph-1481c73c-7596-11ef-bceb-c7b262605968@mgr.a.service: Unit ceph-1481c73c-7596-11ef-bceb-c7b262605968@mgr.a.service not loaded. 2024-09-18T08:17:28.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:28 smithi070 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:17:28.310 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968.target.wants/ceph-1481c73c-7596-11ef-bceb-c7b262605968@mgr.a.service -> /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.service. 2024-09-18T08:17:28.317 INFO:teuthology.orchestra.run.smithi070.stdout:firewalld does not appear to be present 2024-09-18T08:17:28.317 INFO:teuthology.orchestra.run.smithi070.stdout:Not possible to enable service . firewalld.service is not available 2024-09-18T08:17:28.317 INFO:teuthology.orchestra.run.smithi070.stdout:firewalld does not appear to be present 2024-09-18T08:17:28.317 INFO:teuthology.orchestra.run.smithi070.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-09-18T08:17:28.317 INFO:teuthology.orchestra.run.smithi070.stdout:Waiting for mgr to start... 2024-09-18T08:17:28.317 INFO:teuthology.orchestra.run.smithi070.stdout:Waiting for mgr... 2024-09-18T08:17:28.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:28 smithi070 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:17:28.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:28 smithi070 bash[22844]: audit 2024-09-18T08:17:27.239345+0000 mon.a (mon.0) 12 : audit [INF] from='client.? 172.21.15.70:0/1417292400' entity='client.admin' 2024-09-18T08:17:28.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:28 smithi070 bash[22844]: audit 2024-09-18T08:17:27.239345+0000 mon.a (mon.0) 12 : audit [INF] from='client.? 172.21.15.70:0/1417292400' entity='client.admin' 2024-09-18T08:17:30.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:30 smithi070 bash[22844]: audit 2024-09-18T08:17:30.015219+0000 mon.a (mon.0) 13 : audit [DBG] from='client.? 172.21.15.70:0/4089947751' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-18T08:17:30.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:30 smithi070 bash[22844]: audit 2024-09-18T08:17:30.015219+0000 mon.a (mon.0) 13 : audit [DBG] from='client.? 172.21.15.70:0/4089947751' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-18T08:17:30.543 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-18T08:17:30.543 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout { 2024-09-18T08:17:30.543 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "fsid": "1481c73c-7596-11ef-bceb-c7b262605968", 2024-09-18T08:17:30.543 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "health": { 2024-09-18T08:17:30.543 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-18T08:17:30.543 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-18T08:17:30.543 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-18T08:17:30.544 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:30.544 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-18T08:17:30.544 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-18T08:17:30.544 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 0 2024-09-18T08:17:30.544 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout ], 2024-09-18T08:17:30.544 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-18T08:17:30.544 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "a" 2024-09-18T08:17:30.544 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout ], 2024-09-18T08:17:30.544 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "quorum_age": 3, 2024-09-18T08:17:30.544 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-18T08:17:30.544 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T08:17:30.544 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-18T08:17:30.544 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-18T08:17:30.545 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:30.545 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-18T08:17:30.545 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T08:17:30.545 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-18T08:17:30.545 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-18T08:17:30.545 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-18T08:17:30.545 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-18T08:17:30.545 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-18T08:17:30.545 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-18T08:17:30.545 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:30.545 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-18T08:17:30.545 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-18T08:17:30.545 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-18T08:17:30.546 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-18T08:17:30.546 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-18T08:17:30.546 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-18T08:17:30.546 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-18T08:17:30.546 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-18T08:17:30.546 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-18T08:17:30.546 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:30.546 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-18T08:17:30.546 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T08:17:30.546 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "btime": "2024-09-18T08:17:20:836641+0000", 2024-09-18T08:17:30.546 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-18T08:17:30.546 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-18T08:17:30.546 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:30.547 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-18T08:17:30.547 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-18T08:17:30.547 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-18T08:17:30.547 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-18T08:17:30.547 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-18T08:17:30.547 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-18T08:17:30.547 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "restful" 2024-09-18T08:17:30.547 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout ], 2024-09-18T08:17:30.547 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-18T08:17:30.547 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:30.547 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-18T08:17:30.547 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T08:17:30.547 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "modified": "2024-09-18T08:17:20.837463+0000", 2024-09-18T08:17:30.548 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-18T08:17:30.548 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:30.548 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-18T08:17:30.548 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout } 2024-09-18T08:17:30.548 INFO:teuthology.orchestra.run.smithi070.stdout:mgr not available, waiting (1/15)... 2024-09-18T08:17:33.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:33 smithi070 bash[22844]: audit 2024-09-18T08:17:33.678458+0000 mon.a (mon.0) 14 : audit [DBG] from='client.? 172.21.15.70:0/1743167611' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-18T08:17:33.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:33 smithi070 bash[22844]: audit 2024-09-18T08:17:33.678458+0000 mon.a (mon.0) 14 : audit [DBG] from='client.? 172.21.15.70:0/1743167611' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-18T08:17:34.208 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-18T08:17:34.208 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout { 2024-09-18T08:17:34.209 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "fsid": "1481c73c-7596-11ef-bceb-c7b262605968", 2024-09-18T08:17:34.209 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "health": { 2024-09-18T08:17:34.209 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-18T08:17:34.209 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-18T08:17:34.209 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-18T08:17:34.209 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:34.209 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-18T08:17:34.209 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-18T08:17:34.209 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 0 2024-09-18T08:17:34.209 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout ], 2024-09-18T08:17:34.209 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-18T08:17:34.209 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "a" 2024-09-18T08:17:34.209 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout ], 2024-09-18T08:17:34.209 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-09-18T08:17:34.210 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-18T08:17:34.210 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T08:17:34.210 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-18T08:17:34.210 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-18T08:17:34.210 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:34.210 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-18T08:17:34.210 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T08:17:34.210 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-18T08:17:34.210 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-18T08:17:34.210 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-18T08:17:34.210 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-18T08:17:34.210 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-18T08:17:34.210 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-18T08:17:34.214 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:34.214 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-18T08:17:34.214 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-18T08:17:34.214 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-18T08:17:34.214 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-18T08:17:34.214 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-18T08:17:34.215 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-18T08:17:34.215 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-18T08:17:34.215 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-18T08:17:34.215 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-18T08:17:34.215 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:34.215 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-18T08:17:34.215 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T08:17:34.215 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "btime": "2024-09-18T08:17:20:836641+0000", 2024-09-18T08:17:34.215 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-18T08:17:34.215 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-18T08:17:34.215 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:34.215 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-18T08:17:34.215 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-18T08:17:34.215 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-18T08:17:34.216 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-18T08:17:34.216 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-18T08:17:34.216 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-18T08:17:34.216 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "restful" 2024-09-18T08:17:34.216 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout ], 2024-09-18T08:17:34.216 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-18T08:17:34.216 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:34.216 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-18T08:17:34.216 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T08:17:34.216 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "modified": "2024-09-18T08:17:20.837463+0000", 2024-09-18T08:17:34.216 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-18T08:17:34.216 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:34.216 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-18T08:17:34.216 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout } 2024-09-18T08:17:34.217 INFO:teuthology.orchestra.run.smithi070.stdout:mgr not available, waiting (2/15)... 2024-09-18T08:17:36.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: cluster 2024-09-18T08:17:35.734606+0000 mon.a (mon.0) 15 : cluster [INF] Activating manager daemon a 2024-09-18T08:17:36.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: cluster 2024-09-18T08:17:35.734606+0000 mon.a (mon.0) 15 : cluster [INF] Activating manager daemon a 2024-09-18T08:17:36.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: cluster 2024-09-18T08:17:35.741492+0000 mon.a (mon.0) 16 : cluster [DBG] mgrmap e2: a(active, starting, since 0.00723831s) 2024-09-18T08:17:36.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: cluster 2024-09-18T08:17:35.741492+0000 mon.a (mon.0) 16 : cluster [DBG] mgrmap e2: a(active, starting, since 0.00723831s) 2024-09-18T08:17:36.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: audit 2024-09-18T08:17:35.742298+0000 mon.a (mon.0) 17 : audit [DBG] from='mgr.14100 172.21.15.70:0/2197021157' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-18T08:17:36.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: audit 2024-09-18T08:17:35.742298+0000 mon.a (mon.0) 17 : audit [DBG] from='mgr.14100 172.21.15.70:0/2197021157' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-18T08:17:36.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: audit 2024-09-18T08:17:35.742436+0000 mon.a (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.70:0/2197021157' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-18T08:17:36.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: audit 2024-09-18T08:17:35.742436+0000 mon.a (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.70:0/2197021157' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-18T08:17:36.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: audit 2024-09-18T08:17:35.742529+0000 mon.a (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.70:0/2197021157' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-18T08:17:36.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: audit 2024-09-18T08:17:35.742529+0000 mon.a (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.70:0/2197021157' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-18T08:17:36.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: audit 2024-09-18T08:17:35.742622+0000 mon.a (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.70:0/2197021157' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:17:36.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: audit 2024-09-18T08:17:35.742622+0000 mon.a (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.70:0/2197021157' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:17:36.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: audit 2024-09-18T08:17:35.743384+0000 mon.a (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.70:0/2197021157' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-18T08:17:36.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: audit 2024-09-18T08:17:35.743384+0000 mon.a (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.70:0/2197021157' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-18T08:17:36.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: cluster 2024-09-18T08:17:35.769786+0000 mon.a (mon.0) 22 : cluster [INF] Manager daemon a is now available 2024-09-18T08:17:36.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: cluster 2024-09-18T08:17:35.769786+0000 mon.a (mon.0) 22 : cluster [INF] Manager daemon a is now available 2024-09-18T08:17:36.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: audit 2024-09-18T08:17:35.780406+0000 mon.a (mon.0) 23 : audit [INF] from='mgr.14100 172.21.15.70:0/2197021157' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-18T08:17:36.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: audit 2024-09-18T08:17:35.780406+0000 mon.a (mon.0) 23 : audit [INF] from='mgr.14100 172.21.15.70:0/2197021157' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-18T08:17:36.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: audit 2024-09-18T08:17:35.782154+0000 mon.a (mon.0) 24 : audit [INF] from='mgr.14100 172.21.15.70:0/2197021157' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-18T08:17:36.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: audit 2024-09-18T08:17:35.782154+0000 mon.a (mon.0) 24 : audit [INF] from='mgr.14100 172.21.15.70:0/2197021157' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-18T08:17:36.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: audit 2024-09-18T08:17:35.785246+0000 mon.a (mon.0) 25 : audit [INF] from='mgr.14100 172.21.15.70:0/2197021157' entity='mgr.a' 2024-09-18T08:17:36.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:35 smithi070 bash[22844]: audit 2024-09-18T08:17:35.785246+0000 mon.a (mon.0) 25 : audit [INF] from='mgr.14100 172.21.15.70:0/2197021157' entity='mgr.a' 2024-09-18T08:17:37.077 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:36 smithi070 bash[22844]: audit 2024-09-18T08:17:35.787086+0000 mon.a (mon.0) 26 : audit [INF] from='mgr.14100 172.21.15.70:0/2197021157' entity='mgr.a' 2024-09-18T08:17:37.077 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:36 smithi070 bash[22844]: audit 2024-09-18T08:17:35.787086+0000 mon.a (mon.0) 26 : audit [INF] from='mgr.14100 172.21.15.70:0/2197021157' entity='mgr.a' 2024-09-18T08:17:37.077 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:36 smithi070 bash[22844]: audit 2024-09-18T08:17:35.791069+0000 mon.a (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.70:0/2197021157' entity='mgr.a' 2024-09-18T08:17:37.077 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:36 smithi070 bash[22844]: audit 2024-09-18T08:17:35.791069+0000 mon.a (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.70:0/2197021157' entity='mgr.a' 2024-09-18T08:17:37.077 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:36 smithi070 bash[22844]: cluster 2024-09-18T08:17:36.749491+0000 mon.a (mon.0) 28 : cluster [DBG] mgrmap e3: a(active, since 1.01522s) 2024-09-18T08:17:37.077 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:36 smithi070 bash[22844]: cluster 2024-09-18T08:17:36.749491+0000 mon.a (mon.0) 28 : cluster [DBG] mgrmap e3: a(active, since 1.01522s) 2024-09-18T08:17:38.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:37 smithi070 bash[22844]: audit 2024-09-18T08:17:37.746053+0000 mon.a (mon.0) 29 : audit [DBG] from='client.? 172.21.15.70:0/3108630823' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-18T08:17:38.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:37 smithi070 bash[22844]: audit 2024-09-18T08:17:37.746053+0000 mon.a (mon.0) 29 : audit [DBG] from='client.? 172.21.15.70:0/3108630823' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-18T08:17:38.236 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-18T08:17:38.236 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout { 2024-09-18T08:17:38.236 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "fsid": "1481c73c-7596-11ef-bceb-c7b262605968", 2024-09-18T08:17:38.236 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "health": { 2024-09-18T08:17:38.236 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-18T08:17:38.236 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-18T08:17:38.237 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-18T08:17:38.237 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:38.237 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-18T08:17:38.237 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-18T08:17:38.237 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 0 2024-09-18T08:17:38.237 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout ], 2024-09-18T08:17:38.237 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-18T08:17:38.237 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "a" 2024-09-18T08:17:38.237 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout ], 2024-09-18T08:17:38.237 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "quorum_age": 10, 2024-09-18T08:17:38.237 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-18T08:17:38.237 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T08:17:38.237 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-18T08:17:38.238 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-18T08:17:38.238 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:38.238 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-18T08:17:38.238 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T08:17:38.238 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-18T08:17:38.238 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-18T08:17:38.238 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-18T08:17:38.238 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-18T08:17:38.238 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-18T08:17:38.238 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-18T08:17:38.242 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:38.242 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-18T08:17:38.242 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-18T08:17:38.242 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-18T08:17:38.242 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-18T08:17:38.242 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-18T08:17:38.242 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-18T08:17:38.242 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-18T08:17:38.242 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-18T08:17:38.242 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-18T08:17:38.242 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:38.242 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-18T08:17:38.242 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T08:17:38.243 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "btime": "2024-09-18T08:17:20:836641+0000", 2024-09-18T08:17:38.243 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-18T08:17:38.243 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-18T08:17:38.243 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:38.243 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-18T08:17:38.243 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-18T08:17:38.243 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-18T08:17:38.243 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-18T08:17:38.243 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-18T08:17:38.243 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-18T08:17:38.243 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "restful" 2024-09-18T08:17:38.244 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout ], 2024-09-18T08:17:38.244 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-18T08:17:38.244 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:38.244 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-18T08:17:38.244 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-18T08:17:38.244 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "modified": "2024-09-18T08:17:20.837463+0000", 2024-09-18T08:17:38.244 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-18T08:17:38.244 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-18T08:17:38.244 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-18T08:17:38.244 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout } 2024-09-18T08:17:38.244 INFO:teuthology.orchestra.run.smithi070.stdout:mgr is available 2024-09-18T08:17:39.051 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:38 smithi070 bash[22844]: cluster 2024-09-18T08:17:37.793826+0000 mon.a (mon.0) 30 : cluster [DBG] mgrmap e4: a(active, since 2s) 2024-09-18T08:17:39.052 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:38 smithi070 bash[22844]: cluster 2024-09-18T08:17:37.793826+0000 mon.a (mon.0) 30 : cluster [DBG] mgrmap e4: a(active, since 2s) 2024-09-18T08:17:39.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:39 smithi070 bash[22844]: audit 2024-09-18T08:17:39.580166+0000 mon.a (mon.0) 31 : audit [INF] from='client.? 172.21.15.70:0/4164621770' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-18T08:17:39.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:39 smithi070 bash[22844]: audit 2024-09-18T08:17:39.580166+0000 mon.a (mon.0) 31 : audit [INF] from='client.? 172.21.15.70:0/4164621770' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-18T08:17:39.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:39 smithi070 bash[22844]: audit 2024-09-18T08:17:39.585080+0000 mon.a (mon.0) 32 : audit [INF] from='client.? 172.21.15.70:0/4164621770' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-18T08:17:39.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:39 smithi070 bash[22844]: audit 2024-09-18T08:17:39.585080+0000 mon.a (mon.0) 32 : audit [INF] from='client.? 172.21.15.70:0/4164621770' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-18T08:17:40.109 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-18T08:17:40.109 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout [global] 2024-09-18T08:17:40.109 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout fsid = 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:17:40.109 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-18T08:17:40.109 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.70:3300,v1:172.21.15.70:6789] 2024-09-18T08:17:40.110 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-18T08:17:40.110 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-18T08:17:40.110 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-18T08:17:40.110 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-18T08:17:40.110 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-18T08:17:40.110 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-18T08:17:40.110 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-18T08:17:40.110 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-18T08:17:40.110 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout [osd] 2024-09-18T08:17:40.110 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-18T08:17:40.110 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-18T08:17:40.111 INFO:teuthology.orchestra.run.smithi070.stdout:Enabling cephadm module... 2024-09-18T08:17:41.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:41 smithi070 bash[22844]: audit 2024-09-18T08:17:41.592108+0000 mon.a (mon.0) 33 : audit [INF] from='client.? 172.21.15.70:0/1667416718' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-18T08:17:41.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:41 smithi070 bash[22844]: audit 2024-09-18T08:17:41.592108+0000 mon.a (mon.0) 33 : audit [INF] from='client.? 172.21.15.70:0/1667416718' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-18T08:17:41.983 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:41 smithi070 bash[23095]: ignoring --setgroup ceph since I am not root 2024-09-18T08:17:42.933 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:42 smithi070 bash[22844]: audit 2024-09-18T08:17:41.643809+0000 mon.a (mon.0) 34 : audit [INF] from='client.? 172.21.15.70:0/1667416718' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-18T08:17:42.933 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:42 smithi070 bash[22844]: audit 2024-09-18T08:17:41.643809+0000 mon.a (mon.0) 34 : audit [INF] from='client.? 172.21.15.70:0/1667416718' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-18T08:17:42.933 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:42 smithi070 bash[22844]: cluster 2024-09-18T08:17:41.648741+0000 mon.a (mon.0) 35 : cluster [DBG] mgrmap e5: a(active, since 5s) 2024-09-18T08:17:42.933 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:42 smithi070 bash[22844]: cluster 2024-09-18T08:17:41.648741+0000 mon.a (mon.0) 35 : cluster [DBG] mgrmap e5: a(active, since 5s) 2024-09-18T08:17:43.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:43 smithi070 bash[22844]: audit 2024-09-18T08:17:43.520001+0000 mon.a (mon.0) 36 : audit [DBG] from='client.? 172.21.15.70:0/2964949033' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-18T08:17:43.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:43 smithi070 bash[22844]: audit 2024-09-18T08:17:43.520001+0000 mon.a (mon.0) 36 : audit [DBG] from='client.? 172.21.15.70:0/2964949033' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-18T08:17:44.037 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout { 2024-09-18T08:17:44.037 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-18T08:17:44.037 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-18T08:17:44.038 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-18T08:17:44.038 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-18T08:17:44.038 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout } 2024-09-18T08:17:44.038 INFO:teuthology.orchestra.run.smithi070.stdout:Waiting for the mgr to restart... 2024-09-18T08:17:44.038 INFO:teuthology.orchestra.run.smithi070.stdout:Waiting for mgr epoch 5... 2024-09-18T08:17:47.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:47 smithi070 bash[22844]: cluster 2024-09-18T08:17:47.661721+0000 mon.a (mon.0) 37 : cluster [INF] Active manager daemon a restarted 2024-09-18T08:17:47.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:47 smithi070 bash[22844]: cluster 2024-09-18T08:17:47.661721+0000 mon.a (mon.0) 37 : cluster [INF] Active manager daemon a restarted 2024-09-18T08:17:47.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:47 smithi070 bash[22844]: cluster 2024-09-18T08:17:47.662144+0000 mon.a (mon.0) 38 : cluster [INF] Activating manager daemon a 2024-09-18T08:17:47.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:47 smithi070 bash[22844]: cluster 2024-09-18T08:17:47.662144+0000 mon.a (mon.0) 38 : cluster [INF] Activating manager daemon a 2024-09-18T08:17:47.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:47 smithi070 bash[22844]: cluster 2024-09-18T08:17:47.665880+0000 mon.a (mon.0) 39 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-18T08:17:47.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:47 smithi070 bash[22844]: cluster 2024-09-18T08:17:47.665880+0000 mon.a (mon.0) 39 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-18T08:17:47.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:47 smithi070 bash[22844]: cluster 2024-09-18T08:17:47.666002+0000 mon.a (mon.0) 40 : cluster [DBG] mgrmap e6: a(active, starting, since 0.00404749s) 2024-09-18T08:17:47.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:47 smithi070 bash[22844]: cluster 2024-09-18T08:17:47.666002+0000 mon.a (mon.0) 40 : cluster [DBG] mgrmap e6: a(active, starting, since 0.00404749s) 2024-09-18T08:17:47.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:47 smithi070 bash[22844]: audit 2024-09-18T08:17:47.669157+0000 mon.a (mon.0) 41 : audit [DBG] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:17:47.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:47 smithi070 bash[22844]: audit 2024-09-18T08:17:47.669157+0000 mon.a (mon.0) 41 : audit [DBG] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:17:47.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:47 smithi070 bash[22844]: audit 2024-09-18T08:17:47.670567+0000 mon.a (mon.0) 42 : audit [DBG] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-18T08:17:47.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:47 smithi070 bash[22844]: audit 2024-09-18T08:17:47.670567+0000 mon.a (mon.0) 42 : audit [DBG] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-18T08:17:47.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:47 smithi070 bash[22844]: audit 2024-09-18T08:17:47.671739+0000 mon.a (mon.0) 43 : audit [DBG] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-18T08:17:47.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:47 smithi070 bash[22844]: audit 2024-09-18T08:17:47.671739+0000 mon.a (mon.0) 43 : audit [DBG] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-18T08:17:47.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:47 smithi070 bash[22844]: audit 2024-09-18T08:17:47.671914+0000 mon.a (mon.0) 44 : audit [DBG] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-18T08:17:47.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:47 smithi070 bash[22844]: audit 2024-09-18T08:17:47.671914+0000 mon.a (mon.0) 44 : audit [DBG] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-18T08:17:47.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:47 smithi070 bash[22844]: audit 2024-09-18T08:17:47.672033+0000 mon.a (mon.0) 45 : audit [DBG] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-18T08:17:47.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:47 smithi070 bash[22844]: audit 2024-09-18T08:17:47.672033+0000 mon.a (mon.0) 45 : audit [DBG] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-18T08:17:47.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:47 smithi070 bash[22844]: cluster 2024-09-18T08:17:47.698057+0000 mon.a (mon.0) 46 : cluster [INF] Manager daemon a is now available 2024-09-18T08:17:47.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:47 smithi070 bash[22844]: cluster 2024-09-18T08:17:47.698057+0000 mon.a (mon.0) 46 : cluster [INF] Manager daemon a is now available 2024-09-18T08:17:49.219 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout { 2024-09-18T08:17:49.220 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-18T08:17:49.220 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-18T08:17:49.220 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout } 2024-09-18T08:17:49.220 INFO:teuthology.orchestra.run.smithi070.stdout:mgr epoch 5 is available 2024-09-18T08:17:49.220 INFO:teuthology.orchestra.run.smithi070.stdout:Verifying orchestrator module is enabled... 2024-09-18T08:17:49.973 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: audit 2024-09-18T08:17:48.672321+0000 mgr.a (mgr.14118) 1 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-18T08:17:49.974 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: audit 2024-09-18T08:17:48.672321+0000 mgr.a (mgr.14118) 1 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-18T08:17:49.974 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: cluster 2024-09-18T08:17:48.673193+0000 mon.a (mon.0) 47 : cluster [DBG] mgrmap e7: a(active, since 1.01122s) 2024-09-18T08:17:49.974 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: cluster 2024-09-18T08:17:48.673193+0000 mon.a (mon.0) 47 : cluster [DBG] mgrmap e7: a(active, since 1.01122s) 2024-09-18T08:17:49.974 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: audit 2024-09-18T08:17:48.686443+0000 mgr.a (mgr.14118) 2 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-18T08:17:49.974 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: audit 2024-09-18T08:17:48.686443+0000 mgr.a (mgr.14118) 2 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-18T08:17:49.974 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: audit 2024-09-18T08:17:48.885486+0000 mon.a (mon.0) 48 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:17:49.974 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: audit 2024-09-18T08:17:48.885486+0000 mon.a (mon.0) 48 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:17:49.974 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: audit 2024-09-18T08:17:48.888456+0000 mon.a (mon.0) 49 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:17:49.974 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: audit 2024-09-18T08:17:48.888456+0000 mon.a (mon.0) 49 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:17:49.974 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: audit 2024-09-18T08:17:48.890674+0000 mon.a (mon.0) 50 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:17:49.974 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: audit 2024-09-18T08:17:48.890674+0000 mon.a (mon.0) 50 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:17:49.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: audit 2024-09-18T08:17:48.895158+0000 mon.a (mon.0) 51 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:17:49.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: audit 2024-09-18T08:17:48.895158+0000 mon.a (mon.0) 51 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:17:49.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: audit 2024-09-18T08:17:48.899399+0000 mon.a (mon.0) 52 : audit [DBG] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:17:49.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: audit 2024-09-18T08:17:48.899399+0000 mon.a (mon.0) 52 : audit [DBG] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:17:49.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: audit 2024-09-18T08:17:48.901474+0000 mon.a (mon.0) 53 : audit [DBG] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:17:49.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: audit 2024-09-18T08:17:48.901474+0000 mon.a (mon.0) 53 : audit [DBG] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:17:49.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: audit 2024-09-18T08:17:48.912159+0000 mon.a (mon.0) 54 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-18T08:17:49.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: audit 2024-09-18T08:17:48.912159+0000 mon.a (mon.0) 54 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-18T08:17:49.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: audit 2024-09-18T08:17:48.914553+0000 mon.a (mon.0) 55 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-18T08:17:49.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[22844]: audit 2024-09-18T08:17:48.914553+0000 mon.a (mon.0) 55 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-18T08:17:50.233 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[23095]: debug 2024-09-18T08:17:49.971+0000 7f43f1db2640 -1 log_channel(cephadm) log [ERR] : [18/Sep/2024:08:17:49] ENGINE Error in HTTPServer.serve 2024-09-18T08:17:50.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[23095]: Traceback (most recent call last): 2024-09-18T08:17:50.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[23095]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-18T08:17:50.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[23095]: self._connections.run(self.expiration_interval) 2024-09-18T08:17:50.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[23095]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-18T08:17:50.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[23095]: self._run(expiration_interval) 2024-09-18T08:17:50.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[23095]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-18T08:17:50.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[23095]: new_conn = self._from_server_socket(self.server.socket) 2024-09-18T08:17:50.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[23095]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-18T08:17:50.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[23095]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-18T08:17:50.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[23095]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-18T08:17:50.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[23095]: s = self.context.wrap_socket( 2024-09-18T08:17:50.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[23095]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-18T08:17:50.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[23095]: return self.sslsocket_class._create( 2024-09-18T08:17:50.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[23095]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-18T08:17:50.235 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[23095]: self.do_handshake() 2024-09-18T08:17:50.235 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[23095]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-18T08:17:50.235 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[23095]: self._sslobj.do_handshake() 2024-09-18T08:17:50.235 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:49 smithi070 bash[23095]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-18T08:17:50.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:50 smithi070 bash[22844]: cephadm 2024-09-18T08:17:48.888914+0000 mgr.a (mgr.14118) 3 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-18T08:17:50.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:50 smithi070 bash[22844]: cephadm 2024-09-18T08:17:48.888914+0000 mgr.a (mgr.14118) 3 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-18T08:17:50.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:50 smithi070 bash[22844]: audit 2024-09-18T08:17:50.072193+0000 mon.a (mon.0) 56 : audit [DBG] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:17:50.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:50 smithi070 bash[22844]: audit 2024-09-18T08:17:50.072193+0000 mon.a (mon.0) 56 : audit [DBG] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:17:50.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:50 smithi070 bash[22844]: audit 2024-09-18T08:17:50.583123+0000 mon.a (mon.0) 57 : audit [INF] from='client.? 172.21.15.70:0/1219476836' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2024-09-18T08:17:50.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:50 smithi070 bash[22844]: audit 2024-09-18T08:17:50.583123+0000 mon.a (mon.0) 57 : audit [INF] from='client.? 172.21.15.70:0/1219476836' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2024-09-18T08:17:51.251 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stderr module 'orchestrator' is already enabled (always-on) 2024-09-18T08:17:51.251 INFO:teuthology.orchestra.run.smithi070.stdout:Setting orchestrator backend to cephadm... 2024-09-18T08:17:51.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: cephadm 2024-09-18T08:17:49.849336+0000 mgr.a (mgr.14118) 4 : cephadm [INF] [18/Sep/2024:08:17:49] ENGINE Bus STARTING 2024-09-18T08:17:51.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: cephadm 2024-09-18T08:17:49.849336+0000 mgr.a (mgr.14118) 4 : cephadm [INF] [18/Sep/2024:08:17:49] ENGINE Bus STARTING 2024-09-18T08:17:51.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: cephadm 2024-09-18T08:17:49.969921+0000 mgr.a (mgr.14118) 5 : cephadm [INF] [18/Sep/2024:08:17:49] ENGINE Serving on https://172.21.15.70:7150 2024-09-18T08:17:51.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: cephadm 2024-09-18T08:17:49.969921+0000 mgr.a (mgr.14118) 5 : cephadm [INF] [18/Sep/2024:08:17:49] ENGINE Serving on https://172.21.15.70:7150 2024-09-18T08:17:51.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: cephadm 2024-09-18T08:17:49.973458+0000 mgr.a (mgr.14118) 6 : cephadm [ERR] [18/Sep/2024:08:17:49] ENGINE Error in HTTPServer.serve 2024-09-18T08:17:51.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: Traceback (most recent call last): 2024-09-18T08:17:51.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-18T08:17:51.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: self._connections.run(self.expiration_interval) 2024-09-18T08:17:51.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-18T08:17:51.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: self._run(expiration_interval) 2024-09-18T08:17:51.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-18T08:17:51.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: new_conn = self._from_server_socket(self.server.socket) 2024-09-18T08:17:51.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-18T08:17:51.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-18T08:17:51.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-18T08:17:51.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: s = self.context.wrap_socket( 2024-09-18T08:17:51.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-18T08:17:51.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: return self.sslsocket_class._create( 2024-09-18T08:17:51.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-18T08:17:51.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: self.do_handshake() 2024-09-18T08:17:51.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-18T08:17:51.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: self._sslobj.do_handshake() 2024-09-18T08:17:51.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-18T08:17:51.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: cephadm 2024-09-18T08:17:49.973458+0000 mgr.a (mgr.14118) 6 : cephadm [ERR] [18/Sep/2024:08:17:49] ENGINE Error in HTTPServer.serve 2024-09-18T08:17:51.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: Traceback (most recent call last): 2024-09-18T08:17:51.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-18T08:17:51.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: self._connections.run(self.expiration_interval) 2024-09-18T08:17:51.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-18T08:17:51.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: self._run(expiration_interval) 2024-09-18T08:17:51.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-18T08:17:51.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: new_conn = self._from_server_socket(self.server.socket) 2024-09-18T08:17:51.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-18T08:17:51.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-18T08:17:51.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-18T08:17:51.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: s = self.context.wrap_socket( 2024-09-18T08:17:51.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-18T08:17:51.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: return self.sslsocket_class._create( 2024-09-18T08:17:51.988 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-18T08:17:51.988 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: self.do_handshake() 2024-09-18T08:17:51.988 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-18T08:17:51.988 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: self._sslobj.do_handshake() 2024-09-18T08:17:51.988 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-18T08:17:51.988 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: cephadm 2024-09-18T08:17:50.071095+0000 mgr.a (mgr.14118) 7 : cephadm [INF] [18/Sep/2024:08:17:50] ENGINE Serving on http://172.21.15.70:8765 2024-09-18T08:17:51.988 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: cephadm 2024-09-18T08:17:50.071095+0000 mgr.a (mgr.14118) 7 : cephadm [INF] [18/Sep/2024:08:17:50] ENGINE Serving on http://172.21.15.70:8765 2024-09-18T08:17:51.988 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: cephadm 2024-09-18T08:17:50.071360+0000 mgr.a (mgr.14118) 8 : cephadm [INF] [18/Sep/2024:08:17:50] ENGINE Bus STARTED 2024-09-18T08:17:51.988 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: cephadm 2024-09-18T08:17:50.071360+0000 mgr.a (mgr.14118) 8 : cephadm [INF] [18/Sep/2024:08:17:50] ENGINE Bus STARTED 2024-09-18T08:17:51.988 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: audit 2024-09-18T08:17:50.673603+0000 mon.a (mon.0) 58 : audit [INF] from='client.? 172.21.15.70:0/1219476836' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2024-09-18T08:17:51.988 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: audit 2024-09-18T08:17:50.673603+0000 mon.a (mon.0) 58 : audit [INF] from='client.? 172.21.15.70:0/1219476836' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2024-09-18T08:17:51.988 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: cluster 2024-09-18T08:17:50.679775+0000 mon.a (mon.0) 59 : cluster [DBG] mgrmap e8: a(active, since 3s) 2024-09-18T08:17:51.988 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:51 smithi070 bash[22844]: cluster 2024-09-18T08:17:50.679775+0000 mon.a (mon.0) 59 : cluster [DBG] mgrmap e8: a(active, since 3s) 2024-09-18T08:17:53.915 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:53 smithi070 bash[22844]: audit 2024-09-18T08:17:52.550646+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-18T08:17:53.915 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:53 smithi070 bash[22844]: audit 2024-09-18T08:17:52.550646+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-18T08:17:53.915 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:53 smithi070 bash[22844]: audit 2024-09-18T08:17:52.556860+0000 mon.a (mon.0) 60 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:17:53.915 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:53 smithi070 bash[22844]: audit 2024-09-18T08:17:52.556860+0000 mon.a (mon.0) 60 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:17:53.915 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:53 smithi070 bash[22844]: audit 2024-09-18T08:17:52.574500+0000 mon.a (mon.0) 61 : audit [DBG] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:17:53.915 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:53 smithi070 bash[22844]: audit 2024-09-18T08:17:52.574500+0000 mon.a (mon.0) 61 : audit [DBG] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:17:54.923 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-18T08:17:54.924 INFO:teuthology.orchestra.run.smithi070.stdout:Generating ssh key... 2024-09-18T08:17:55.011 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:54 smithi070 bash[22844]: audit 2024-09-18T08:17:54.449710+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-18T08:17:55.011 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:54 smithi070 bash[22844]: audit 2024-09-18T08:17:54.449710+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-18T08:17:56.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[22844]: audit 2024-09-18T08:17:56.292979+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-18T08:17:56.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[22844]: audit 2024-09-18T08:17:56.292979+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-18T08:17:56.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[22844]: cephadm 2024-09-18T08:17:56.293414+0000 mgr.a (mgr.14118) 12 : cephadm [INF] Generating ssh key... 2024-09-18T08:17:56.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[22844]: cephadm 2024-09-18T08:17:56.293414+0000 mgr.a (mgr.14118) 12 : cephadm [INF] Generating ssh key... 2024-09-18T08:17:56.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[22844]: audit 2024-09-18T08:17:56.728579+0000 mon.a (mon.0) 62 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:17:56.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[22844]: audit 2024-09-18T08:17:56.728579+0000 mon.a (mon.0) 62 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:17:56.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[22844]: audit 2024-09-18T08:17:56.733193+0000 mon.a (mon.0) 63 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:17:56.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[22844]: audit 2024-09-18T08:17:56.733193+0000 mon.a (mon.0) 63 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:17:56.985 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[23095]: Generating public/private rsa key pair. 2024-09-18T08:17:56.985 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[23095]: Your identification has been saved in /tmp/tmpw357umc8/key 2024-09-18T08:17:56.985 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[23095]: Your public key has been saved in /tmp/tmpw357umc8/key.pub 2024-09-18T08:17:56.986 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[23095]: The key fingerprint is: 2024-09-18T08:17:56.986 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[23095]: SHA256:A5lRhUd1QxJrbLjRqzF7xK1cbTtzf9O9jXaEm8VcIB0 ceph-1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:17:56.986 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[23095]: The key's randomart image is: 2024-09-18T08:17:56.986 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[23095]: +---[RSA 3072]----+ 2024-09-18T08:17:56.986 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[23095]: | ...+o.++E. | 2024-09-18T08:17:56.986 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[23095]: | +. .+.+o. | 2024-09-18T08:17:56.986 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[23095]: | + .o *. . | 2024-09-18T08:17:56.987 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[23095]: | . * o ..| 2024-09-18T08:17:56.987 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[23095]: | S + + o++| 2024-09-18T08:17:56.987 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[23095]: | . B o..*| 2024-09-18T08:17:56.987 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[23095]: | o + O+| 2024-09-18T08:17:56.987 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[23095]: | . +o@| 2024-09-18T08:17:56.988 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[23095]: | ..o*| 2024-09-18T08:17:56.988 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:17:56 smithi070 bash[23095]: +----[SHA256]-----+ 2024-09-18T08:17:58.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:58 smithi070 bash[22844]: audit 2024-09-18T08:17:58.568031+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-18T08:17:58.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:17:58 smithi070 bash[22844]: audit 2024-09-18T08:17:58.568031+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-18T08:17:59.065 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCtHJS9FmLw+Vnxmt+wMtYSL8Zl07IcyITlaOL65F8vIuD1Jqk56Se5qnaNsl/Jbl6ALa71uY5n4PDWazqQ50RmMHGdrotozUv0eroxKflfEjCQ00CMt0qhZjODt020deWDBCw1RskeGzd5Tzx+L66co/BhQ8Awv7kD/CXQ5BS0CAFmLefIJjbRHz4N5gsSmrH3eRIzLnu9u5tG/bt8Ihgyqd7QAaLwqSkF+570Z1MzkxjnSGs+xtdJgSCklWrJPvT+llCnr0BRy1CP26VjwTuTsh8hVf6zkTzP8llnI0FnA57hhv8dwYvccvyV/0e34T2OqFZ0+FgLoVcu0zVynoIYe1R+mVI8n3coBwrSY82jo8qFzyjukH6b+LCZxKAesowbaaZS8SK7KlHStqY7t9I3ZGDROT0hWd7AYcJpsQxYlXVZ6gbYmFw0AQspL5uSUQi/UfT1T6KO1J67Onv8+/YXDuFncIu5kiWrNfm+JO/Si/EUoS0DpvxwxG3IlpzMPq0= ceph-1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:17:59.066 INFO:teuthology.orchestra.run.smithi070.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-18T08:17:59.066 INFO:teuthology.orchestra.run.smithi070.stdout:Adding key to root@localhost authorized_keys... 2024-09-18T08:17:59.066 INFO:teuthology.orchestra.run.smithi070.stdout:Adding host smithi070... 2024-09-18T08:18:00.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:00 smithi070 bash[22844]: audit 2024-09-18T08:18:00.436914+0000 mgr.a (mgr.14118) 14 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi070", "addr": "172.21.15.70", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:18:00.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:00 smithi070 bash[22844]: audit 2024-09-18T08:18:00.436914+0000 mgr.a (mgr.14118) 14 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi070", "addr": "172.21.15.70", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:18:01.793 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:01 smithi070 bash[22844]: cephadm 2024-09-18T08:18:01.388918+0000 mgr.a (mgr.14118) 15 : cephadm [INF] Deploying cephadm binary to smithi070 2024-09-18T08:18:01.794 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:01 smithi070 bash[22844]: cephadm 2024-09-18T08:18:01.388918+0000 mgr.a (mgr.14118) 15 : cephadm [INF] Deploying cephadm binary to smithi070 2024-09-18T08:18:05.103 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout Added host 'smithi070' with addr '172.21.15.70' 2024-09-18T08:18:05.104 INFO:teuthology.orchestra.run.smithi070.stdout:Deploying unmanaged mon service... 2024-09-18T08:18:05.503 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:05 smithi070 bash[22844]: audit 2024-09-18T08:18:04.451746+0000 mon.a (mon.0) 64 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:18:05.503 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:05 smithi070 bash[22844]: audit 2024-09-18T08:18:04.451746+0000 mon.a (mon.0) 64 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:18:05.503 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:05 smithi070 bash[22844]: cephadm 2024-09-18T08:18:04.452190+0000 mgr.a (mgr.14118) 16 : cephadm [INF] Added host smithi070 2024-09-18T08:18:05.503 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:05 smithi070 bash[22844]: cephadm 2024-09-18T08:18:04.452190+0000 mgr.a (mgr.14118) 16 : cephadm [INF] Added host smithi070 2024-09-18T08:18:05.504 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:05 smithi070 bash[22844]: audit 2024-09-18T08:18:04.452651+0000 mon.a (mon.0) 65 : audit [DBG] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:18:05.504 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:05 smithi070 bash[22844]: audit 2024-09-18T08:18:04.452651+0000 mon.a (mon.0) 65 : audit [DBG] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:18:07.734 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-18T08:18:07.734 INFO:teuthology.orchestra.run.smithi070.stdout:Deploying unmanaged mgr service... 2024-09-18T08:18:08.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:07 smithi070 bash[22844]: audit 2024-09-18T08:18:06.995715+0000 mgr.a (mgr.14118) 17 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:18:08.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:07 smithi070 bash[22844]: audit 2024-09-18T08:18:06.995715+0000 mgr.a (mgr.14118) 17 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:18:08.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:07 smithi070 bash[22844]: cephadm 2024-09-18T08:18:06.996933+0000 mgr.a (mgr.14118) 18 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-18T08:18:08.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:07 smithi070 bash[22844]: cephadm 2024-09-18T08:18:06.996933+0000 mgr.a (mgr.14118) 18 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-18T08:18:08.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:07 smithi070 bash[22844]: audit 2024-09-18T08:18:07.000728+0000 mon.a (mon.0) 66 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:18:08.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:07 smithi070 bash[22844]: audit 2024-09-18T08:18:07.000728+0000 mon.a (mon.0) 66 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:18:08.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:07 smithi070 bash[22844]: audit 2024-09-18T08:18:07.484783+0000 mon.a (mon.0) 67 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:18:08.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:07 smithi070 bash[22844]: audit 2024-09-18T08:18:07.484783+0000 mon.a (mon.0) 67 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:18:08.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:07 smithi070 bash[22844]: cluster 2024-09-18T08:18:07.673362+0000 mgr.a (mgr.14118) 19 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:18:08.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:07 smithi070 bash[22844]: cluster 2024-09-18T08:18:07.673362+0000 mgr.a (mgr.14118) 19 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:18:09.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:09 smithi070 bash[22844]: audit 2024-09-18T08:18:08.050356+0000 mon.a (mon.0) 68 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:18:09.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:09 smithi070 bash[22844]: audit 2024-09-18T08:18:08.050356+0000 mon.a (mon.0) 68 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:18:09.592 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-18T08:18:10.435 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:10 smithi070 bash[22844]: audit 2024-09-18T08:18:09.065926+0000 mgr.a (mgr.14118) 20 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:18:10.435 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:10 smithi070 bash[22844]: audit 2024-09-18T08:18:09.065926+0000 mgr.a (mgr.14118) 20 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:18:10.435 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:10 smithi070 bash[22844]: cephadm 2024-09-18T08:18:09.066898+0000 mgr.a (mgr.14118) 21 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-18T08:18:10.435 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:10 smithi070 bash[22844]: cephadm 2024-09-18T08:18:09.066898+0000 mgr.a (mgr.14118) 21 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-18T08:18:10.436 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:10 smithi070 bash[22844]: audit 2024-09-18T08:18:09.069195+0000 mon.a (mon.0) 69 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:18:10.436 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:10 smithi070 bash[22844]: audit 2024-09-18T08:18:09.069195+0000 mon.a (mon.0) 69 : audit [INF] from='mgr.14118 172.21.15.70:0/2887868927' entity='mgr.a' 2024-09-18T08:18:10.436 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:10 smithi070 bash[22844]: cluster 2024-09-18T08:18:09.673734+0000 mgr.a (mgr.14118) 22 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:18:10.436 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:10 smithi070 bash[22844]: cluster 2024-09-18T08:18:09.673734+0000 mgr.a (mgr.14118) 22 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:18:12.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:11 smithi070 bash[22844]: audit 2024-09-18T08:18:10.966290+0000 mon.a (mon.0) 70 : audit [INF] from='client.? 172.21.15.70:0/480411425' entity='client.admin' 2024-09-18T08:18:12.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:11 smithi070 bash[22844]: audit 2024-09-18T08:18:10.966290+0000 mon.a (mon.0) 70 : audit [INF] from='client.? 172.21.15.70:0/480411425' entity='client.admin' 2024-09-18T08:18:12.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:11 smithi070 bash[22844]: cluster 2024-09-18T08:18:11.674154+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-18T08:18:12.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:11 smithi070 bash[22844]: cluster 2024-09-18T08:18:11.674154+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-18T08:18:13.240 INFO:teuthology.orchestra.run.smithi070.stdout:Enabling the dashboard module... 2024-09-18T08:18:14.024 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:13 smithi070 bash[22844]: audit 2024-09-18T08:18:12.766490+0000 mon.a (mon.0) 71 : audit [INF] from='client.? 172.21.15.70:0/579943666' entity='client.admin' 2024-09-18T08:18:14.024 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:13 smithi070 bash[22844]: audit 2024-09-18T08:18:12.766490+0000 mon.a (mon.0) 71 : audit [INF] from='client.? 172.21.15.70:0/579943666' entity='client.admin' 2024-09-18T08:18:14.024 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:13 smithi070 bash[22844]: cluster 2024-09-18T08:18:13.674569+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-18T08:18:14.024 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:13 smithi070 bash[22844]: cluster 2024-09-18T08:18:13.674569+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-18T08:18:15.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:14 smithi070 bash[22844]: audit 2024-09-18T08:18:14.627469+0000 mon.a (mon.0) 72 : audit [INF] from='client.? 172.21.15.70:0/748956933' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2024-09-18T08:18:15.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:14 smithi070 bash[22844]: audit 2024-09-18T08:18:14.627469+0000 mon.a (mon.0) 72 : audit [INF] from='client.? 172.21.15.70:0/748956933' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2024-09-18T08:18:15.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:14 smithi070 bash[23095]: ignoring --setuser ceph since I am not root 2024-09-18T08:18:15.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:14 smithi070 bash[23095]: ignoring --setgroup ceph since I am not root 2024-09-18T08:18:16.150 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:15 smithi070 bash[22844]: audit 2024-09-18T08:18:14.775757+0000 mon.a (mon.0) 73 : audit [INF] from='client.? 172.21.15.70:0/748956933' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-18T08:18:16.150 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:15 smithi070 bash[22844]: audit 2024-09-18T08:18:14.775757+0000 mon.a (mon.0) 73 : audit [INF] from='client.? 172.21.15.70:0/748956933' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-18T08:18:16.150 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:15 smithi070 bash[22844]: cluster 2024-09-18T08:18:14.782180+0000 mon.a (mon.0) 74 : cluster [DBG] mgrmap e9: a(active, since 27s) 2024-09-18T08:18:16.151 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:15 smithi070 bash[22844]: cluster 2024-09-18T08:18:14.782180+0000 mon.a (mon.0) 74 : cluster [DBG] mgrmap e9: a(active, since 27s) 2024-09-18T08:18:17.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:16 smithi070 bash[22844]: audit 2024-09-18T08:18:16.742705+0000 mon.a (mon.0) 75 : audit [DBG] from='client.? 172.21.15.70:0/921972646' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-18T08:18:17.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:16 smithi070 bash[22844]: audit 2024-09-18T08:18:16.742705+0000 mon.a (mon.0) 75 : audit [DBG] from='client.? 172.21.15.70:0/921972646' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-18T08:18:17.238 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout { 2024-09-18T08:18:17.239 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-18T08:18:17.239 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-18T08:18:17.239 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-18T08:18:17.239 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-18T08:18:17.239 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout } 2024-09-18T08:18:17.239 INFO:teuthology.orchestra.run.smithi070.stdout:Waiting for the mgr to restart... 2024-09-18T08:18:17.239 INFO:teuthology.orchestra.run.smithi070.stdout:Waiting for mgr epoch 9... 2024-09-18T08:18:21.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:20 smithi070 bash[22844]: cluster 2024-09-18T08:18:20.817751+0000 mon.a (mon.0) 76 : cluster [INF] Active manager daemon a restarted 2024-09-18T08:18:21.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:20 smithi070 bash[22844]: cluster 2024-09-18T08:18:20.817751+0000 mon.a (mon.0) 76 : cluster [INF] Active manager daemon a restarted 2024-09-18T08:18:21.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:20 smithi070 bash[22844]: cluster 2024-09-18T08:18:20.818204+0000 mon.a (mon.0) 77 : cluster [INF] Activating manager daemon a 2024-09-18T08:18:21.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:20 smithi070 bash[22844]: cluster 2024-09-18T08:18:20.818204+0000 mon.a (mon.0) 77 : cluster [INF] Activating manager daemon a 2024-09-18T08:18:21.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:20 smithi070 bash[22844]: cluster 2024-09-18T08:18:20.825638+0000 mon.a (mon.0) 78 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-09-18T08:18:21.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:20 smithi070 bash[22844]: cluster 2024-09-18T08:18:20.825638+0000 mon.a (mon.0) 78 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-09-18T08:18:21.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:20 smithi070 bash[22844]: cluster 2024-09-18T08:18:20.825885+0000 mon.a (mon.0) 79 : cluster [DBG] mgrmap e10: a(active, starting, since 0.00787012s) 2024-09-18T08:18:21.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:20 smithi070 bash[22844]: cluster 2024-09-18T08:18:20.825885+0000 mon.a (mon.0) 79 : cluster [DBG] mgrmap e10: a(active, starting, since 0.00787012s) 2024-09-18T08:18:21.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:20 smithi070 bash[22844]: audit 2024-09-18T08:18:20.828684+0000 mon.a (mon.0) 80 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:18:21.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:20 smithi070 bash[22844]: audit 2024-09-18T08:18:20.828684+0000 mon.a (mon.0) 80 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:18:21.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:20 smithi070 bash[22844]: audit 2024-09-18T08:18:20.830519+0000 mon.a (mon.0) 81 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-18T08:18:21.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:20 smithi070 bash[22844]: audit 2024-09-18T08:18:20.830519+0000 mon.a (mon.0) 81 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-18T08:18:21.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:20 smithi070 bash[22844]: audit 2024-09-18T08:18:20.831300+0000 mon.a (mon.0) 82 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-18T08:18:21.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:20 smithi070 bash[22844]: audit 2024-09-18T08:18:20.831300+0000 mon.a (mon.0) 82 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-18T08:18:21.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:20 smithi070 bash[22844]: audit 2024-09-18T08:18:20.831584+0000 mon.a (mon.0) 83 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-18T08:18:21.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:20 smithi070 bash[22844]: audit 2024-09-18T08:18:20.831584+0000 mon.a (mon.0) 83 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-18T08:18:21.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:20 smithi070 bash[22844]: audit 2024-09-18T08:18:20.831714+0000 mon.a (mon.0) 84 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-18T08:18:21.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:20 smithi070 bash[22844]: audit 2024-09-18T08:18:20.831714+0000 mon.a (mon.0) 84 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-18T08:18:21.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:20 smithi070 bash[22844]: cluster 2024-09-18T08:18:20.858219+0000 mon.a (mon.0) 85 : cluster [INF] Manager daemon a is now available 2024-09-18T08:18:21.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:20 smithi070 bash[22844]: cluster 2024-09-18T08:18:20.858219+0000 mon.a (mon.0) 85 : cluster [INF] Manager daemon a is now available 2024-09-18T08:18:22.233 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[23095]: debug 2024-09-18T08:18:21.994+0000 7f6f2ed12640 -1 log_channel(cephadm) log [ERR] : [18/Sep/2024:08:18:21] ENGINE Error in HTTPServer.serve 2024-09-18T08:18:22.233 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[23095]: Traceback (most recent call last): 2024-09-18T08:18:22.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[23095]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-18T08:18:22.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[23095]: self._connections.run(self.expiration_interval) 2024-09-18T08:18:22.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[23095]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-18T08:18:22.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[23095]: self._run(expiration_interval) 2024-09-18T08:18:22.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[23095]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-18T08:18:22.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[23095]: new_conn = self._from_server_socket(self.server.socket) 2024-09-18T08:18:22.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[23095]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-18T08:18:22.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[23095]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-18T08:18:22.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[23095]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-18T08:18:22.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[23095]: s = self.context.wrap_socket( 2024-09-18T08:18:22.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[23095]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-18T08:18:22.234 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[23095]: return self.sslsocket_class._create( 2024-09-18T08:18:22.235 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[23095]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-18T08:18:22.235 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[23095]: self.do_handshake() 2024-09-18T08:18:22.235 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[23095]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-18T08:18:22.235 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[23095]: self._sslobj.do_handshake() 2024-09-18T08:18:22.235 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[23095]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-18T08:18:22.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[22844]: audit 2024-09-18T08:18:21.111462+0000 mon.a (mon.0) 86 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:18:22.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[22844]: audit 2024-09-18T08:18:21.111462+0000 mon.a (mon.0) 86 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:18:22.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[22844]: audit 2024-09-18T08:18:21.129894+0000 mon.a (mon.0) 87 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-18T08:18:22.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[22844]: audit 2024-09-18T08:18:21.129894+0000 mon.a (mon.0) 87 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-18T08:18:22.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[22844]: audit 2024-09-18T08:18:21.132225+0000 mon.a (mon.0) 88 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-18T08:18:22.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[22844]: audit 2024-09-18T08:18:21.132225+0000 mon.a (mon.0) 88 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-18T08:18:22.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[22844]: audit 2024-09-18T08:18:21.824100+0000 mgr.a (mgr.14152) 1 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-18T08:18:22.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[22844]: audit 2024-09-18T08:18:21.824100+0000 mgr.a (mgr.14152) 1 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-18T08:18:22.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[22844]: cluster 2024-09-18T08:18:21.824788+0000 mon.a (mon.0) 89 : cluster [DBG] mgrmap e11: a(active, since 1.00678s) 2024-09-18T08:18:22.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[22844]: cluster 2024-09-18T08:18:21.824788+0000 mon.a (mon.0) 89 : cluster [DBG] mgrmap e11: a(active, since 1.00678s) 2024-09-18T08:18:22.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[22844]: audit 2024-09-18T08:18:21.837734+0000 mgr.a (mgr.14152) 2 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-18T08:18:22.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:21 smithi070 bash[22844]: audit 2024-09-18T08:18:21.837734+0000 mgr.a (mgr.14152) 2 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-18T08:18:22.429 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout { 2024-09-18T08:18:22.429 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-18T08:18:22.429 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-18T08:18:22.429 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout } 2024-09-18T08:18:22.429 INFO:teuthology.orchestra.run.smithi070.stdout:mgr epoch 9 is available 2024-09-18T08:18:22.430 INFO:teuthology.orchestra.run.smithi070.stdout:Using certmgr to generate dashboard self-signed certificate... 2024-09-18T08:18:23.209 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: cephadm 2024-09-18T08:18:21.874395+0000 mgr.a (mgr.14152) 3 : cephadm [INF] [18/Sep/2024:08:18:21] ENGINE Bus STARTING 2024-09-18T08:18:23.209 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: cephadm 2024-09-18T08:18:21.874395+0000 mgr.a (mgr.14152) 3 : cephadm [INF] [18/Sep/2024:08:18:21] ENGINE Bus STARTING 2024-09-18T08:18:23.209 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: cephadm 2024-09-18T08:18:21.992507+0000 mgr.a (mgr.14152) 4 : cephadm [INF] [18/Sep/2024:08:18:21] ENGINE Serving on https://172.21.15.70:7150 2024-09-18T08:18:23.210 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: cephadm 2024-09-18T08:18:21.992507+0000 mgr.a (mgr.14152) 4 : cephadm [INF] [18/Sep/2024:08:18:21] ENGINE Serving on https://172.21.15.70:7150 2024-09-18T08:18:23.210 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: cephadm 2024-09-18T08:18:21.997339+0000 mgr.a (mgr.14152) 5 : cephadm [ERR] [18/Sep/2024:08:18:21] ENGINE Error in HTTPServer.serve 2024-09-18T08:18:23.210 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: Traceback (most recent call last): 2024-09-18T08:18:23.210 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-18T08:18:23.210 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: self._connections.run(self.expiration_interval) 2024-09-18T08:18:23.210 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-18T08:18:23.210 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: self._run(expiration_interval) 2024-09-18T08:18:23.210 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-18T08:18:23.210 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: new_conn = self._from_server_socket(self.server.socket) 2024-09-18T08:18:23.210 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-18T08:18:23.210 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-18T08:18:23.210 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-18T08:18:23.210 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: s = self.context.wrap_socket( 2024-09-18T08:18:23.211 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-18T08:18:23.211 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: return self.sslsocket_class._create( 2024-09-18T08:18:23.211 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-18T08:18:23.211 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: self.do_handshake() 2024-09-18T08:18:23.211 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-18T08:18:23.211 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: self._sslobj.do_handshake() 2024-09-18T08:18:23.211 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-18T08:18:23.211 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: cephadm 2024-09-18T08:18:21.997339+0000 mgr.a (mgr.14152) 5 : cephadm [ERR] [18/Sep/2024:08:18:21] ENGINE Error in HTTPServer.serve 2024-09-18T08:18:23.211 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: Traceback (most recent call last): 2024-09-18T08:18:23.211 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-18T08:18:23.211 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: self._connections.run(self.expiration_interval) 2024-09-18T08:18:23.211 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-18T08:18:23.211 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: self._run(expiration_interval) 2024-09-18T08:18:23.211 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-18T08:18:23.212 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: new_conn = self._from_server_socket(self.server.socket) 2024-09-18T08:18:23.212 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-18T08:18:23.212 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-18T08:18:23.212 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-18T08:18:23.212 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: s = self.context.wrap_socket( 2024-09-18T08:18:23.212 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-18T08:18:23.212 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: return self.sslsocket_class._create( 2024-09-18T08:18:23.212 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-18T08:18:23.212 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: self.do_handshake() 2024-09-18T08:18:23.212 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-18T08:18:23.212 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: self._sslobj.do_handshake() 2024-09-18T08:18:23.212 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-18T08:18:23.212 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: cephadm 2024-09-18T08:18:22.093650+0000 mgr.a (mgr.14152) 6 : cephadm [INF] [18/Sep/2024:08:18:22] ENGINE Serving on http://172.21.15.70:8765 2024-09-18T08:18:23.212 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: cephadm 2024-09-18T08:18:22.093650+0000 mgr.a (mgr.14152) 6 : cephadm [INF] [18/Sep/2024:08:18:22] ENGINE Serving on http://172.21.15.70:8765 2024-09-18T08:18:23.213 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: cephadm 2024-09-18T08:18:22.093753+0000 mgr.a (mgr.14152) 7 : cephadm [INF] [18/Sep/2024:08:18:22] ENGINE Bus STARTED 2024-09-18T08:18:23.213 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:22 smithi070 bash[22844]: cephadm 2024-09-18T08:18:22.093753+0000 mgr.a (mgr.14152) 7 : cephadm [INF] [18/Sep/2024:08:18:22] ENGINE Bus STARTED 2024-09-18T08:18:24.165 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:23 smithi070 bash[22844]: cluster 2024-09-18T08:18:22.883905+0000 mon.a (mon.0) 90 : cluster [DBG] mgrmap e12: a(active, since 2s) 2024-09-18T08:18:24.166 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:23 smithi070 bash[22844]: cluster 2024-09-18T08:18:22.883905+0000 mon.a (mon.0) 90 : cluster [DBG] mgrmap e12: a(active, since 2s) 2024-09-18T08:18:24.166 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:23 smithi070 bash[22844]: audit 2024-09-18T08:18:23.725668+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-18T08:18:24.166 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:23 smithi070 bash[22844]: audit 2024-09-18T08:18:23.725668+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-18T08:18:24.660 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIE+zCCAuOgAwIBAgIUQqIBGdSmet+1OapRVUHP/JrK0b8wDQYJKoZIhvcNAQEL\nBQAwFzEVMBMGA1UEAwwMY2VwaGFkbS1yb290MB4XDTI0MDkxODA4MTgyNFoXDTM0\nMDkxOTA4MTgyNFowFzEVMBMGA1UEAwwMMTcyLjIxLjE1LjcwMIICIjANBgkqhkiG\n9w0BAQEFAAOCAg8AMIICCgKCAgEAj5mSm/RF7g6tPZhVemwk9JwKt1XbV/wy8fIz\nbPyKYerEr3CTLgj9dUCH3/2GqrXc22nerZqIUARBdeja6alcbKBvG+J1Px8LXOSH\nafw48zZa0qHwQtpI9/KM+fGsTLAC0YngJBimJReSVFwsViVIlTu4fmfvXqURPqFT\nfg+NQA8r6MEwyEGpLtzgjRZn0YICaD1v//S34kM9PxsvBmkLCNQcS3CYvaOmZtYA\nuCvc1W6eA5EhANOlcLNc8h6wvCTr5ynYH/sxIwOlrLkRwQhTrgtibfbNHFfrrVDi\nGfjLQAoLws7Fniix57T8C7vNLX1tG1b5eLJVUpyDTm/FJ2fG9b5Mmc2Tr4nAZx2x\nok571jT2aOtnkPFH38gZ35lMNgIoAh1M4Yb+h1aofIZKDm5+TZZLL7pd/KXU5zVr\noOSMOXg9Xj7XnUgCn9bh3i+FXClSPm8CnmNe6c3Ah5UAMrd3UgTrFiQPi/veR4pC\nEdxAY/vzyGnaGF3V5wlKeNUh4mSD6XyBchWEkVraRrrxhcmUqaB+akKGCqqMqhra\n2zzFNWw+f4GDBwR7CCQhyYMTm/sOt2g+Grt9Wl3pAnrCf6KkIkKF9m8zeB4i6rbU\nvU2joeIH1owGK2ZcKSVOSyCbJK+sFGZCMsxX4WyoyIlJWhEhNIT6YKsPRSocxISD\n/uwBPwcCAwEAAaM/MD0wLQYDVR0RBCYwJIIJc21pdGhpMDcwghFkYXNoYm9hcmRf\nc2VydmVyc4cErBUPRjAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQCs\n6tQ6Qbh/Q1FtNrwBgJiRLbtHpbrEydd6yYZ+DhbgUF1JlAlZDmR8kF1mDI4+BTXT\n4GMaGwKkTQ6H9ju2I6l7Gl5ro3KumtIT2YKkTXiRLzJj3xxQuzJrsklG7oujBq6R\n8u6iOf7jSVV0TBiOaG1oWhzJCfoSj9InwyyriMxNnEHig2XazqII8uSgEsvnu5Hc\npnahLngD33Bc4u98D3j/XUU6JLF/HYTSBDdCUAMVlgp5OUpf84vxFIAAcFLeriJm\nkvMe7Coagc962LhNfcowHB87XILis59PKq6BSqOi0PA74Tj9ZXsTKKCZ0mkIYQNm\ngkH/izxVvrLNu8CJYOu/mlQOi2QjgO3XuBuff5m3Ng+QItldPQXPjLX9ao4m7ZWe\nUqqIDQE8SAC8QOWJl+1jjMRSAnaiI0Df/V39LpmH/3IT1dh+llwUDxFjY8UDHJWw\nVBhQh8tDm3aLmXUGt+fgdpa1/kSjPkgA5Wi3ySDlQ3eZ9c0dN+Xlkn783BGIkWq/\nsrbbeXSfZvJofHSld1RvQ7bOWnc0uWNA3/KUXrpnq6krdGD7z21E4f3CG1Fn69kW\n/05QD5d/fQi/znt5mSmHnYj3XqGooPxUrY2LqvYF0VHFx0oxmX4HpWoe/qmDnhBy\nur5lytoB1/n++JWEHncM5DMJDrL4HfCeBvSx+XpFZw==\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJKQIBAAKCAgEAj5mSm/RF7g6tPZhVemwk9JwKt1XbV/wy8fIzbPyKYerEr3CT\nLgj9dUCH3/2GqrXc22nerZqIUARBdeja6alcbKBvG+J1Px8LXOSHafw48zZa0qHw\nQtpI9/KM+fGsTLAC0YngJBimJReSVFwsViVIlTu4fmfvXqURPqFTfg+NQA8r6MEw\nyEGpLtzgjRZn0YICaD1v//S34kM9PxsvBmkLCNQcS3CYvaOmZtYAuCvc1W6eA5Eh\nANOlcLNc8h6wvCTr5ynYH/sxIwOlrLkRwQhTrgtibfbNHFfrrVDiGfjLQAoLws7F\nniix57T8C7vNLX1tG1b5eLJVUpyDTm/FJ2fG9b5Mmc2Tr4nAZx2xok571jT2aOtn\nkPFH38gZ35lMNgIoAh1M4Yb+h1aofIZKDm5+TZZLL7pd/KXU5zVroOSMOXg9Xj7X\nnUgCn9bh3i+FXClSPm8CnmNe6c3Ah5UAMrd3UgTrFiQPi/veR4pCEdxAY/vzyGna\nGF3V5wlKeNUh4mSD6XyBchWEkVraRrrxhcmUqaB+akKGCqqMqhra2zzFNWw+f4GD\nBwR7CCQhyYMTm/sOt2g+Grt9Wl3pAnrCf6KkIkKF9m8zeB4i6rbUvU2joeIH1owG\nK2ZcKSVOSyCbJK+sFGZCMsxX4WyoyIlJWhEhNIT6YKsPRSocxISD/uwBPwcCAwEA\nAQKCAgAYbzHGrqx9gurQicy1rZQmOS0LoCTYFlZW2/cLKvejDK8WCSpKEYaLPoVA\nRGP3RUXE4gFdeeeK8gZveUVSsBpFc5EkZga8TFyDHHG8Q4ovPEb9A0geIAV9hzyc\nxRYj4GlCXVsR2U3gDuA70YlLyUFN/2D3xViyOpUyGoJZ92x6A3rduo3B7YZLrpLY\n/wCAYkZllVqq62mkqvtPcyEvzoztniYIYirjTebhJbXuoKwNdyqVActjWCAVCrgc\njMNW6FNpvLGFU5k7U4IL31vZhEC040QG4RFqqr0z+wjWEYMILQ1uQv/WVydafW3L\n01No06hOmCCP/IxPJ8mh/ZvHBj4Qzl5I35gWwDzu7Vbihya7vPAjFvpcB2tW3dgC\naUuTmXclJcxs4Zq2qvOEG1OmFCTWs0E5RBJ54PoiaYjKU8dfzogxS1WIq0ewYHSI\nFWMq7HQCcuHhhybmXUSntBgKaAv2OGeFwGQ037zadEyY1psqf97lZxZDu5FkyisD\nCq2tU0OL3pmkJ6Nuwhu3u33gN2VrgUdbIANc6obghA3nW3XypqroVcyQynKELazf\nMafm9ctmm7GzSPVWoBdU4DGv1vhPuosUHtMorS5p/3ZZojlVi1xkFA2WWoxH9bjA\nJo8/XeYFHWCy/zSG2sBS5I73Udg/fJZaR06dHZn3oUWdTEVJgQKCAQEAxb3BZHoH\nU6vWpn1wWr9nbZGiHXCzkndKgg4YIET2C97OApYnQDJVxc2nhvRKtoE5g89qZqES\nUfKTLwQKTMsHMjvrFJHUrv8o5sReHImMZU2o7AKR83yODAbiq3KqhKMyHvWuKOjN\nYLyLh91zw5pMZTxlak91T0tR+Bp3/jwAD/pQUTrCkINJ000+eRD9H1+ma4AT+S0H\nyAeEx6IWbtnab96HQiHMgKhb6ZBuVgkMiFAqntr1nF9gDhjXZql8JghvnPYM/LK2\nAIOd/RPODmYEkVNBq6kDPNsp3gdJzd+iFUlho5+501baeY1z49mh0mV19LT5uA84\nQdfHi0gZ5gj6hwKCAQEAuehQHsptFELXR8S7jYcJz+EETXF2y0maffWkqeRBR/Wy\nTD2pgZBxZItgyJD4vdsbNaSn7KhQHjv80hfupBy18WNIf/Bct7ifZUO+uXVzgxNK\nOmpcyMMdOw/EL1XOE4fGxcSY0rbfBZxLh7wowrvaP3vdlirJNuVj5I2Usr90amUj\n51MQmK0/0541GSBwq0V8co4AWgaiICD2YWkm1+vhf0KkhTFlgyN/+cKiqXmcKWDd\n0jT9yCej/Dq13Jw7hSUCBbhYmulcGbeyyxPuiJ8+GTWcOUs0/eIjPWPFzRrN9GC5\nRVShN7t0uLOBnu50Q3jr9sOqkGd+kl05mKlfcRg3gQKCAQAL7uaj3KVijEU46OsF\n3vUr7JT+99UuapqJfLZCBEdg8gI2r78Qpbj9ZerNPyLfHq9M4BCIvwGvBleRh8nj\nVoFJq8oFBMP0B5v9SS5wxHA/kM835vPN4N9lpGi7dgEKXhrhOWxYNaxnQRmeimO5\nEy+3EE0CfGcU8POyaE6DfjV2wWFldYlWVUX4RXoWrkrIQOp3JFSQPgJxNNrzfTmj\nWOxQwfohqI6B2Scq0jeGY6do9oWL7qTR2gOe9irRnDrMxMePjl28RkCriUXYhwBx\naACwkHivFlUGsCc3qfLvRKawaCxHRpVdRqmKmlm7D2AvpUXYDa/gRrLbbl0xb5l4\ng2QzAoIBAQChqwUBwcdZ90Z/gvYW/Xfq7yNutV05K6jOIPAxTe33RhLnejgOFC6H\n4S0pPekSMZhX7fiaNUR3BnO1wFonHVCbulsx5zS6EDONPHx/i0QImJ3UbuqBLCwf\nUHarM1MiaNDS60R6+cy4dFK6l0ZbEkGZM35fOJYCxzk3aGgHibcTTyEJ6ZJlM0Ru\nIwbJ8wwH5UVz2Uk1AM+8YO3hiC/fVaGjqbCoo2xDvntsF3adKsRCt5ovUyXfCZnx\nnpzIXJTmFGjN0KI9FPKi6rzxHUQyS0kVYymYKW7L2fwLRticpNK10edMA2yvqrS2\namQuce9pPZ712PJa4aWQYsHToHb/QrABAoIBAQCbbdjW4lE7qgBUyOBzmbAsD96O\nFaOtap43WQTND8ETnNiUkB010ZDKxlUCO1fflTE1YKsLG0csbmEwFTK5EZZ0gOvZ\na2Jk/wR7zm+KsCrXUvryZVCiY78tpKhdGJ5xl0AMlMn+H6RMT+LRbmQ+hJvvRFuB\nm+1RrnmB+n9SImZEYvtNz8JSsJ3jrUMOT/Oo2qKhn8RMLKBaGEG2jDrSCXDfZxze\nU1/Fx1E1LhHDmNK/o3QdPnCQSJl9reAPu9YE1bKbJiNzvTGH9enuU+QsY+LSbX2B\nAeFL7BfcWLS8WjbSHRiL22v2HRd419JlrUkhIPL3MNATRODfsW5DavZYTiN+\n-----END RSA PRIVATE KEY-----\n"} 2024-09-18T08:18:26.535 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout SSL certificate updated 2024-09-18T08:18:27.324 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:27 smithi070 bash[22844]: audit 2024-09-18T08:18:26.028649+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-18T08:18:27.325 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:27 smithi070 bash[22844]: audit 2024-09-18T08:18:26.028649+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-18T08:18:27.325 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:27 smithi070 bash[22844]: audit 2024-09-18T08:18:26.033647+0000 mon.a (mon.0) 91 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:27.325 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:27 smithi070 bash[22844]: audit 2024-09-18T08:18:26.033647+0000 mon.a (mon.0) 91 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:28.475 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2024-09-18T08:18:28.475 INFO:teuthology.orchestra.run.smithi070.stdout:Creating initial admin user... 2024-09-18T08:18:29.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:28 smithi070 bash[22844]: audit 2024-09-18T08:18:27.884753+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-18T08:18:29.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:28 smithi070 bash[22844]: audit 2024-09-18T08:18:27.884753+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-18T08:18:29.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:28 smithi070 bash[22844]: audit 2024-09-18T08:18:27.890149+0000 mon.a (mon.0) 92 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:29.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:28 smithi070 bash[22844]: audit 2024-09-18T08:18:27.890149+0000 mon.a (mon.0) 92 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:30.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:30 smithi070 bash[22844]: audit 2024-09-18T08:18:29.136934+0000 mon.a (mon.0) 93 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:30.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:30 smithi070 bash[22844]: audit 2024-09-18T08:18:29.136934+0000 mon.a (mon.0) 93 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:30.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:30 smithi070 bash[22844]: audit 2024-09-18T08:18:29.825859+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-18T08:18:30.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:30 smithi070 bash[22844]: audit 2024-09-18T08:18:29.825859+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-18T08:18:30.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:30 smithi070 bash[22844]: audit 2024-09-18T08:18:30.056045+0000 mon.a (mon.0) 94 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:30.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:30 smithi070 bash[22844]: audit 2024-09-18T08:18:30.056045+0000 mon.a (mon.0) 94 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:30.615 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$M2r89G9PSuNHjGyWfJ7Yp.m5pWuXG2hjeLSdY/tw93hPuI07xYRMi", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726647510, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-18T08:18:30.615 INFO:teuthology.orchestra.run.smithi070.stdout:Fetching dashboard port number... 2024-09-18T08:18:31.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:31 smithi070 bash[22844]: audit 2024-09-18T08:18:30.306625+0000 mon.a (mon.0) 95 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:31.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:31 smithi070 bash[22844]: audit 2024-09-18T08:18:30.306625+0000 mon.a (mon.0) 95 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:32.365 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 8443 2024-09-18T08:18:32.366 INFO:teuthology.orchestra.run.smithi070.stdout:firewalld does not appear to be present 2024-09-18T08:18:32.366 INFO:teuthology.orchestra.run.smithi070.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-18T08:18:32.369 INFO:teuthology.orchestra.run.smithi070.stdout:Ceph Dashboard is now available at: 2024-09-18T08:18:32.369 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:18:32.369 INFO:teuthology.orchestra.run.smithi070.stdout: URL: https://smithi070.front.sepia.ceph.com:8443/ 2024-09-18T08:18:32.369 INFO:teuthology.orchestra.run.smithi070.stdout: User: admin 2024-09-18T08:18:32.369 INFO:teuthology.orchestra.run.smithi070.stdout: Password: zfoidpdqma 2024-09-18T08:18:32.369 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:18:32.370 INFO:teuthology.orchestra.run.smithi070.stdout:Saving cluster configuration to /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config directory 2024-09-18T08:18:32.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:32 smithi070 bash[22844]: audit 2024-09-18T08:18:31.921657+0000 mon.a (mon.0) 96 : audit [DBG] from='client.? 172.21.15.70:0/1040515747' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2024-09-18T08:18:32.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:32 smithi070 bash[22844]: audit 2024-09-18T08:18:31.921657+0000 mon.a (mon.0) 96 : audit [DBG] from='client.? 172.21.15.70:0/1040515747' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2024-09-18T08:18:34.406 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-18T08:18:34.407 INFO:teuthology.orchestra.run.smithi070.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-18T08:18:34.407 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:18:34.407 INFO:teuthology.orchestra.run.smithi070.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-18T08:18:34.407 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:18:34.407 INFO:teuthology.orchestra.run.smithi070.stdout:Or, if you are only running a single cluster on this host: 2024-09-18T08:18:34.407 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:18:34.408 INFO:teuthology.orchestra.run.smithi070.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-18T08:18:34.408 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:18:34.408 INFO:teuthology.orchestra.run.smithi070.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-18T08:18:34.408 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:18:34.408 INFO:teuthology.orchestra.run.smithi070.stdout: ceph telemetry on 2024-09-18T08:18:34.408 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:18:34.409 INFO:teuthology.orchestra.run.smithi070.stdout:For more information see: 2024-09-18T08:18:34.409 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:18:34.409 INFO:teuthology.orchestra.run.smithi070.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-18T08:18:34.409 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:18:34.409 INFO:teuthology.orchestra.run.smithi070.stdout:Bootstrap complete. 2024-09-18T08:18:34.466 INFO:tasks.cephadm:Fetching config... 2024-09-18T08:18:34.466 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-18T08:18:34.466 DEBUG:teuthology.orchestra.run.smithi070:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-18T08:18:34.473 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-18T08:18:34.474 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-18T08:18:34.474 DEBUG:teuthology.orchestra.run.smithi070:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-18T08:18:34.519 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-18T08:18:34.520 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-18T08:18:34.520 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd if=/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/keyring of=/dev/stdout 2024-09-18T08:18:34.572 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:34 smithi070 bash[22844]: cluster 2024-09-18T08:18:33.310192+0000 mon.a (mon.0) 97 : cluster [DBG] mgrmap e13: a(active, since 12s) 2024-09-18T08:18:34.572 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:34 smithi070 bash[22844]: cluster 2024-09-18T08:18:33.310192+0000 mon.a (mon.0) 97 : cluster [DBG] mgrmap e13: a(active, since 12s) 2024-09-18T08:18:34.572 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:34 smithi070 bash[22844]: audit 2024-09-18T08:18:33.878228+0000 mon.a (mon.0) 98 : audit [INF] from='client.? 172.21.15.70:0/3943619373' entity='client.admin' 2024-09-18T08:18:34.572 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:34 smithi070 bash[22844]: audit 2024-09-18T08:18:33.878228+0000 mon.a (mon.0) 98 : audit [INF] from='client.? 172.21.15.70:0/3943619373' entity='client.admin' 2024-09-18T08:18:34.575 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-18T08:18:34.575 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-18T08:18:34.575 DEBUG:teuthology.orchestra.run.smithi070:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-18T08:18:34.627 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-18T08:18:34.628 DEBUG:teuthology.orchestra.run.smithi070:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCtHJS9FmLw+Vnxmt+wMtYSL8Zl07IcyITlaOL65F8vIuD1Jqk56Se5qnaNsl/Jbl6ALa71uY5n4PDWazqQ50RmMHGdrotozUv0eroxKflfEjCQ00CMt0qhZjODt020deWDBCw1RskeGzd5Tzx+L66co/BhQ8Awv7kD/CXQ5BS0CAFmLefIJjbRHz4N5gsSmrH3eRIzLnu9u5tG/bt8Ihgyqd7QAaLwqSkF+570Z1MzkxjnSGs+xtdJgSCklWrJPvT+llCnr0BRy1CP26VjwTuTsh8hVf6zkTzP8llnI0FnA57hhv8dwYvccvyV/0e34T2OqFZ0+FgLoVcu0zVynoIYe1R+mVI8n3coBwrSY82jo8qFzyjukH6b+LCZxKAesowbaaZS8SK7KlHStqY7t9I3ZGDROT0hWd7AYcJpsQxYlXVZ6gbYmFw0AQspL5uSUQi/UfT1T6KO1J67Onv8+/YXDuFncIu5kiWrNfm+JO/Si/EUoS0DpvxwxG3IlpzMPq0= ceph-1481c73c-7596-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-18T08:18:34.691 INFO:teuthology.orchestra.run.smithi070.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCtHJS9FmLw+Vnxmt+wMtYSL8Zl07IcyITlaOL65F8vIuD1Jqk56Se5qnaNsl/Jbl6ALa71uY5n4PDWazqQ50RmMHGdrotozUv0eroxKflfEjCQ00CMt0qhZjODt020deWDBCw1RskeGzd5Tzx+L66co/BhQ8Awv7kD/CXQ5BS0CAFmLefIJjbRHz4N5gsSmrH3eRIzLnu9u5tG/bt8Ihgyqd7QAaLwqSkF+570Z1MzkxjnSGs+xtdJgSCklWrJPvT+llCnr0BRy1CP26VjwTuTsh8hVf6zkTzP8llnI0FnA57hhv8dwYvccvyV/0e34T2OqFZ0+FgLoVcu0zVynoIYe1R+mVI8n3coBwrSY82jo8qFzyjukH6b+LCZxKAesowbaaZS8SK7KlHStqY7t9I3ZGDROT0hWd7AYcJpsQxYlXVZ6gbYmFw0AQspL5uSUQi/UfT1T6KO1J67Onv8+/YXDuFncIu5kiWrNfm+JO/Si/EUoS0DpvxwxG3IlpzMPq0= ceph-1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:18:34.700 DEBUG:teuthology.orchestra.run.smithi086:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCtHJS9FmLw+Vnxmt+wMtYSL8Zl07IcyITlaOL65F8vIuD1Jqk56Se5qnaNsl/Jbl6ALa71uY5n4PDWazqQ50RmMHGdrotozUv0eroxKflfEjCQ00CMt0qhZjODt020deWDBCw1RskeGzd5Tzx+L66co/BhQ8Awv7kD/CXQ5BS0CAFmLefIJjbRHz4N5gsSmrH3eRIzLnu9u5tG/bt8Ihgyqd7QAaLwqSkF+570Z1MzkxjnSGs+xtdJgSCklWrJPvT+llCnr0BRy1CP26VjwTuTsh8hVf6zkTzP8llnI0FnA57hhv8dwYvccvyV/0e34T2OqFZ0+FgLoVcu0zVynoIYe1R+mVI8n3coBwrSY82jo8qFzyjukH6b+LCZxKAesowbaaZS8SK7KlHStqY7t9I3ZGDROT0hWd7AYcJpsQxYlXVZ6gbYmFw0AQspL5uSUQi/UfT1T6KO1J67Onv8+/YXDuFncIu5kiWrNfm+JO/Si/EUoS0DpvxwxG3IlpzMPq0= ceph-1481c73c-7596-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-18T08:18:34.722 INFO:teuthology.orchestra.run.smithi086.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCtHJS9FmLw+Vnxmt+wMtYSL8Zl07IcyITlaOL65F8vIuD1Jqk56Se5qnaNsl/Jbl6ALa71uY5n4PDWazqQ50RmMHGdrotozUv0eroxKflfEjCQ00CMt0qhZjODt020deWDBCw1RskeGzd5Tzx+L66co/BhQ8Awv7kD/CXQ5BS0CAFmLefIJjbRHz4N5gsSmrH3eRIzLnu9u5tG/bt8Ihgyqd7QAaLwqSkF+570Z1MzkxjnSGs+xtdJgSCklWrJPvT+llCnr0BRy1CP26VjwTuTsh8hVf6zkTzP8llnI0FnA57hhv8dwYvccvyV/0e34T2OqFZ0+FgLoVcu0zVynoIYe1R+mVI8n3coBwrSY82jo8qFzyjukH6b+LCZxKAesowbaaZS8SK7KlHStqY7t9I3ZGDROT0hWd7AYcJpsQxYlXVZ6gbYmFw0AQspL5uSUQi/UfT1T6KO1J67Onv8+/YXDuFncIu5kiWrNfm+JO/Si/EUoS0DpvxwxG3IlpzMPq0= ceph-1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:18:34.731 DEBUG:teuthology.orchestra.run.smithi172:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCtHJS9FmLw+Vnxmt+wMtYSL8Zl07IcyITlaOL65F8vIuD1Jqk56Se5qnaNsl/Jbl6ALa71uY5n4PDWazqQ50RmMHGdrotozUv0eroxKflfEjCQ00CMt0qhZjODt020deWDBCw1RskeGzd5Tzx+L66co/BhQ8Awv7kD/CXQ5BS0CAFmLefIJjbRHz4N5gsSmrH3eRIzLnu9u5tG/bt8Ihgyqd7QAaLwqSkF+570Z1MzkxjnSGs+xtdJgSCklWrJPvT+llCnr0BRy1CP26VjwTuTsh8hVf6zkTzP8llnI0FnA57hhv8dwYvccvyV/0e34T2OqFZ0+FgLoVcu0zVynoIYe1R+mVI8n3coBwrSY82jo8qFzyjukH6b+LCZxKAesowbaaZS8SK7KlHStqY7t9I3ZGDROT0hWd7AYcJpsQxYlXVZ6gbYmFw0AQspL5uSUQi/UfT1T6KO1J67Onv8+/YXDuFncIu5kiWrNfm+JO/Si/EUoS0DpvxwxG3IlpzMPq0= ceph-1481c73c-7596-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-18T08:18:34.757 INFO:teuthology.orchestra.run.smithi172.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCtHJS9FmLw+Vnxmt+wMtYSL8Zl07IcyITlaOL65F8vIuD1Jqk56Se5qnaNsl/Jbl6ALa71uY5n4PDWazqQ50RmMHGdrotozUv0eroxKflfEjCQ00CMt0qhZjODt020deWDBCw1RskeGzd5Tzx+L66co/BhQ8Awv7kD/CXQ5BS0CAFmLefIJjbRHz4N5gsSmrH3eRIzLnu9u5tG/bt8Ihgyqd7QAaLwqSkF+570Z1MzkxjnSGs+xtdJgSCklWrJPvT+llCnr0BRy1CP26VjwTuTsh8hVf6zkTzP8llnI0FnA57hhv8dwYvccvyV/0e34T2OqFZ0+FgLoVcu0zVynoIYe1R+mVI8n3coBwrSY82jo8qFzyjukH6b+LCZxKAesowbaaZS8SK7KlHStqY7t9I3ZGDROT0hWd7AYcJpsQxYlXVZ6gbYmFw0AQspL5uSUQi/UfT1T6KO1J67Onv8+/YXDuFncIu5kiWrNfm+JO/Si/EUoS0DpvxwxG3IlpzMPq0= ceph-1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:18:34.766 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-18T08:18:39.816 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:18:40.705 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:40 smithi070 bash[22844]: audit 2024-09-18T08:18:39.436610+0000 mon.a (mon.0) 99 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:40.705 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:40 smithi070 bash[22844]: audit 2024-09-18T08:18:39.436610+0000 mon.a (mon.0) 99 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:40.705 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:40 smithi070 bash[22844]: audit 2024-09-18T08:18:39.441962+0000 mon.a (mon.0) 100 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:40.705 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:40 smithi070 bash[22844]: audit 2024-09-18T08:18:39.441962+0000 mon.a (mon.0) 100 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:40.706 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:40 smithi070 bash[22844]: audit 2024-09-18T08:18:39.443829+0000 mon.a (mon.0) 101 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi070", "name": "osd_memory_target"} : dispatch 2024-09-18T08:18:40.706 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:40 smithi070 bash[22844]: audit 2024-09-18T08:18:39.443829+0000 mon.a (mon.0) 101 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi070", "name": "osd_memory_target"} : dispatch 2024-09-18T08:18:40.706 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:40 smithi070 bash[22844]: audit 2024-09-18T08:18:39.450864+0000 mon.a (mon.0) 102 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:40.706 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:40 smithi070 bash[22844]: audit 2024-09-18T08:18:39.450864+0000 mon.a (mon.0) 102 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:40.706 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:40 smithi070 bash[22844]: audit 2024-09-18T08:18:39.468541+0000 mon.a (mon.0) 103 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:18:40.706 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:40 smithi070 bash[22844]: audit 2024-09-18T08:18:39.468541+0000 mon.a (mon.0) 103 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:18:40.706 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:40 smithi070 bash[22844]: audit 2024-09-18T08:18:39.475815+0000 mon.a (mon.0) 104 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:40.706 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:40 smithi070 bash[22844]: audit 2024-09-18T08:18:39.475815+0000 mon.a (mon.0) 104 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:41.617 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-18T08:18:41.617 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-18T08:18:41.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:41 smithi070 bash[22844]: cluster 2024-09-18T08:18:40.832743+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-18T08:18:41.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:41 smithi070 bash[22844]: cluster 2024-09-18T08:18:40.832743+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-18T08:18:41.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:41 smithi070 bash[22844]: audit 2024-09-18T08:18:41.034728+0000 mon.a (mon.0) 105 : audit [INF] from='client.? 172.21.15.70:0/2432354245' entity='client.admin' 2024-09-18T08:18:41.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:41 smithi070 bash[22844]: audit 2024-09-18T08:18:41.034728+0000 mon.a (mon.0) 105 : audit [INF] from='client.? 172.21.15.70:0/2432354245' entity='client.admin' 2024-09-18T08:18:41.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:41 smithi070 bash[22844]: audit 2024-09-18T08:18:41.048560+0000 mon.a (mon.0) 106 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:18:41.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:41 smithi070 bash[22844]: audit 2024-09-18T08:18:41.048560+0000 mon.a (mon.0) 106 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:18:41.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:41 smithi070 bash[22844]: audit 2024-09-18T08:18:41.053272+0000 mon.a (mon.0) 107 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:41.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:41 smithi070 bash[22844]: audit 2024-09-18T08:18:41.053272+0000 mon.a (mon.0) 107 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:43.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:42 smithi070 bash[22844]: cluster 2024-09-18T08:18:42.833107+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-18T08:18:43.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:42 smithi070 bash[22844]: cluster 2024-09-18T08:18:42.833107+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-18T08:18:45.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:44 smithi070 bash[22844]: cluster 2024-09-18T08:18:44.833558+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-18T08:18:45.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:44 smithi070 bash[22844]: cluster 2024-09-18T08:18:44.833558+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-18T08:18:46.345 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:18:47.204 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:46 smithi070 bash[22844]: cluster 2024-09-18T08:18:46.834024+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-18T08:18:47.204 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:46 smithi070 bash[22844]: cluster 2024-09-18T08:18:46.834024+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-18T08:18:48.202 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi086 2024-09-18T08:18:48.202 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-18T08:18:48.202 DEBUG:teuthology.orchestra.run.smithi086:> dd of=/etc/ceph/ceph.conf 2024-09-18T08:18:48.208 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-18T08:18:48.208 DEBUG:teuthology.orchestra.run.smithi086:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-18T08:18:48.254 INFO:tasks.cephadm:Adding host smithi086 to orchestrator... 2024-09-18T08:18:48.254 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph orch host add smithi086 2024-09-18T08:18:48.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: audit 2024-09-18T08:18:47.559344+0000 mgr.a (mgr.14152) 16 : 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-18T08:18:48.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: audit 2024-09-18T08:18:47.559344+0000 mgr.a (mgr.14152) 16 : 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-18T08:18:48.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: audit 2024-09-18T08:18:47.564318+0000 mon.a (mon.0) 108 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:48.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: audit 2024-09-18T08:18:47.564318+0000 mon.a (mon.0) 108 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:48.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: audit 2024-09-18T08:18:47.565251+0000 mon.a (mon.0) 109 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:18:48.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: audit 2024-09-18T08:18:47.565251+0000 mon.a (mon.0) 109 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:18:48.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: audit 2024-09-18T08:18:47.567486+0000 mon.a (mon.0) 110 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:18:48.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: audit 2024-09-18T08:18:47.567486+0000 mon.a (mon.0) 110 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:18:48.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: audit 2024-09-18T08:18:47.568386+0000 mon.a (mon.0) 111 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:18:48.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: audit 2024-09-18T08:18:47.568386+0000 mon.a (mon.0) 111 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:18:48.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: cephadm 2024-09-18T08:18:47.569751+0000 mgr.a (mgr.14152) 17 : cephadm [INF] Updating smithi070:/etc/ceph/ceph.conf 2024-09-18T08:18:48.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: cephadm 2024-09-18T08:18:47.569751+0000 mgr.a (mgr.14152) 17 : cephadm [INF] Updating smithi070:/etc/ceph/ceph.conf 2024-09-18T08:18:48.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: cephadm 2024-09-18T08:18:47.629912+0000 mgr.a (mgr.14152) 18 : cephadm [INF] Updating smithi070:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:18:48.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: cephadm 2024-09-18T08:18:47.629912+0000 mgr.a (mgr.14152) 18 : cephadm [INF] Updating smithi070:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:18:48.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: cephadm 2024-09-18T08:18:47.682336+0000 mgr.a (mgr.14152) 19 : cephadm [INF] Updating smithi070:/etc/ceph/ceph.client.admin.keyring 2024-09-18T08:18:48.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: cephadm 2024-09-18T08:18:47.682336+0000 mgr.a (mgr.14152) 19 : cephadm [INF] Updating smithi070:/etc/ceph/ceph.client.admin.keyring 2024-09-18T08:18:48.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: cephadm 2024-09-18T08:18:47.734474+0000 mgr.a (mgr.14152) 20 : cephadm [INF] Updating smithi070:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T08:18:48.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: cephadm 2024-09-18T08:18:47.734474+0000 mgr.a (mgr.14152) 20 : cephadm [INF] Updating smithi070:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T08:18:48.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: audit 2024-09-18T08:18:47.792143+0000 mon.a (mon.0) 112 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:48.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: audit 2024-09-18T08:18:47.792143+0000 mon.a (mon.0) 112 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:48.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: audit 2024-09-18T08:18:47.794751+0000 mon.a (mon.0) 113 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:48.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: audit 2024-09-18T08:18:47.794751+0000 mon.a (mon.0) 113 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:48.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: audit 2024-09-18T08:18:47.797305+0000 mon.a (mon.0) 114 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:48.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:48 smithi070 bash[22844]: audit 2024-09-18T08:18:47.797305+0000 mon.a (mon.0) 114 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:49.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:49 smithi070 bash[22844]: cluster 2024-09-18T08:18:48.834451+0000 mgr.a (mgr.14152) 21 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:18:49.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:49 smithi070 bash[22844]: cluster 2024-09-18T08:18:48.834451+0000 mgr.a (mgr.14152) 21 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:18:51.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:50 smithi070 bash[22844]: cluster 2024-09-18T08:18:50.834859+0000 mgr.a (mgr.14152) 22 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:18:51.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:50 smithi070 bash[22844]: cluster 2024-09-18T08:18:50.834859+0000 mgr.a (mgr.14152) 22 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:18:52.983 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:18:53.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:52 smithi070 bash[22844]: cluster 2024-09-18T08:18:52.835261+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-18T08:18:53.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:52 smithi070 bash[22844]: cluster 2024-09-18T08:18:52.835261+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-18T08:18:55.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:54 smithi070 bash[22844]: audit 2024-09-18T08:18:54.287794+0000 mgr.a (mgr.14152) 24 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi086", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:18:55.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:54 smithi070 bash[22844]: audit 2024-09-18T08:18:54.287794+0000 mgr.a (mgr.14152) 24 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi086", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:18:55.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:54 smithi070 bash[22844]: cluster 2024-09-18T08:18:54.835659+0000 mgr.a (mgr.14152) 25 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:18:55.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:54 smithi070 bash[22844]: cluster 2024-09-18T08:18:54.835659+0000 mgr.a (mgr.14152) 25 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:18:56.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:55 smithi070 bash[22844]: cephadm 2024-09-18T08:18:55.352858+0000 mgr.a (mgr.14152) 26 : cephadm [INF] Deploying cephadm binary to smithi086 2024-09-18T08:18:56.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:55 smithi070 bash[22844]: cephadm 2024-09-18T08:18:55.352858+0000 mgr.a (mgr.14152) 26 : cephadm [INF] Deploying cephadm binary to smithi086 2024-09-18T08:18:57.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:56 smithi070 bash[22844]: cluster 2024-09-18T08:18:56.836037+0000 mgr.a (mgr.14152) 27 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:18:57.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:56 smithi070 bash[22844]: cluster 2024-09-18T08:18:56.836037+0000 mgr.a (mgr.14152) 27 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:18:58.600 INFO:teuthology.orchestra.run.smithi070.stdout:Added host 'smithi086' with addr '172.21.15.86' 2024-09-18T08:18:59.199 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-18T08:18:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:59 smithi070 bash[22844]: audit 2024-09-18T08:18:58.598593+0000 mon.a (mon.0) 115 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:59 smithi070 bash[22844]: audit 2024-09-18T08:18:58.598593+0000 mon.a (mon.0) 115 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:59 smithi070 bash[22844]: cephadm 2024-09-18T08:18:58.599606+0000 mgr.a (mgr.14152) 28 : cephadm [INF] Added host smithi086 2024-09-18T08:18:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:59 smithi070 bash[22844]: cephadm 2024-09-18T08:18:58.599606+0000 mgr.a (mgr.14152) 28 : cephadm [INF] Added host smithi086 2024-09-18T08:18:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:59 smithi070 bash[22844]: audit 2024-09-18T08:18:58.600379+0000 mon.a (mon.0) 116 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:18:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:59 smithi070 bash[22844]: audit 2024-09-18T08:18:58.600379+0000 mon.a (mon.0) 116 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:18:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:59 smithi070 bash[22844]: cluster 2024-09-18T08:18:58.836471+0000 mgr.a (mgr.14152) 29 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:18:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:59 smithi070 bash[22844]: cluster 2024-09-18T08:18:58.836471+0000 mgr.a (mgr.14152) 29 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:18:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:59 smithi070 bash[22844]: audit 2024-09-18T08:18:59.092957+0000 mon.a (mon.0) 117 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:18:59.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:18:59 smithi070 bash[22844]: audit 2024-09-18T08:18:59.092957+0000 mon.a (mon.0) 117 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:01.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:01 smithi070 bash[22844]: audit 2024-09-18T08:19:00.595735+0000 mon.a (mon.0) 118 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:01.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:01 smithi070 bash[22844]: audit 2024-09-18T08:19:00.595735+0000 mon.a (mon.0) 118 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:01.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:01 smithi070 bash[22844]: cluster 2024-09-18T08:19:00.836935+0000 mgr.a (mgr.14152) 30 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:01.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:01 smithi070 bash[22844]: cluster 2024-09-18T08:19:00.836935+0000 mgr.a (mgr.14152) 30 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:03.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:02 smithi070 bash[22844]: audit 2024-09-18T08:19:01.759481+0000 mon.a (mon.0) 119 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:03.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:02 smithi070 bash[22844]: audit 2024-09-18T08:19:01.759481+0000 mon.a (mon.0) 119 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:03.925 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:19:04.026 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:03 smithi070 bash[22844]: cluster 2024-09-18T08:19:02.837374+0000 mgr.a (mgr.14152) 31 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:04.026 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:03 smithi070 bash[22844]: cluster 2024-09-18T08:19:02.837374+0000 mgr.a (mgr.14152) 31 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:05.218 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:19:05.218 INFO:teuthology.orchestra.run.smithi070.stdout:[{"addr": "172.21.15.70", "hostname": "smithi070", "labels": [], "status": ""}, {"addr": "172.21.15.86", "hostname": "smithi086", "labels": [], "status": ""}] 2024-09-18T08:19:05.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:04 smithi070 bash[22844]: cluster 2024-09-18T08:19:04.837834+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-18T08:19:05.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:04 smithi070 bash[22844]: cluster 2024-09-18T08:19:04.837834+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-18T08:19:05.754 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi172 2024-09-18T08:19:05.755 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-09-18T08:19:05.755 DEBUG:teuthology.orchestra.run.smithi172:> dd of=/etc/ceph/ceph.conf 2024-09-18T08:19:05.761 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-09-18T08:19:05.762 DEBUG:teuthology.orchestra.run.smithi172:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-18T08:19:05.808 INFO:tasks.cephadm:Adding host smithi172 to orchestrator... 2024-09-18T08:19:05.809 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph orch host add smithi172 2024-09-18T08:19:06.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:05 smithi070 bash[22844]: audit 2024-09-18T08:19:05.216661+0000 mgr.a (mgr.14152) 33 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:19:06.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:05 smithi070 bash[22844]: audit 2024-09-18T08:19:05.216661+0000 mgr.a (mgr.14152) 33 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:19:07.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:06 smithi070 bash[22844]: cluster 2024-09-18T08:19:06.838308+0000 mgr.a (mgr.14152) 34 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:07.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:06 smithi070 bash[22844]: cluster 2024-09-18T08:19:06.838308+0000 mgr.a (mgr.14152) 34 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:08.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: audit 2024-09-18T08:19:07.540250+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:08.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: audit 2024-09-18T08:19:07.540250+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:08.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: audit 2024-09-18T08:19:07.545217+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:08.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: audit 2024-09-18T08:19:07.545217+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:08.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: audit 2024-09-18T08:19:07.550923+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:08.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: audit 2024-09-18T08:19:07.550923+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:08.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: audit 2024-09-18T08:19:07.555819+0000 mon.a (mon.0) 123 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:08.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: audit 2024-09-18T08:19:07.555819+0000 mon.a (mon.0) 123 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:08.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: audit 2024-09-18T08:19:07.557478+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi086", "name": "osd_memory_target"} : dispatch 2024-09-18T08:19:08.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: audit 2024-09-18T08:19:07.557478+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi086", "name": "osd_memory_target"} : dispatch 2024-09-18T08:19:08.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: audit 2024-09-18T08:19:07.559785+0000 mon.a (mon.0) 125 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:08.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: audit 2024-09-18T08:19:07.559785+0000 mon.a (mon.0) 125 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:08.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: audit 2024-09-18T08:19:07.561414+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:19:08.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: audit 2024-09-18T08:19:07.561414+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:19:08.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: cephadm 2024-09-18T08:19:07.563839+0000 mgr.a (mgr.14152) 35 : cephadm [INF] Updating smithi086:/etc/ceph/ceph.conf 2024-09-18T08:19:08.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: cephadm 2024-09-18T08:19:07.563839+0000 mgr.a (mgr.14152) 35 : cephadm [INF] Updating smithi086:/etc/ceph/ceph.conf 2024-09-18T08:19:08.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: cephadm 2024-09-18T08:19:07.678894+0000 mgr.a (mgr.14152) 36 : cephadm [INF] Updating smithi086:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:08.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: cephadm 2024-09-18T08:19:07.678894+0000 mgr.a (mgr.14152) 36 : cephadm [INF] Updating smithi086:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:08.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: cephadm 2024-09-18T08:19:07.778521+0000 mgr.a (mgr.14152) 37 : cephadm [INF] Updating smithi086:/etc/ceph/ceph.client.admin.keyring 2024-09-18T08:19:08.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: cephadm 2024-09-18T08:19:07.778521+0000 mgr.a (mgr.14152) 37 : cephadm [INF] Updating smithi086:/etc/ceph/ceph.client.admin.keyring 2024-09-18T08:19:08.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: audit 2024-09-18T08:19:07.960037+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:08.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: audit 2024-09-18T08:19:07.960037+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:08.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: audit 2024-09-18T08:19:07.965185+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:08.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: audit 2024-09-18T08:19:07.965185+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:08.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: audit 2024-09-18T08:19:07.971020+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:08.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:08 smithi070 bash[22844]: audit 2024-09-18T08:19:07.971020+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:09.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:09 smithi070 bash[22844]: cephadm 2024-09-18T08:19:07.869022+0000 mgr.a (mgr.14152) 38 : cephadm [INF] Updating smithi086:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T08:19:09.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:09 smithi070 bash[22844]: cephadm 2024-09-18T08:19:07.869022+0000 mgr.a (mgr.14152) 38 : cephadm [INF] Updating smithi086:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T08:19:09.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:09 smithi070 bash[22844]: cluster 2024-09-18T08:19:08.838748+0000 mgr.a (mgr.14152) 39 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:09.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:09 smithi070 bash[22844]: cluster 2024-09-18T08:19:08.838748+0000 mgr.a (mgr.14152) 39 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:10.539 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:19:10.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:10 smithi070 bash[22844]: cluster 2024-09-18T08:19:10.839145+0000 mgr.a (mgr.14152) 40 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:10.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:10 smithi070 bash[22844]: cluster 2024-09-18T08:19:10.839145+0000 mgr.a (mgr.14152) 40 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:12.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:11 smithi070 bash[22844]: audit 2024-09-18T08:19:11.764019+0000 mgr.a (mgr.14152) 41 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi172", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:19:12.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:11 smithi070 bash[22844]: audit 2024-09-18T08:19:11.764019+0000 mgr.a (mgr.14152) 41 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi172", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:19:13.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:12 smithi070 bash[22844]: cephadm 2024-09-18T08:19:12.740638+0000 mgr.a (mgr.14152) 42 : cephadm [INF] Deploying cephadm binary to smithi172 2024-09-18T08:19:13.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:12 smithi070 bash[22844]: cephadm 2024-09-18T08:19:12.740638+0000 mgr.a (mgr.14152) 42 : cephadm [INF] Deploying cephadm binary to smithi172 2024-09-18T08:19:13.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:12 smithi070 bash[22844]: cluster 2024-09-18T08:19:12.839521+0000 mgr.a (mgr.14152) 43 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:13.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:12 smithi070 bash[22844]: cluster 2024-09-18T08:19:12.839521+0000 mgr.a (mgr.14152) 43 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:15.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:14 smithi070 bash[22844]: cluster 2024-09-18T08:19:14.839896+0000 mgr.a (mgr.14152) 44 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:15.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:14 smithi070 bash[22844]: cluster 2024-09-18T08:19:14.839896+0000 mgr.a (mgr.14152) 44 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:15.868 INFO:teuthology.orchestra.run.smithi070.stdout:Added host 'smithi172' with addr '172.21.15.172' 2024-09-18T08:19:16.476 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-18T08:19:17.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:16 smithi070 bash[22844]: audit 2024-09-18T08:19:15.866570+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:17.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:16 smithi070 bash[22844]: audit 2024-09-18T08:19:15.866570+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:17.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:16 smithi070 bash[22844]: cephadm 2024-09-18T08:19:15.867377+0000 mgr.a (mgr.14152) 45 : cephadm [INF] Added host smithi172 2024-09-18T08:19:17.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:16 smithi070 bash[22844]: cephadm 2024-09-18T08:19:15.867377+0000 mgr.a (mgr.14152) 45 : cephadm [INF] Added host smithi172 2024-09-18T08:19:17.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:16 smithi070 bash[22844]: audit 2024-09-18T08:19:15.868184+0000 mon.a (mon.0) 131 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:19:17.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:16 smithi070 bash[22844]: audit 2024-09-18T08:19:15.868184+0000 mon.a (mon.0) 131 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:19:17.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:16 smithi070 bash[22844]: audit 2024-09-18T08:19:16.392021+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:17.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:16 smithi070 bash[22844]: audit 2024-09-18T08:19:16.392021+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:17.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:16 smithi070 bash[22844]: cluster 2024-09-18T08:19:16.840292+0000 mgr.a (mgr.14152) 46 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:17.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:16 smithi070 bash[22844]: cluster 2024-09-18T08:19:16.840292+0000 mgr.a (mgr.14152) 46 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:19.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:18 smithi070 bash[22844]: audit 2024-09-18T08:19:17.905157+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:19.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:18 smithi070 bash[22844]: audit 2024-09-18T08:19:17.905157+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:19.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:18 smithi070 bash[22844]: cluster 2024-09-18T08:19:18.840676+0000 mgr.a (mgr.14152) 47 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:19.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:18 smithi070 bash[22844]: cluster 2024-09-18T08:19:18.840676+0000 mgr.a (mgr.14152) 47 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:20.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:20 smithi070 bash[22844]: audit 2024-09-18T08:19:19.282515+0000 mon.a (mon.0) 134 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:20.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:20 smithi070 bash[22844]: audit 2024-09-18T08:19:19.282515+0000 mon.a (mon.0) 134 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:21.201 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:19:21.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:21 smithi070 bash[22844]: cluster 2024-09-18T08:19:20.841178+0000 mgr.a (mgr.14152) 48 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:21.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:21 smithi070 bash[22844]: cluster 2024-09-18T08:19:20.841178+0000 mgr.a (mgr.14152) 48 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:22.503 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:19:22.503 INFO:teuthology.orchestra.run.smithi070.stdout:[{"addr": "172.21.15.70", "hostname": "smithi070", "labels": [], "status": ""}, {"addr": "172.21.15.86", "hostname": "smithi086", "labels": [], "status": ""}, {"addr": "172.21.15.172", "hostname": "smithi172", "labels": [], "status": ""}] 2024-09-18T08:19:23.125 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-18T08:19:23.126 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph osd crush tunables default 2024-09-18T08:19:23.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:22 smithi070 bash[22844]: audit 2024-09-18T08:19:22.502376+0000 mgr.a (mgr.14152) 49 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:19:23.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:22 smithi070 bash[22844]: audit 2024-09-18T08:19:22.502376+0000 mgr.a (mgr.14152) 49 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:19:23.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:22 smithi070 bash[22844]: cluster 2024-09-18T08:19:22.841704+0000 mgr.a (mgr.14152) 50 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:23.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:22 smithi070 bash[22844]: cluster 2024-09-18T08:19:22.841704+0000 mgr.a (mgr.14152) 50 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:25.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:24 smithi070 bash[22844]: cluster 2024-09-18T08:19:24.842204+0000 mgr.a (mgr.14152) 51 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:25.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:24 smithi070 bash[22844]: cluster 2024-09-18T08:19:24.842204+0000 mgr.a (mgr.14152) 51 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:26.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: audit 2024-09-18T08:19:24.928226+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:26.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: audit 2024-09-18T08:19:24.928226+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:26.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: audit 2024-09-18T08:19:24.933188+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:26.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: audit 2024-09-18T08:19:24.933188+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:26.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: audit 2024-09-18T08:19:24.938760+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:26.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: audit 2024-09-18T08:19:24.938760+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:26.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: audit 2024-09-18T08:19:24.943667+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:26.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: audit 2024-09-18T08:19:24.943667+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:26.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: audit 2024-09-18T08:19:24.945206+0000 mon.a (mon.0) 139 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi172", "name": "osd_memory_target"} : dispatch 2024-09-18T08:19:26.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: audit 2024-09-18T08:19:24.945206+0000 mon.a (mon.0) 139 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi172", "name": "osd_memory_target"} : dispatch 2024-09-18T08:19:26.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: audit 2024-09-18T08:19:24.947151+0000 mon.a (mon.0) 140 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:26.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: audit 2024-09-18T08:19:24.947151+0000 mon.a (mon.0) 140 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:26.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: audit 2024-09-18T08:19:24.948702+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:19:26.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: audit 2024-09-18T08:19:24.948702+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:19:26.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: cephadm 2024-09-18T08:19:24.951159+0000 mgr.a (mgr.14152) 52 : cephadm [INF] Updating smithi172:/etc/ceph/ceph.conf 2024-09-18T08:19:26.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: cephadm 2024-09-18T08:19:24.951159+0000 mgr.a (mgr.14152) 52 : cephadm [INF] Updating smithi172:/etc/ceph/ceph.conf 2024-09-18T08:19:26.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: cephadm 2024-09-18T08:19:25.065417+0000 mgr.a (mgr.14152) 53 : cephadm [INF] Updating smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:26.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: cephadm 2024-09-18T08:19:25.065417+0000 mgr.a (mgr.14152) 53 : cephadm [INF] Updating smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:26.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: cephadm 2024-09-18T08:19:25.163087+0000 mgr.a (mgr.14152) 54 : cephadm [INF] Updating smithi172:/etc/ceph/ceph.client.admin.keyring 2024-09-18T08:19:26.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: cephadm 2024-09-18T08:19:25.163087+0000 mgr.a (mgr.14152) 54 : cephadm [INF] Updating smithi172:/etc/ceph/ceph.client.admin.keyring 2024-09-18T08:19:26.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: cephadm 2024-09-18T08:19:25.253240+0000 mgr.a (mgr.14152) 55 : cephadm [INF] Updating smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T08:19:26.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: cephadm 2024-09-18T08:19:25.253240+0000 mgr.a (mgr.14152) 55 : cephadm [INF] Updating smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T08:19:26.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: audit 2024-09-18T08:19:25.345233+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:26.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: audit 2024-09-18T08:19:25.345233+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:26.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: audit 2024-09-18T08:19:25.348970+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:26.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: audit 2024-09-18T08:19:25.348970+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:26.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: audit 2024-09-18T08:19:25.361706+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:26.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:25 smithi070 bash[22844]: audit 2024-09-18T08:19:25.361706+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:27.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:26 smithi070 bash[22844]: cluster 2024-09-18T08:19:26.842652+0000 mgr.a (mgr.14152) 56 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:27.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:26 smithi070 bash[22844]: cluster 2024-09-18T08:19:26.842652+0000 mgr.a (mgr.14152) 56 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:27.855 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:19:29.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:28 smithi070 bash[22844]: cluster 2024-09-18T08:19:28.842943+0000 mgr.a (mgr.14152) 57 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:29.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:28 smithi070 bash[22844]: cluster 2024-09-18T08:19:28.842943+0000 mgr.a (mgr.14152) 57 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:29.907 INFO:teuthology.orchestra.run.smithi070.stderr:adjusted tunables profile to default 2024-09-18T08:19:30.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:29 smithi070 bash[22844]: audit 2024-09-18T08:19:29.157533+0000 mon.a (mon.0) 145 : audit [INF] from='client.? 172.21.15.70:0/783035219' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-18T08:19:30.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:29 smithi070 bash[22844]: audit 2024-09-18T08:19:29.157533+0000 mon.a (mon.0) 145 : audit [INF] from='client.? 172.21.15.70:0/783035219' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-18T08:19:30.515 INFO:tasks.cephadm:Adding mon.a on smithi070 2024-09-18T08:19:30.515 INFO:tasks.cephadm:Adding mon.b on smithi086 2024-09-18T08:19:30.515 INFO:tasks.cephadm:Adding mon.c on smithi172 2024-09-18T08:19:30.516 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph orch apply mon '3;smithi070:172.21.15.70=a;smithi086:172.21.15.86=b;smithi172:172.21.15.172=c' 2024-09-18T08:19:31.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:30 smithi070 bash[22844]: audit 2024-09-18T08:19:29.907205+0000 mon.a (mon.0) 146 : audit [INF] from='client.? 172.21.15.70:0/783035219' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-18T08:19:31.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:30 smithi070 bash[22844]: audit 2024-09-18T08:19:29.907205+0000 mon.a (mon.0) 146 : audit [INF] from='client.? 172.21.15.70:0/783035219' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-18T08:19:31.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:30 smithi070 bash[22844]: cluster 2024-09-18T08:19:29.912541+0000 mon.a (mon.0) 147 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:31.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:30 smithi070 bash[22844]: cluster 2024-09-18T08:19:29.912541+0000 mon.a (mon.0) 147 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:31.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:30 smithi070 bash[22844]: cluster 2024-09-18T08:19:30.843300+0000 mgr.a (mgr.14152) 58 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:31.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:30 smithi070 bash[22844]: cluster 2024-09-18T08:19:30.843300+0000 mgr.a (mgr.14152) 58 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:31.743 INFO:teuthology.orchestra.run.smithi172.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:33.135 INFO:teuthology.orchestra.run.smithi172.stdout:Scheduled mon update... 2024-09-18T08:19:33.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:32 smithi070 bash[22844]: cluster 2024-09-18T08:19:32.843703+0000 mgr.a (mgr.14152) 59 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:33.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:32 smithi070 bash[22844]: cluster 2024-09-18T08:19:32.843703+0000 mgr.a (mgr.14152) 59 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:33.709 DEBUG:teuthology.orchestra.run.smithi086:mon.b> sudo journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@mon.b.service 2024-09-18T08:19:33.711 DEBUG:teuthology.orchestra.run.smithi172:mon.c> sudo journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@mon.c.service 2024-09-18T08:19:33.714 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-18T08:19:33.714 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-18T08:19:34.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:34 smithi070 bash[22844]: audit 2024-09-18T08:19:33.124583+0000 mgr.a (mgr.14152) 60 : audit [DBG] from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi070:172.21.15.70=a;smithi086:172.21.15.86=b;smithi172:172.21.15.172=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:19:34.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:34 smithi070 bash[22844]: audit 2024-09-18T08:19:33.124583+0000 mgr.a (mgr.14152) 60 : audit [DBG] from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi070:172.21.15.70=a;smithi086:172.21.15.86=b;smithi172:172.21.15.172=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:19:34.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:34 smithi070 bash[22844]: cephadm 2024-09-18T08:19:33.129620+0000 mgr.a (mgr.14152) 61 : cephadm [INF] Saving service mon spec with placement smithi070:172.21.15.70=a;smithi086:172.21.15.86=b;smithi172:172.21.15.172=c;count:3 2024-09-18T08:19:34.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:34 smithi070 bash[22844]: cephadm 2024-09-18T08:19:33.129620+0000 mgr.a (mgr.14152) 61 : cephadm [INF] Saving service mon spec with placement smithi070:172.21.15.70=a;smithi086:172.21.15.86=b;smithi172:172.21.15.172=c;count:3 2024-09-18T08:19:34.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:34 smithi070 bash[22844]: audit 2024-09-18T08:19:33.134648+0000 mon.a (mon.0) 148 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:34.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:34 smithi070 bash[22844]: audit 2024-09-18T08:19:33.134648+0000 mon.a (mon.0) 148 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:34.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:34 smithi070 bash[22844]: audit 2024-09-18T08:19:33.136323+0000 mon.a (mon.0) 149 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:19:34.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:34 smithi070 bash[22844]: audit 2024-09-18T08:19:33.136323+0000 mon.a (mon.0) 149 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:19:34.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:34 smithi070 bash[22844]: audit 2024-09-18T08:19:33.814983+0000 mon.a (mon.0) 150 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:34.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:34 smithi070 bash[22844]: audit 2024-09-18T08:19:33.814983+0000 mon.a (mon.0) 150 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:34.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:34 smithi070 bash[22844]: audit 2024-09-18T08:19:33.816586+0000 mon.a (mon.0) 151 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:19:34.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:34 smithi070 bash[22844]: audit 2024-09-18T08:19:33.816586+0000 mon.a (mon.0) 151 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:19:34.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:34 smithi070 bash[22844]: audit 2024-09-18T08:19:33.824505+0000 mon.a (mon.0) 152 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:34.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:34 smithi070 bash[22844]: audit 2024-09-18T08:19:33.824505+0000 mon.a (mon.0) 152 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:34.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:34 smithi070 bash[22844]: audit 2024-09-18T08:19:33.828167+0000 mon.a (mon.0) 153 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:34.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:34 smithi070 bash[22844]: audit 2024-09-18T08:19:33.828167+0000 mon.a (mon.0) 153 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:34.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:34 smithi070 bash[22844]: audit 2024-09-18T08:19:33.829598+0000 mon.a (mon.0) 154 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:34.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:34 smithi070 bash[22844]: audit 2024-09-18T08:19:33.829598+0000 mon.a (mon.0) 154 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:34.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:34 smithi070 bash[22844]: cephadm 2024-09-18T08:19:33.831172+0000 mgr.a (mgr.14152) 62 : cephadm [INF] Deploying daemon mon.c on smithi172 2024-09-18T08:19:34.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:34 smithi070 bash[22844]: cephadm 2024-09-18T08:19:33.831172+0000 mgr.a (mgr.14152) 62 : cephadm [INF] Deploying daemon mon.c on smithi172 2024-09-18T08:19:34.981 INFO:teuthology.orchestra.run.smithi172.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:35.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:35 smithi070 bash[22844]: cluster 2024-09-18T08:19:34.844137+0000 mgr.a (mgr.14152) 63 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:35.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:35 smithi070 bash[22844]: cluster 2024-09-18T08:19:34.844137+0000 mgr.a (mgr.14152) 63 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:36.431 INFO:teuthology.orchestra.run.smithi172.stderr:dumped monmap epoch 1 2024-09-18T08:19:36.431 INFO:teuthology.orchestra.run.smithi172.stdout: 2024-09-18T08:19:36.431 INFO:teuthology.orchestra.run.smithi172.stdout:{"epoch":1,"fsid":"1481c73c-7596-11ef-bceb-c7b262605968","modified":"2024-09-18T08:17:16.299901Z","created":"2024-09-18T08:17:16.299901Z","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.70:3300","nonce":0},{"type":"v1","addr":"172.21.15.70:6789","nonce":0}]},"addr":"172.21.15.70:6789/0","public_addr":"172.21.15.70:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-18T08:19:36.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:36 smithi070 bash[22844]: audit 2024-09-18T08:19:36.431025+0000 mon.a (mon.0) 155 : audit [DBG] from='client.? 172.21.15.172:0/768944368' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-18T08:19:36.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:36 smithi070 bash[22844]: audit 2024-09-18T08:19:36.431025+0000 mon.a (mon.0) 155 : audit [DBG] from='client.? 172.21.15.172:0/768944368' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-18T08:19:37.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:37 smithi070 bash[22844]: cluster 2024-09-18T08:19:36.844575+0000 mgr.a (mgr.14152) 64 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:37.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:37 smithi070 bash[22844]: cluster 2024-09-18T08:19:36.844575+0000 mgr.a (mgr.14152) 64 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:38.370 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-18T08:19:38.371 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-18T08:19:39.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:38 smithi070 bash[22844]: cluster 2024-09-18T08:19:38.844975+0000 mgr.a (mgr.14152) 65 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:39.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:38 smithi070 bash[22844]: cluster 2024-09-18T08:19:38.844975+0000 mgr.a (mgr.14152) 65 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:39.593 INFO:teuthology.orchestra.run.smithi172.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.c/config 2024-09-18T08:19:40.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:40 smithi070 bash[22844]: audit 2024-09-18T08:19:39.432410+0000 mon.a (mon.0) 156 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:40.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:40 smithi070 bash[22844]: audit 2024-09-18T08:19:39.432410+0000 mon.a (mon.0) 156 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:40.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:40 smithi070 bash[22844]: audit 2024-09-18T08:19:39.437810+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:40.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:40 smithi070 bash[22844]: audit 2024-09-18T08:19:39.437810+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:40.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:40 smithi070 bash[22844]: audit 2024-09-18T08:19:39.443515+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:40.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:40 smithi070 bash[22844]: audit 2024-09-18T08:19:39.443515+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:40.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:40 smithi070 bash[22844]: audit 2024-09-18T08:19:39.444882+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:40.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:40 smithi070 bash[22844]: audit 2024-09-18T08:19:39.444882+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:40.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:40 smithi070 bash[22844]: audit 2024-09-18T08:19:39.446490+0000 mon.a (mon.0) 160 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:40.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:40 smithi070 bash[22844]: audit 2024-09-18T08:19:39.446490+0000 mon.a (mon.0) 160 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:40.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:40 smithi070 bash[22844]: cephadm 2024-09-18T08:19:39.448392+0000 mgr.a (mgr.14152) 66 : cephadm [INF] Deploying daemon mon.b on smithi086 2024-09-18T08:19:40.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:40 smithi070 bash[22844]: cephadm 2024-09-18T08:19:39.448392+0000 mgr.a (mgr.14152) 66 : cephadm [INF] Deploying daemon mon.b on smithi086 2024-09-18T08:19:41.073 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:18:54.287794+0000 mgr.a (mgr.14152) 24 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi086", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:19:41.074 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:18:54.287794+0000 mgr.a (mgr.14152) 24 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi086", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:19:41.074 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:18:54.835659+0000 mgr.a (mgr.14152) 25 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.074 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:18:54.835659+0000 mgr.a (mgr.14152) 25 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:18:55.352858+0000 mgr.a (mgr.14152) 26 : cephadm [INF] Deploying cephadm binary to smithi086 2024-09-18T08:19:41.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:18:55.352858+0000 mgr.a (mgr.14152) 26 : cephadm [INF] Deploying cephadm binary to smithi086 2024-09-18T08:19:41.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:18:56.836037+0000 mgr.a (mgr.14152) 27 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:18:56.836037+0000 mgr.a (mgr.14152) 27 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:18:58.598593+0000 mon.a (mon.0) 115 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:18:58.598593+0000 mon.a (mon.0) 115 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:18:58.599606+0000 mgr.a (mgr.14152) 28 : cephadm [INF] Added host smithi086 2024-09-18T08:19:41.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:18:58.599606+0000 mgr.a (mgr.14152) 28 : cephadm [INF] Added host smithi086 2024-09-18T08:19:41.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:18:58.600379+0000 mon.a (mon.0) 116 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:19:41.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:18:58.600379+0000 mon.a (mon.0) 116 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:19:41.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:18:58.836471+0000 mgr.a (mgr.14152) 29 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:18:58.836471+0000 mgr.a (mgr.14152) 29 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:18:59.092957+0000 mon.a (mon.0) 117 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:18:59.092957+0000 mon.a (mon.0) 117 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:00.595735+0000 mon.a (mon.0) 118 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:00.595735+0000 mon.a (mon.0) 118 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:00.836935+0000 mgr.a (mgr.14152) 30 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:00.836935+0000 mgr.a (mgr.14152) 30 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:01.759481+0000 mon.a (mon.0) 119 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:01.759481+0000 mon.a (mon.0) 119 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:02.837374+0000 mgr.a (mgr.14152) 31 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:02.837374+0000 mgr.a (mgr.14152) 31 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:04.837834+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-18T08:19:41.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:04.837834+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-18T08:19:41.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:05.216661+0000 mgr.a (mgr.14152) 33 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:19:41.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:05.216661+0000 mgr.a (mgr.14152) 33 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:19:41.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:06.838308+0000 mgr.a (mgr.14152) 34 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:06.838308+0000 mgr.a (mgr.14152) 34 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:07.540250+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:07.540250+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:07.545217+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:07.545217+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:07.550923+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:07.550923+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:07.555819+0000 mon.a (mon.0) 123 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:07.555819+0000 mon.a (mon.0) 123 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:07.557478+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi086", "name": "osd_memory_target"} : dispatch 2024-09-18T08:19:41.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:07.557478+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi086", "name": "osd_memory_target"} : dispatch 2024-09-18T08:19:41.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:07.559785+0000 mon.a (mon.0) 125 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:41.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:07.559785+0000 mon.a (mon.0) 125 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:41.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:07.561414+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:19:41.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:07.561414+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:19:41.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:07.563839+0000 mgr.a (mgr.14152) 35 : cephadm [INF] Updating smithi086:/etc/ceph/ceph.conf 2024-09-18T08:19:41.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:07.563839+0000 mgr.a (mgr.14152) 35 : cephadm [INF] Updating smithi086:/etc/ceph/ceph.conf 2024-09-18T08:19:41.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:07.678894+0000 mgr.a (mgr.14152) 36 : cephadm [INF] Updating smithi086:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:41.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:07.678894+0000 mgr.a (mgr.14152) 36 : cephadm [INF] Updating smithi086:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:41.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:07.778521+0000 mgr.a (mgr.14152) 37 : cephadm [INF] Updating smithi086:/etc/ceph/ceph.client.admin.keyring 2024-09-18T08:19:41.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:07.778521+0000 mgr.a (mgr.14152) 37 : cephadm [INF] Updating smithi086:/etc/ceph/ceph.client.admin.keyring 2024-09-18T08:19:41.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:07.960037+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:07.960037+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:07.965185+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:07.965185+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:07.971020+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:07.971020+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:07.869022+0000 mgr.a (mgr.14152) 38 : cephadm [INF] Updating smithi086:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T08:19:41.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:07.869022+0000 mgr.a (mgr.14152) 38 : cephadm [INF] Updating smithi086:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T08:19:41.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:08.838748+0000 mgr.a (mgr.14152) 39 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:08.838748+0000 mgr.a (mgr.14152) 39 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:10.839145+0000 mgr.a (mgr.14152) 40 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:10.839145+0000 mgr.a (mgr.14152) 40 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:11.764019+0000 mgr.a (mgr.14152) 41 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi172", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:19:41.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:11.764019+0000 mgr.a (mgr.14152) 41 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi172", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:19:41.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:12.740638+0000 mgr.a (mgr.14152) 42 : cephadm [INF] Deploying cephadm binary to smithi172 2024-09-18T08:19:41.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:12.740638+0000 mgr.a (mgr.14152) 42 : cephadm [INF] Deploying cephadm binary to smithi172 2024-09-18T08:19:41.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:12.839521+0000 mgr.a (mgr.14152) 43 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:12.839521+0000 mgr.a (mgr.14152) 43 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:14.839896+0000 mgr.a (mgr.14152) 44 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:14.839896+0000 mgr.a (mgr.14152) 44 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:15.866570+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:15.866570+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:15.867377+0000 mgr.a (mgr.14152) 45 : cephadm [INF] Added host smithi172 2024-09-18T08:19:41.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:15.867377+0000 mgr.a (mgr.14152) 45 : cephadm [INF] Added host smithi172 2024-09-18T08:19:41.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:15.868184+0000 mon.a (mon.0) 131 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:19:41.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:15.868184+0000 mon.a (mon.0) 131 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:19:41.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:16.392021+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:16.392021+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:16.840292+0000 mgr.a (mgr.14152) 46 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:16.840292+0000 mgr.a (mgr.14152) 46 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:17.905157+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:17.905157+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:18.840676+0000 mgr.a (mgr.14152) 47 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:18.840676+0000 mgr.a (mgr.14152) 47 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:19.282515+0000 mon.a (mon.0) 134 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:19.282515+0000 mon.a (mon.0) 134 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:20.841178+0000 mgr.a (mgr.14152) 48 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:20.841178+0000 mgr.a (mgr.14152) 48 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:22.502376+0000 mgr.a (mgr.14152) 49 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:19:41.242 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:22.502376+0000 mgr.a (mgr.14152) 49 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:19:41.242 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:22.841704+0000 mgr.a (mgr.14152) 50 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.242 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:22.841704+0000 mgr.a (mgr.14152) 50 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.242 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:24.842204+0000 mgr.a (mgr.14152) 51 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.242 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:24.842204+0000 mgr.a (mgr.14152) 51 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.243 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:24.928226+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.243 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:24.928226+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.243 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:24.933188+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.243 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:24.933188+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.243 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:24.938760+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.243 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:24.938760+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.243 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:24.943667+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.243 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:24.943667+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.243 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:24.945206+0000 mon.a (mon.0) 139 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi172", "name": "osd_memory_target"} : dispatch 2024-09-18T08:19:41.244 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:24.945206+0000 mon.a (mon.0) 139 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi172", "name": "osd_memory_target"} : dispatch 2024-09-18T08:19:41.244 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:24.947151+0000 mon.a (mon.0) 140 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:41.244 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:24.947151+0000 mon.a (mon.0) 140 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:41.244 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:24.948702+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:19:41.244 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:24.948702+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:19:41.244 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:24.951159+0000 mgr.a (mgr.14152) 52 : cephadm [INF] Updating smithi172:/etc/ceph/ceph.conf 2024-09-18T08:19:41.244 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:24.951159+0000 mgr.a (mgr.14152) 52 : cephadm [INF] Updating smithi172:/etc/ceph/ceph.conf 2024-09-18T08:19:41.244 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:25.065417+0000 mgr.a (mgr.14152) 53 : cephadm [INF] Updating smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:41.244 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:25.065417+0000 mgr.a (mgr.14152) 53 : cephadm [INF] Updating smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:41.244 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:25.163087+0000 mgr.a (mgr.14152) 54 : cephadm [INF] Updating smithi172:/etc/ceph/ceph.client.admin.keyring 2024-09-18T08:19:41.245 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:25.163087+0000 mgr.a (mgr.14152) 54 : cephadm [INF] Updating smithi172:/etc/ceph/ceph.client.admin.keyring 2024-09-18T08:19:41.245 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:25.253240+0000 mgr.a (mgr.14152) 55 : cephadm [INF] Updating smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T08:19:41.245 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:25.253240+0000 mgr.a (mgr.14152) 55 : cephadm [INF] Updating smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T08:19:41.245 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:25.345233+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.245 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:25.345233+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.245 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:25.348970+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.246 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:25.348970+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.246 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:25.361706+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.246 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:25.361706+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.246 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:26.842652+0000 mgr.a (mgr.14152) 56 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.246 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:26.842652+0000 mgr.a (mgr.14152) 56 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.246 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:28.842943+0000 mgr.a (mgr.14152) 57 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.246 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:28.842943+0000 mgr.a (mgr.14152) 57 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.246 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:29.157533+0000 mon.a (mon.0) 145 : audit [INF] from='client.? 172.21.15.70:0/783035219' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-18T08:19:41.246 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:29.157533+0000 mon.a (mon.0) 145 : audit [INF] from='client.? 172.21.15.70:0/783035219' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-18T08:19:41.246 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:29.907205+0000 mon.a (mon.0) 146 : audit [INF] from='client.? 172.21.15.70:0/783035219' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-18T08:19:41.246 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:29.907205+0000 mon.a (mon.0) 146 : audit [INF] from='client.? 172.21.15.70:0/783035219' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-18T08:19:41.246 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:29.912541+0000 mon.a (mon.0) 147 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:41.246 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:29.912541+0000 mon.a (mon.0) 147 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:41.247 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:30.843300+0000 mgr.a (mgr.14152) 58 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.247 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:30.843300+0000 mgr.a (mgr.14152) 58 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.247 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:32.843703+0000 mgr.a (mgr.14152) 59 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.247 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:32.843703+0000 mgr.a (mgr.14152) 59 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.247 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:33.124583+0000 mgr.a (mgr.14152) 60 : audit [DBG] from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi070:172.21.15.70=a;smithi086:172.21.15.86=b;smithi172:172.21.15.172=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:19:41.247 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:33.124583+0000 mgr.a (mgr.14152) 60 : audit [DBG] from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi070:172.21.15.70=a;smithi086:172.21.15.86=b;smithi172:172.21.15.172=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:19:41.247 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:33.129620+0000 mgr.a (mgr.14152) 61 : cephadm [INF] Saving service mon spec with placement smithi070:172.21.15.70=a;smithi086:172.21.15.86=b;smithi172:172.21.15.172=c;count:3 2024-09-18T08:19:41.247 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:33.129620+0000 mgr.a (mgr.14152) 61 : cephadm [INF] Saving service mon spec with placement smithi070:172.21.15.70=a;smithi086:172.21.15.86=b;smithi172:172.21.15.172=c;count:3 2024-09-18T08:19:41.247 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:33.134648+0000 mon.a (mon.0) 148 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.247 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:33.134648+0000 mon.a (mon.0) 148 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.247 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:33.136323+0000 mon.a (mon.0) 149 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:19:41.247 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:33.136323+0000 mon.a (mon.0) 149 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:19:41.247 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:33.814983+0000 mon.a (mon.0) 150 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:41.248 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:33.814983+0000 mon.a (mon.0) 150 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:41.248 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:33.816586+0000 mon.a (mon.0) 151 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:19:41.248 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:33.816586+0000 mon.a (mon.0) 151 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:19:41.248 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:33.824505+0000 mon.a (mon.0) 152 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.248 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:33.824505+0000 mon.a (mon.0) 152 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.248 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:33.828167+0000 mon.a (mon.0) 153 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:41.248 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:33.828167+0000 mon.a (mon.0) 153 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:41.248 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:33.829598+0000 mon.a (mon.0) 154 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:41.248 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:33.829598+0000 mon.a (mon.0) 154 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:41.248 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:33.831172+0000 mgr.a (mgr.14152) 62 : cephadm [INF] Deploying daemon mon.c on smithi172 2024-09-18T08:19:41.248 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:33.831172+0000 mgr.a (mgr.14152) 62 : cephadm [INF] Deploying daemon mon.c on smithi172 2024-09-18T08:19:41.248 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:34.844137+0000 mgr.a (mgr.14152) 63 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.248 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:34.844137+0000 mgr.a (mgr.14152) 63 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.248 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:36.431025+0000 mon.a (mon.0) 155 : audit [DBG] from='client.? 172.21.15.172:0/768944368' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-18T08:19:41.249 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:36.431025+0000 mon.a (mon.0) 155 : audit [DBG] from='client.? 172.21.15.172:0/768944368' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-18T08:19:41.249 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:36.844575+0000 mgr.a (mgr.14152) 64 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.249 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:36.844575+0000 mgr.a (mgr.14152) 64 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.249 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:38.844975+0000 mgr.a (mgr.14152) 65 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.249 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cluster 2024-09-18T08:19:38.844975+0000 mgr.a (mgr.14152) 65 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:41.249 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:39.432410+0000 mon.a (mon.0) 156 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.249 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:39.432410+0000 mon.a (mon.0) 156 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.249 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:39.437810+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.249 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:39.437810+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.249 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:39.443515+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.249 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:39.443515+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:41.249 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:39.444882+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:41.249 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:39.444882+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:41.249 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:39.446490+0000 mon.a (mon.0) 160 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:41.250 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: audit 2024-09-18T08:19:39.446490+0000 mon.a (mon.0) 160 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:41.250 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:39.448392+0000 mgr.a (mgr.14152) 66 : cephadm [INF] Deploying daemon mon.b on smithi086 2024-09-18T08:19:41.250 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: cephadm 2024-09-18T08:19:39.448392+0000 mgr.a (mgr.14152) 66 : cephadm [INF] Deploying daemon mon.b on smithi086 2024-09-18T08:19:41.250 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:41 smithi172 bash[24990]: debug 2024-09-18T08:19:41.075+0000 7f2cb8efc640 1 mon.c@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-09-18T08:19:45.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:45 smithi086 bash[24678]: debug 2024-09-18T08:19:45.356+0000 7fdd993c4640 1 mon.b@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-09-18T08:19:46.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:41.082048+0000 mon.a (mon.0) 161 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:41.082048+0000 mon.a (mon.0) 161 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:41.086916+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:19:46.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:41.086916+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:19:46.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:41.087296+0000 mon.a (mon.0) 163 : cluster [INF] mon.a calling monitor election 2024-09-18T08:19:46.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:41.087296+0000 mon.a (mon.0) 163 : cluster [INF] mon.a calling monitor election 2024-09-18T08:19:46.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:41.108750+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:41.108750+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:42.081862+0000 mon.a (mon.0) 165 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:42.081862+0000 mon.a (mon.0) 165 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:42.845794+0000 mgr.a (mgr.14152) 68 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:46.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:42.845794+0000 mgr.a (mgr.14152) 68 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:46.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:43.081751+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:43.081751+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:43.083720+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-18T08:19:46.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:43.083720+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-18T08:19:46.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:44.082061+0000 mon.a (mon.0) 167 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:44.082061+0000 mon.a (mon.0) 167 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:44.846170+0000 mgr.a (mgr.14152) 69 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:46.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:44.846170+0000 mgr.a (mgr.14152) 69 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:46.486 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:45.082163+0000 mon.a (mon.0) 168 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.486 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:45.082163+0000 mon.a (mon.0) 168 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.486 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:45.363891+0000 mon.a (mon.0) 169 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:46.486 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:45.363891+0000 mon.a (mon.0) 169 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:46.486 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:46.082430+0000 mon.a (mon.0) 170 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.487 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:46.082430+0000 mon.a (mon.0) 170 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.487 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.133712+0000 mon.a (mon.0) 171 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-18T08:19:46.487 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.133712+0000 mon.a (mon.0) 171 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-18T08:19:46.487 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.144752+0000 mon.a (mon.0) 172 : cluster [DBG] monmap epoch 2 2024-09-18T08:19:46.487 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.144752+0000 mon.a (mon.0) 172 : cluster [DBG] monmap epoch 2 2024-09-18T08:19:46.487 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.144783+0000 mon.a (mon.0) 173 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:19:46.487 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.144783+0000 mon.a (mon.0) 173 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:19:46.487 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.144800+0000 mon.a (mon.0) 174 : cluster [DBG] last_changed 2024-09-18T08:19:41.081349+0000 2024-09-18T08:19:46.487 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.144800+0000 mon.a (mon.0) 174 : cluster [DBG] last_changed 2024-09-18T08:19:41.081349+0000 2024-09-18T08:19:46.487 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.144815+0000 mon.a (mon.0) 175 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:19:46.487 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.144815+0000 mon.a (mon.0) 175 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:19:46.487 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.144834+0000 mon.a (mon.0) 176 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:19:46.488 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.144834+0000 mon.a (mon.0) 176 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:19:46.488 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.144853+0000 mon.a (mon.0) 177 : cluster [DBG] election_strategy: 1 2024-09-18T08:19:46.488 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.144853+0000 mon.a (mon.0) 177 : cluster [DBG] election_strategy: 1 2024-09-18T08:19:46.488 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.144871+0000 mon.a (mon.0) 178 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:19:46.488 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.144871+0000 mon.a (mon.0) 178 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:19:46.488 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.144886+0000 mon.a (mon.0) 179 : cluster [DBG] 1: [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] mon.c 2024-09-18T08:19:46.488 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.144886+0000 mon.a (mon.0) 179 : cluster [DBG] 1: [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] mon.c 2024-09-18T08:19:46.488 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.145934+0000 mon.a (mon.0) 180 : cluster [DBG] fsmap 2024-09-18T08:19:46.488 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.145934+0000 mon.a (mon.0) 180 : cluster [DBG] fsmap 2024-09-18T08:19:46.488 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.145991+0000 mon.a (mon.0) 181 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:46.488 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.145991+0000 mon.a (mon.0) 181 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:46.488 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.146276+0000 mon.a (mon.0) 182 : cluster [DBG] mgrmap e13: a(active, since 85s) 2024-09-18T08:19:46.488 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.146276+0000 mon.a (mon.0) 182 : cluster [DBG] mgrmap e13: a(active, since 85s) 2024-09-18T08:19:46.488 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.146551+0000 mon.a (mon.0) 183 : cluster [INF] overall HEALTH_OK 2024-09-18T08:19:46.489 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.146551+0000 mon.a (mon.0) 183 : cluster [INF] overall HEALTH_OK 2024-09-18T08:19:46.489 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:46.153337+0000 mon.a (mon.0) 184 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:46.489 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:46.153337+0000 mon.a (mon.0) 184 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:46.489 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:46.159881+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:46.489 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:46.159881+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:46.489 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:46.167377+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:46.489 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:46.167377+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:46.489 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:46.174263+0000 mon.a (mon.0) 187 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:46.489 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:46 smithi070 bash[22844]: audit 2024-09-18T08:19:46.174263+0000 mon.a (mon.0) 187 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:46.489 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:41.082048+0000 mon.a (mon.0) 161 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.489 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:41.082048+0000 mon.a (mon.0) 161 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.489 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:41.086916+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:19:46.489 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:41.086916+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:19:46.490 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:41.087296+0000 mon.a (mon.0) 163 : cluster [INF] mon.a calling monitor election 2024-09-18T08:19:46.490 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:41.087296+0000 mon.a (mon.0) 163 : cluster [INF] mon.a calling monitor election 2024-09-18T08:19:46.490 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:41.108750+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.490 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:41.108750+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.490 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:42.081862+0000 mon.a (mon.0) 165 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.490 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:42.081862+0000 mon.a (mon.0) 165 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.490 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:42.845794+0000 mgr.a (mgr.14152) 68 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:46.490 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:42.845794+0000 mgr.a (mgr.14152) 68 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:46.490 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:43.081751+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.490 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:43.081751+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.490 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:43.083720+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-18T08:19:46.490 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:43.083720+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-18T08:19:46.490 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:44.082061+0000 mon.a (mon.0) 167 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.491 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:44.082061+0000 mon.a (mon.0) 167 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.491 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:44.846170+0000 mgr.a (mgr.14152) 69 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:46.491 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:44.846170+0000 mgr.a (mgr.14152) 69 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:46.491 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:45.082163+0000 mon.a (mon.0) 168 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.491 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:45.082163+0000 mon.a (mon.0) 168 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.491 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:45.363891+0000 mon.a (mon.0) 169 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:46.491 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:45.363891+0000 mon.a (mon.0) 169 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:46.491 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:46.082430+0000 mon.a (mon.0) 170 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.491 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:46.082430+0000 mon.a (mon.0) 170 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:46.491 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.133712+0000 mon.a (mon.0) 171 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-18T08:19:46.491 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.133712+0000 mon.a (mon.0) 171 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-18T08:19:46.491 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.144752+0000 mon.a (mon.0) 172 : cluster [DBG] monmap epoch 2 2024-09-18T08:19:46.491 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.144752+0000 mon.a (mon.0) 172 : cluster [DBG] monmap epoch 2 2024-09-18T08:19:46.491 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.144783+0000 mon.a (mon.0) 173 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:19:46.492 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.144783+0000 mon.a (mon.0) 173 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:19:46.492 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.144800+0000 mon.a (mon.0) 174 : cluster [DBG] last_changed 2024-09-18T08:19:41.081349+0000 2024-09-18T08:19:46.492 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.144800+0000 mon.a (mon.0) 174 : cluster [DBG] last_changed 2024-09-18T08:19:41.081349+0000 2024-09-18T08:19:46.492 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.144815+0000 mon.a (mon.0) 175 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:19:46.492 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.144815+0000 mon.a (mon.0) 175 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:19:46.492 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.144834+0000 mon.a (mon.0) 176 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:19:46.492 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.144834+0000 mon.a (mon.0) 176 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:19:46.492 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.144853+0000 mon.a (mon.0) 177 : cluster [DBG] election_strategy: 1 2024-09-18T08:19:46.492 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.144853+0000 mon.a (mon.0) 177 : cluster [DBG] election_strategy: 1 2024-09-18T08:19:46.492 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.144871+0000 mon.a (mon.0) 178 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:19:46.492 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.144871+0000 mon.a (mon.0) 178 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:19:46.492 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.144886+0000 mon.a (mon.0) 179 : cluster [DBG] 1: [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] mon.c 2024-09-18T08:19:46.492 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.144886+0000 mon.a (mon.0) 179 : cluster [DBG] 1: [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] mon.c 2024-09-18T08:19:46.492 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.145934+0000 mon.a (mon.0) 180 : cluster [DBG] fsmap 2024-09-18T08:19:46.493 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.145934+0000 mon.a (mon.0) 180 : cluster [DBG] fsmap 2024-09-18T08:19:46.493 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.145991+0000 mon.a (mon.0) 181 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:46.493 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.145991+0000 mon.a (mon.0) 181 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:46.493 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.146276+0000 mon.a (mon.0) 182 : cluster [DBG] mgrmap e13: a(active, since 85s) 2024-09-18T08:19:46.493 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.146276+0000 mon.a (mon.0) 182 : cluster [DBG] mgrmap e13: a(active, since 85s) 2024-09-18T08:19:46.493 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.146551+0000 mon.a (mon.0) 183 : cluster [INF] overall HEALTH_OK 2024-09-18T08:19:46.493 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.146551+0000 mon.a (mon.0) 183 : cluster [INF] overall HEALTH_OK 2024-09-18T08:19:46.493 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:46.153337+0000 mon.a (mon.0) 184 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:46.493 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:46.153337+0000 mon.a (mon.0) 184 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:46.494 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:46.159881+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:46.494 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:46.159881+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:46.494 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:46.167377+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:46.494 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:46.167377+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:46.494 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:46.174263+0000 mon.a (mon.0) 187 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:46.494 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:46 smithi172 bash[24990]: audit 2024-09-18T08:19:46.174263+0000 mon.a (mon.0) 187 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:47.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:47 smithi070 bash[22844]: audit 2024-09-18T08:19:46.229122+0000 mon.a (mon.0) 188 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:19:47.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:47 smithi070 bash[22844]: audit 2024-09-18T08:19:46.229122+0000 mon.a (mon.0) 188 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:19:47.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:47 smithi070 bash[22844]: audit 2024-09-18T08:19:46.363867+0000 mon.a (mon.0) 189 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:47.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:47 smithi070 bash[22844]: audit 2024-09-18T08:19:46.363867+0000 mon.a (mon.0) 189 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:47.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:47 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.846525+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-18T08:19:47.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:47 smithi070 bash[22844]: cluster 2024-09-18T08:19:46.846525+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-18T08:19:47.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:47 smithi070 bash[22844]: audit 2024-09-18T08:19:47.082576+0000 mon.a (mon.0) 190 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:47.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:47 smithi070 bash[22844]: audit 2024-09-18T08:19:47.082576+0000 mon.a (mon.0) 190 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:47.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:47 smithi172 bash[24990]: audit 2024-09-18T08:19:46.229122+0000 mon.a (mon.0) 188 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:19:47.485 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:47 smithi172 bash[24990]: audit 2024-09-18T08:19:46.229122+0000 mon.a (mon.0) 188 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:19:47.485 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:47 smithi172 bash[24990]: audit 2024-09-18T08:19:46.363867+0000 mon.a (mon.0) 189 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:47.485 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:47 smithi172 bash[24990]: audit 2024-09-18T08:19:46.363867+0000 mon.a (mon.0) 189 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:47.485 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:47 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.846525+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-18T08:19:47.485 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:47 smithi172 bash[24990]: cluster 2024-09-18T08:19:46.846525+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-18T08:19:47.485 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:47 smithi172 bash[24990]: audit 2024-09-18T08:19:47.082576+0000 mon.a (mon.0) 190 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:47.485 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:47 smithi172 bash[24990]: audit 2024-09-18T08:19:47.082576+0000 mon.a (mon.0) 190 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:52.419 INFO:teuthology.orchestra.run.smithi172.stderr:dumped monmap epoch 3 2024-09-18T08:19:52.419 INFO:teuthology.orchestra.run.smithi172.stdout: 2024-09-18T08:19:52.419 INFO:teuthology.orchestra.run.smithi172.stdout:{"epoch":3,"fsid":"1481c73c-7596-11ef-bceb-c7b262605968","modified":"2024-09-18T08:19:47.364256Z","created":"2024-09-18T08:17:16.299901Z","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.70:3300","nonce":0},{"type":"v1","addr":"172.21.15.70:6789","nonce":0}]},"addr":"172.21.15.70:6789/0","public_addr":"172.21.15.70:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:3300","nonce":0},{"type":"v1","addr":"172.21.15.172:6789","nonce":0}]},"addr":"172.21.15.172:6789/0","public_addr":"172.21.15.172:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:3300","nonce":0},{"type":"v1","addr":"172.21.15.86:6789","nonce":0}]},"addr":"172.21.15.86:6789/0","public_addr":"172.21.15.86:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-18T08:19:52.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:47.369877+0000 mon.a (mon.0) 192 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:19:52.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:47.369877+0000 mon.a (mon.0) 192 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:19:52.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:47.370299+0000 mon.a (mon.0) 193 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:47.370299+0000 mon.a (mon.0) 193 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:47.370652+0000 mon.a (mon.0) 194 : cluster [INF] mon.a calling monitor election 2024-09-18T08:19:52.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:47.370652+0000 mon.a (mon.0) 194 : cluster [INF] mon.a calling monitor election 2024-09-18T08:19:52.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:47.371091+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-18T08:19:52.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:47.371091+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-18T08:19:52.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:47.389329+0000 mon.a (mon.0) 195 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:52.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:47.389329+0000 mon.a (mon.0) 195 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:52.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:47.457043+0000 mon.a (mon.0) 196 : audit [DBG] from='client.? 172.21.15.172:0/3572550958' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-18T08:19:52.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:47.457043+0000 mon.a (mon.0) 196 : audit [DBG] from='client.? 172.21.15.172:0/3572550958' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-18T08:19:52.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:48.364513+0000 mon.a (mon.0) 197 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:48.364513+0000 mon.a (mon.0) 197 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:48.846922+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-18T08:19:52.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:48.846922+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-18T08:19:52.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:49.364328+0000 mon.a (mon.0) 198 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:49.364328+0000 mon.a (mon.0) 198 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:50.364365+0000 mon.a (mon.0) 199 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.736 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:50.364365+0000 mon.a (mon.0) 199 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.736 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:50.847322+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-18T08:19:52.736 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:50.847322+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-18T08:19:52.736 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:51.364623+0000 mon.a (mon.0) 200 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.736 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:51.364623+0000 mon.a (mon.0) 200 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.736 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:52.364724+0000 mon.a (mon.0) 201 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.736 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:52.364724+0000 mon.a (mon.0) 201 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.736 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.389062+0000 mon.a (mon.0) 202 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-18T08:19:52.736 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.389062+0000 mon.a (mon.0) 202 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-18T08:19:52.736 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.395240+0000 mon.a (mon.0) 203 : cluster [DBG] monmap epoch 3 2024-09-18T08:19:52.736 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.395240+0000 mon.a (mon.0) 203 : cluster [DBG] monmap epoch 3 2024-09-18T08:19:52.736 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.395288+0000 mon.a (mon.0) 204 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:19:52.737 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.395288+0000 mon.a (mon.0) 204 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:19:52.737 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.395322+0000 mon.a (mon.0) 205 : cluster [DBG] last_changed 2024-09-18T08:19:47.364256+0000 2024-09-18T08:19:52.737 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.395322+0000 mon.a (mon.0) 205 : cluster [DBG] last_changed 2024-09-18T08:19:47.364256+0000 2024-09-18T08:19:52.737 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.395360+0000 mon.a (mon.0) 206 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:19:52.737 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.395360+0000 mon.a (mon.0) 206 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:19:52.737 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.395396+0000 mon.a (mon.0) 207 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:19:52.737 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.395396+0000 mon.a (mon.0) 207 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:19:52.737 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.395434+0000 mon.a (mon.0) 208 : cluster [DBG] election_strategy: 1 2024-09-18T08:19:52.737 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.395434+0000 mon.a (mon.0) 208 : cluster [DBG] election_strategy: 1 2024-09-18T08:19:52.737 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.395470+0000 mon.a (mon.0) 209 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:19:52.737 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.395470+0000 mon.a (mon.0) 209 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:19:52.737 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.395507+0000 mon.a (mon.0) 210 : cluster [DBG] 1: [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] mon.c 2024-09-18T08:19:52.737 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.395507+0000 mon.a (mon.0) 210 : cluster [DBG] 1: [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] mon.c 2024-09-18T08:19:52.738 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.395557+0000 mon.a (mon.0) 211 : cluster [DBG] 2: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-18T08:19:52.738 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.395557+0000 mon.a (mon.0) 211 : cluster [DBG] 2: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-18T08:19:52.738 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.416465+0000 mon.a (mon.0) 212 : cluster [DBG] fsmap 2024-09-18T08:19:52.738 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.416465+0000 mon.a (mon.0) 212 : cluster [DBG] fsmap 2024-09-18T08:19:52.738 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.416557+0000 mon.a (mon.0) 213 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:52.738 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.416557+0000 mon.a (mon.0) 213 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:52.738 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.416888+0000 mon.a (mon.0) 214 : cluster [DBG] mgrmap e13: a(active, since 91s) 2024-09-18T08:19:52.738 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.416888+0000 mon.a (mon.0) 214 : cluster [DBG] mgrmap e13: a(active, since 91s) 2024-09-18T08:19:52.738 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.417295+0000 mon.a (mon.0) 215 : cluster [WRN] Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-18T08:19:52.738 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.417295+0000 mon.a (mon.0) 215 : cluster [WRN] Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-18T08:19:52.738 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.425571+0000 mon.a (mon.0) 216 : cluster [WRN] Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-18T08:19:52.738 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.425571+0000 mon.a (mon.0) 216 : cluster [WRN] Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-18T08:19:52.738 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.425611+0000 mon.a (mon.0) 217 : cluster [WRN] [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-18T08:19:52.739 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.425611+0000 mon.a (mon.0) 217 : cluster [WRN] [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-18T08:19:52.739 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.425662+0000 mon.a (mon.0) 218 : cluster [WRN] mon.b (rank 2) addr [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] is down (out of quorum) 2024-09-18T08:19:52.739 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.425662+0000 mon.a (mon.0) 218 : cluster [WRN] mon.b (rank 2) addr [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] is down (out of quorum) 2024-09-18T08:19:52.739 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:52.430114+0000 mon.a (mon.0) 219 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:52.739 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:52.430114+0000 mon.a (mon.0) 219 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:52.739 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:52.435282+0000 mon.a (mon.0) 220 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:52.739 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:52.435282+0000 mon.a (mon.0) 220 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:52.739 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:52.439999+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:52.739 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:52.439999+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:52.739 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:52.445374+0000 mon.a (mon.0) 222 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:52.739 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:52.445374+0000 mon.a (mon.0) 222 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:52.739 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:52.450212+0000 mon.a (mon.0) 223 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:52.739 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:52.450212+0000 mon.a (mon.0) 223 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:52.739 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:52.452025+0000 mon.a (mon.0) 224 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:52.739 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:52.452025+0000 mon.a (mon.0) 224 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:52.740 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:52.454070+0000 mon.a (mon.0) 225 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:19:52.740 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:52 smithi172 bash[24990]: audit 2024-09-18T08:19:52.454070+0000 mon.a (mon.0) 225 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:19:52.740 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:47.369877+0000 mon.a (mon.0) 192 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:19:52.741 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:47.369877+0000 mon.a (mon.0) 192 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:19:52.741 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:47.370299+0000 mon.a (mon.0) 193 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.741 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:47.370299+0000 mon.a (mon.0) 193 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.741 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:47.370652+0000 mon.a (mon.0) 194 : cluster [INF] mon.a calling monitor election 2024-09-18T08:19:52.741 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:47.370652+0000 mon.a (mon.0) 194 : cluster [INF] mon.a calling monitor election 2024-09-18T08:19:52.741 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:47.371091+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-18T08:19:52.741 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:47.371091+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-18T08:19:52.741 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:47.389329+0000 mon.a (mon.0) 195 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:52.741 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:47.389329+0000 mon.a (mon.0) 195 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:52.741 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:47.457043+0000 mon.a (mon.0) 196 : audit [DBG] from='client.? 172.21.15.172:0/3572550958' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-18T08:19:52.741 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:47.457043+0000 mon.a (mon.0) 196 : audit [DBG] from='client.? 172.21.15.172:0/3572550958' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-18T08:19:52.741 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:48.364513+0000 mon.a (mon.0) 197 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.741 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:48.364513+0000 mon.a (mon.0) 197 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.742 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:48.846922+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-18T08:19:52.742 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:48.846922+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-18T08:19:52.742 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:49.364328+0000 mon.a (mon.0) 198 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.742 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:49.364328+0000 mon.a (mon.0) 198 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.742 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:50.364365+0000 mon.a (mon.0) 199 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.742 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:50.364365+0000 mon.a (mon.0) 199 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.742 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:50.847322+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-18T08:19:52.742 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:50.847322+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-18T08:19:52.742 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:51.364623+0000 mon.a (mon.0) 200 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.742 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:51.364623+0000 mon.a (mon.0) 200 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.742 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:52.364724+0000 mon.a (mon.0) 201 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.742 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:52.364724+0000 mon.a (mon.0) 201 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:52.742 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.389062+0000 mon.a (mon.0) 202 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-18T08:19:52.742 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.389062+0000 mon.a (mon.0) 202 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-18T08:19:52.743 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.395240+0000 mon.a (mon.0) 203 : cluster [DBG] monmap epoch 3 2024-09-18T08:19:52.743 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.395240+0000 mon.a (mon.0) 203 : cluster [DBG] monmap epoch 3 2024-09-18T08:19:52.743 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.395288+0000 mon.a (mon.0) 204 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:19:52.743 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.395288+0000 mon.a (mon.0) 204 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:19:52.743 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.395322+0000 mon.a (mon.0) 205 : cluster [DBG] last_changed 2024-09-18T08:19:47.364256+0000 2024-09-18T08:19:52.743 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.395322+0000 mon.a (mon.0) 205 : cluster [DBG] last_changed 2024-09-18T08:19:47.364256+0000 2024-09-18T08:19:52.743 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.395360+0000 mon.a (mon.0) 206 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:19:52.743 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.395360+0000 mon.a (mon.0) 206 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:19:52.743 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.395396+0000 mon.a (mon.0) 207 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:19:52.743 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.395396+0000 mon.a (mon.0) 207 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:19:52.743 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.395434+0000 mon.a (mon.0) 208 : cluster [DBG] election_strategy: 1 2024-09-18T08:19:52.743 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.395434+0000 mon.a (mon.0) 208 : cluster [DBG] election_strategy: 1 2024-09-18T08:19:52.743 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.395470+0000 mon.a (mon.0) 209 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:19:52.743 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.395470+0000 mon.a (mon.0) 209 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:19:52.744 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.395507+0000 mon.a (mon.0) 210 : cluster [DBG] 1: [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] mon.c 2024-09-18T08:19:52.744 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.395507+0000 mon.a (mon.0) 210 : cluster [DBG] 1: [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] mon.c 2024-09-18T08:19:52.744 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.395557+0000 mon.a (mon.0) 211 : cluster [DBG] 2: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-18T08:19:52.744 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.395557+0000 mon.a (mon.0) 211 : cluster [DBG] 2: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-18T08:19:52.744 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.416465+0000 mon.a (mon.0) 212 : cluster [DBG] fsmap 2024-09-18T08:19:52.744 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.416465+0000 mon.a (mon.0) 212 : cluster [DBG] fsmap 2024-09-18T08:19:52.744 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.416557+0000 mon.a (mon.0) 213 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:52.744 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.416557+0000 mon.a (mon.0) 213 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:52.744 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.416888+0000 mon.a (mon.0) 214 : cluster [DBG] mgrmap e13: a(active, since 91s) 2024-09-18T08:19:52.744 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.416888+0000 mon.a (mon.0) 214 : cluster [DBG] mgrmap e13: a(active, since 91s) 2024-09-18T08:19:52.744 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.417295+0000 mon.a (mon.0) 215 : cluster [WRN] Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-18T08:19:52.744 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.417295+0000 mon.a (mon.0) 215 : cluster [WRN] Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-18T08:19:52.744 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.425571+0000 mon.a (mon.0) 216 : cluster [WRN] Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-18T08:19:52.745 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.425571+0000 mon.a (mon.0) 216 : cluster [WRN] Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-18T08:19:52.745 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.425611+0000 mon.a (mon.0) 217 : cluster [WRN] [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-18T08:19:52.745 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.425611+0000 mon.a (mon.0) 217 : cluster [WRN] [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-18T08:19:52.745 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.425662+0000 mon.a (mon.0) 218 : cluster [WRN] mon.b (rank 2) addr [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] is down (out of quorum) 2024-09-18T08:19:52.745 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.425662+0000 mon.a (mon.0) 218 : cluster [WRN] mon.b (rank 2) addr [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] is down (out of quorum) 2024-09-18T08:19:52.745 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:52.430114+0000 mon.a (mon.0) 219 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:52.745 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:52.430114+0000 mon.a (mon.0) 219 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:52.745 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:52.435282+0000 mon.a (mon.0) 220 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:52.745 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:52.435282+0000 mon.a (mon.0) 220 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:52.745 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:52.439999+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:52.745 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:52.439999+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:52.745 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:52.445374+0000 mon.a (mon.0) 222 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:52.745 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:52.445374+0000 mon.a (mon.0) 222 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:52.745 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:52.450212+0000 mon.a (mon.0) 223 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:52.746 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:52.450212+0000 mon.a (mon.0) 223 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:52.746 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:52.452025+0000 mon.a (mon.0) 224 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:52.746 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:52.452025+0000 mon.a (mon.0) 224 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:52.746 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:52.454070+0000 mon.a (mon.0) 225 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:19:52.746 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:52 smithi070 bash[22844]: audit 2024-09-18T08:19:52.454070+0000 mon.a (mon.0) 225 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:19:53.105 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-18T08:19:53.105 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph config generate-minimal-conf 2024-09-18T08:19:54.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: cephadm 2024-09-18T08:19:52.456677+0000 mgr.a (mgr.14152) 73 : cephadm [INF] Updating smithi070:/etc/ceph/ceph.conf 2024-09-18T08:19:54.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: cephadm 2024-09-18T08:19:52.456677+0000 mgr.a (mgr.14152) 73 : cephadm [INF] Updating smithi070:/etc/ceph/ceph.conf 2024-09-18T08:19:54.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: cephadm 2024-09-18T08:19:52.457423+0000 mgr.a (mgr.14152) 74 : cephadm [INF] Updating smithi086:/etc/ceph/ceph.conf 2024-09-18T08:19:54.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: cephadm 2024-09-18T08:19:52.457423+0000 mgr.a (mgr.14152) 74 : cephadm [INF] Updating smithi086:/etc/ceph/ceph.conf 2024-09-18T08:19:54.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: cephadm 2024-09-18T08:19:52.457622+0000 mgr.a (mgr.14152) 75 : cephadm [INF] Updating smithi172:/etc/ceph/ceph.conf 2024-09-18T08:19:54.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: cephadm 2024-09-18T08:19:52.457622+0000 mgr.a (mgr.14152) 75 : cephadm [INF] Updating smithi172:/etc/ceph/ceph.conf 2024-09-18T08:19:54.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: cephadm 2024-09-18T08:19:52.636819+0000 mgr.a (mgr.14152) 76 : cephadm [INF] Updating smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:54.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: cephadm 2024-09-18T08:19:52.636819+0000 mgr.a (mgr.14152) 76 : cephadm [INF] Updating smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:54.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: cephadm 2024-09-18T08:19:52.637227+0000 mgr.a (mgr.14152) 77 : cephadm [INF] Updating smithi070:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:54.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: cephadm 2024-09-18T08:19:52.637227+0000 mgr.a (mgr.14152) 77 : cephadm [INF] Updating smithi070:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:54.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: cephadm 2024-09-18T08:19:52.637875+0000 mgr.a (mgr.14152) 78 : cephadm [INF] Updating smithi086:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:54.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: cephadm 2024-09-18T08:19:52.637875+0000 mgr.a (mgr.14152) 78 : cephadm [INF] Updating smithi086:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:54.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.755965+0000 mon.a (mon.0) 226 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.755965+0000 mon.a (mon.0) 226 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.760933+0000 mon.a (mon.0) 227 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.760933+0000 mon.a (mon.0) 227 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.765910+0000 mon.a (mon.0) 228 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.765910+0000 mon.a (mon.0) 228 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.771250+0000 mon.a (mon.0) 229 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.771250+0000 mon.a (mon.0) 229 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.776428+0000 mon.a (mon.0) 230 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.776428+0000 mon.a (mon.0) 230 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.781320+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.781320+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.787329+0000 mon.a (mon.0) 232 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.236 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.787329+0000 mon.a (mon.0) 232 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.819916+0000 mon.a (mon.0) 233 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.819916+0000 mon.a (mon.0) 233 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.824492+0000 mon.a (mon.0) 234 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.824492+0000 mon.a (mon.0) 234 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.829058+0000 mon.a (mon.0) 235 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.829058+0000 mon.a (mon.0) 235 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.834004+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.237 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.834004+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: cephadm 2024-09-18T08:19:52.834556+0000 mgr.a (mgr.14152) 79 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-18T08:19:54.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: cephadm 2024-09-18T08:19:52.834556+0000 mgr.a (mgr.14152) 79 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-18T08:19:54.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.834977+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:54.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.834977+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:54.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.836085+0000 mon.a (mon.0) 238 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:19:54.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.836085+0000 mon.a (mon.0) 238 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:19:54.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.837005+0000 mon.a (mon.0) 239 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:54.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:52.837005+0000 mon.a (mon.0) 239 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:54.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: cephadm 2024-09-18T08:19:52.838101+0000 mgr.a (mgr.14152) 80 : cephadm [INF] Reconfiguring daemon mon.a on smithi070 2024-09-18T08:19:54.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: cephadm 2024-09-18T08:19:52.838101+0000 mgr.a (mgr.14152) 80 : cephadm [INF] Reconfiguring daemon mon.a on smithi070 2024-09-18T08:19:54.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.847740+0000 mgr.a (mgr.14152) 81 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:54.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: cluster 2024-09-18T08:19:52.847740+0000 mgr.a (mgr.14152) 81 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:54.239 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:53.364224+0000 mon.a (mon.0) 240 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.239 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:53 smithi070 bash[22844]: audit 2024-09-18T08:19:53.364224+0000 mon.a (mon.0) 240 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: cephadm 2024-09-18T08:19:52.456677+0000 mgr.a (mgr.14152) 73 : cephadm [INF] Updating smithi070:/etc/ceph/ceph.conf 2024-09-18T08:19:54.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: cephadm 2024-09-18T08:19:52.456677+0000 mgr.a (mgr.14152) 73 : cephadm [INF] Updating smithi070:/etc/ceph/ceph.conf 2024-09-18T08:19:54.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: cephadm 2024-09-18T08:19:52.457423+0000 mgr.a (mgr.14152) 74 : cephadm [INF] Updating smithi086:/etc/ceph/ceph.conf 2024-09-18T08:19:54.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: cephadm 2024-09-18T08:19:52.457423+0000 mgr.a (mgr.14152) 74 : cephadm [INF] Updating smithi086:/etc/ceph/ceph.conf 2024-09-18T08:19:54.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: cephadm 2024-09-18T08:19:52.457622+0000 mgr.a (mgr.14152) 75 : cephadm [INF] Updating smithi172:/etc/ceph/ceph.conf 2024-09-18T08:19:54.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: cephadm 2024-09-18T08:19:52.457622+0000 mgr.a (mgr.14152) 75 : cephadm [INF] Updating smithi172:/etc/ceph/ceph.conf 2024-09-18T08:19:54.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: cephadm 2024-09-18T08:19:52.636819+0000 mgr.a (mgr.14152) 76 : cephadm [INF] Updating smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:54.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: cephadm 2024-09-18T08:19:52.636819+0000 mgr.a (mgr.14152) 76 : cephadm [INF] Updating smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:54.239 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: cephadm 2024-09-18T08:19:52.637227+0000 mgr.a (mgr.14152) 77 : cephadm [INF] Updating smithi070:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:54.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: cephadm 2024-09-18T08:19:52.637227+0000 mgr.a (mgr.14152) 77 : cephadm [INF] Updating smithi070:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:54.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: cephadm 2024-09-18T08:19:52.637875+0000 mgr.a (mgr.14152) 78 : cephadm [INF] Updating smithi086:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:54.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: cephadm 2024-09-18T08:19:52.637875+0000 mgr.a (mgr.14152) 78 : cephadm [INF] Updating smithi086:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:54.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.755965+0000 mon.a (mon.0) 226 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.755965+0000 mon.a (mon.0) 226 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.760933+0000 mon.a (mon.0) 227 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.760933+0000 mon.a (mon.0) 227 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.765910+0000 mon.a (mon.0) 228 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.765910+0000 mon.a (mon.0) 228 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.771250+0000 mon.a (mon.0) 229 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.771250+0000 mon.a (mon.0) 229 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.776428+0000 mon.a (mon.0) 230 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.776428+0000 mon.a (mon.0) 230 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.781320+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.781320+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.787329+0000 mon.a (mon.0) 232 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.787329+0000 mon.a (mon.0) 232 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.819916+0000 mon.a (mon.0) 233 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.241 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.819916+0000 mon.a (mon.0) 233 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.242 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.824492+0000 mon.a (mon.0) 234 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.242 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.824492+0000 mon.a (mon.0) 234 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.242 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.829058+0000 mon.a (mon.0) 235 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.242 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.829058+0000 mon.a (mon.0) 235 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.242 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.834004+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.242 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.834004+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.242 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: cephadm 2024-09-18T08:19:52.834556+0000 mgr.a (mgr.14152) 79 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-18T08:19:54.242 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: cephadm 2024-09-18T08:19:52.834556+0000 mgr.a (mgr.14152) 79 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-18T08:19:54.242 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.834977+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:54.242 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.834977+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:54.242 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.836085+0000 mon.a (mon.0) 238 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:19:54.242 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.836085+0000 mon.a (mon.0) 238 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:19:54.242 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.837005+0000 mon.a (mon.0) 239 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:54.242 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:52.837005+0000 mon.a (mon.0) 239 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:54.243 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: cephadm 2024-09-18T08:19:52.838101+0000 mgr.a (mgr.14152) 80 : cephadm [INF] Reconfiguring daemon mon.a on smithi070 2024-09-18T08:19:54.243 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: cephadm 2024-09-18T08:19:52.838101+0000 mgr.a (mgr.14152) 80 : cephadm [INF] Reconfiguring daemon mon.a on smithi070 2024-09-18T08:19:54.243 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.847740+0000 mgr.a (mgr.14152) 81 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:54.243 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: cluster 2024-09-18T08:19:52.847740+0000 mgr.a (mgr.14152) 81 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:54.243 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:53.364224+0000 mon.a (mon.0) 240 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.243 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:53 smithi172 bash[24990]: audit 2024-09-18T08:19:53.364224+0000 mon.a (mon.0) 240 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:41.082048+0000 mon.a (mon.0) 161 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:54.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:41.082048+0000 mon.a (mon.0) 161 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:54.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:41.086916+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:19:54.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:41.086916+0000 mon.a (mon.0) 162 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:19:54.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:41.087296+0000 mon.a (mon.0) 163 : cluster [INF] mon.a calling monitor election 2024-09-18T08:19:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:41.087296+0000 mon.a (mon.0) 163 : cluster [INF] mon.a calling monitor election 2024-09-18T08:19:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:41.108750+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:41.108750+0000 mon.a (mon.0) 164 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:42.081862+0000 mon.a (mon.0) 165 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:42.081862+0000 mon.a (mon.0) 165 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:42.845794+0000 mgr.a (mgr.14152) 68 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:42.845794+0000 mgr.a (mgr.14152) 68 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:43.081751+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:43.081751+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:43.083720+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-18T08:19:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:43.083720+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-18T08:19:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:44.082061+0000 mon.a (mon.0) 167 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:44.082061+0000 mon.a (mon.0) 167 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:54.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:44.846170+0000 mgr.a (mgr.14152) 69 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:54.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:44.846170+0000 mgr.a (mgr.14152) 69 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:54.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:45.082163+0000 mon.a (mon.0) 168 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:54.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:45.082163+0000 mon.a (mon.0) 168 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:54.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:45.363891+0000 mon.a (mon.0) 169 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:45.363891+0000 mon.a (mon.0) 169 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:46.082430+0000 mon.a (mon.0) 170 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:54.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:46.082430+0000 mon.a (mon.0) 170 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:54.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.133712+0000 mon.a (mon.0) 171 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-18T08:19:54.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.133712+0000 mon.a (mon.0) 171 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-18T08:19:54.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.144752+0000 mon.a (mon.0) 172 : cluster [DBG] monmap epoch 2 2024-09-18T08:19:54.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.144752+0000 mon.a (mon.0) 172 : cluster [DBG] monmap epoch 2 2024-09-18T08:19:54.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.144783+0000 mon.a (mon.0) 173 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:19:54.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.144783+0000 mon.a (mon.0) 173 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:19:54.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.144800+0000 mon.a (mon.0) 174 : cluster [DBG] last_changed 2024-09-18T08:19:41.081349+0000 2024-09-18T08:19:54.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.144800+0000 mon.a (mon.0) 174 : cluster [DBG] last_changed 2024-09-18T08:19:41.081349+0000 2024-09-18T08:19:54.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.144815+0000 mon.a (mon.0) 175 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:19:54.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.144815+0000 mon.a (mon.0) 175 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:19:54.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.144834+0000 mon.a (mon.0) 176 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:19:54.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.144834+0000 mon.a (mon.0) 176 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:19:54.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.144853+0000 mon.a (mon.0) 177 : cluster [DBG] election_strategy: 1 2024-09-18T08:19:54.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.144853+0000 mon.a (mon.0) 177 : cluster [DBG] election_strategy: 1 2024-09-18T08:19:54.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.144871+0000 mon.a (mon.0) 178 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:19:54.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.144871+0000 mon.a (mon.0) 178 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:19:54.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.144886+0000 mon.a (mon.0) 179 : cluster [DBG] 1: [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] mon.c 2024-09-18T08:19:54.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.144886+0000 mon.a (mon.0) 179 : cluster [DBG] 1: [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] mon.c 2024-09-18T08:19:54.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.145934+0000 mon.a (mon.0) 180 : cluster [DBG] fsmap 2024-09-18T08:19:54.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.145934+0000 mon.a (mon.0) 180 : cluster [DBG] fsmap 2024-09-18T08:19:54.845 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.145991+0000 mon.a (mon.0) 181 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:54.845 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.145991+0000 mon.a (mon.0) 181 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:54.845 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.146276+0000 mon.a (mon.0) 182 : cluster [DBG] mgrmap e13: a(active, since 85s) 2024-09-18T08:19:54.845 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.146276+0000 mon.a (mon.0) 182 : cluster [DBG] mgrmap e13: a(active, since 85s) 2024-09-18T08:19:54.845 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.146551+0000 mon.a (mon.0) 183 : cluster [INF] overall HEALTH_OK 2024-09-18T08:19:54.845 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.146551+0000 mon.a (mon.0) 183 : cluster [INF] overall HEALTH_OK 2024-09-18T08:19:54.845 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:46.153337+0000 mon.a (mon.0) 184 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.845 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:46.153337+0000 mon.a (mon.0) 184 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.845 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:46.159881+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.845 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:46.159881+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.845 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:46.167377+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.845 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:46.167377+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.845 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:46.174263+0000 mon.a (mon.0) 187 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.845 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:46.174263+0000 mon.a (mon.0) 187 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.846 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:46.229122+0000 mon.a (mon.0) 188 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:19:54.846 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:46.229122+0000 mon.a (mon.0) 188 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:19:54.846 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:46.363867+0000 mon.a (mon.0) 189 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.846 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:46.363867+0000 mon.a (mon.0) 189 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.846 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.846525+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-18T08:19:54.846 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:46.846525+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-18T08:19:54.846 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:47.082576+0000 mon.a (mon.0) 190 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:54.846 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:47.082576+0000 mon.a (mon.0) 190 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:54.846 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:47.369877+0000 mon.a (mon.0) 192 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:19:54.846 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:47.369877+0000 mon.a (mon.0) 192 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:19:54.847 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:47.370299+0000 mon.a (mon.0) 193 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.847 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:47.370299+0000 mon.a (mon.0) 193 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.847 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:47.370652+0000 mon.a (mon.0) 194 : cluster [INF] mon.a calling monitor election 2024-09-18T08:19:54.847 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:47.370652+0000 mon.a (mon.0) 194 : cluster [INF] mon.a calling monitor election 2024-09-18T08:19:54.847 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:47.371091+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-18T08:19:54.847 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:47.371091+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-18T08:19:54.847 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:47.389329+0000 mon.a (mon.0) 195 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:54.847 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:47.389329+0000 mon.a (mon.0) 195 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:19:54.847 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:47.457043+0000 mon.a (mon.0) 196 : audit [DBG] from='client.? 172.21.15.172:0/3572550958' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-18T08:19:54.847 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:47.457043+0000 mon.a (mon.0) 196 : audit [DBG] from='client.? 172.21.15.172:0/3572550958' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-18T08:19:54.847 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:48.364513+0000 mon.a (mon.0) 197 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.847 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:48.364513+0000 mon.a (mon.0) 197 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.847 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:48.846922+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-18T08:19:54.848 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:48.846922+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-18T08:19:54.848 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:49.364328+0000 mon.a (mon.0) 198 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.848 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:49.364328+0000 mon.a (mon.0) 198 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.848 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:50.364365+0000 mon.a (mon.0) 199 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.848 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:50.364365+0000 mon.a (mon.0) 199 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.848 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:50.847322+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-18T08:19:54.848 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:50.847322+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-18T08:19:54.848 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:51.364623+0000 mon.a (mon.0) 200 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.848 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:51.364623+0000 mon.a (mon.0) 200 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.848 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.364724+0000 mon.a (mon.0) 201 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.848 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.364724+0000 mon.a (mon.0) 201 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.848 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.389062+0000 mon.a (mon.0) 202 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-18T08:19:54.848 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.389062+0000 mon.a (mon.0) 202 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-18T08:19:54.848 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.395240+0000 mon.a (mon.0) 203 : cluster [DBG] monmap epoch 3 2024-09-18T08:19:54.849 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.395240+0000 mon.a (mon.0) 203 : cluster [DBG] monmap epoch 3 2024-09-18T08:19:54.849 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.395288+0000 mon.a (mon.0) 204 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:19:54.849 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.395288+0000 mon.a (mon.0) 204 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:19:54.849 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.395322+0000 mon.a (mon.0) 205 : cluster [DBG] last_changed 2024-09-18T08:19:47.364256+0000 2024-09-18T08:19:54.849 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.395322+0000 mon.a (mon.0) 205 : cluster [DBG] last_changed 2024-09-18T08:19:47.364256+0000 2024-09-18T08:19:54.849 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.395360+0000 mon.a (mon.0) 206 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:19:54.849 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.395360+0000 mon.a (mon.0) 206 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:19:54.849 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.395396+0000 mon.a (mon.0) 207 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:19:54.849 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.395396+0000 mon.a (mon.0) 207 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:19:54.849 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.395434+0000 mon.a (mon.0) 208 : cluster [DBG] election_strategy: 1 2024-09-18T08:19:54.849 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.395434+0000 mon.a (mon.0) 208 : cluster [DBG] election_strategy: 1 2024-09-18T08:19:54.849 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.395470+0000 mon.a (mon.0) 209 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:19:54.849 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.395470+0000 mon.a (mon.0) 209 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:19:54.849 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.395507+0000 mon.a (mon.0) 210 : cluster [DBG] 1: [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] mon.c 2024-09-18T08:19:54.850 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.395507+0000 mon.a (mon.0) 210 : cluster [DBG] 1: [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] mon.c 2024-09-18T08:19:54.850 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.395557+0000 mon.a (mon.0) 211 : cluster [DBG] 2: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-18T08:19:54.850 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.395557+0000 mon.a (mon.0) 211 : cluster [DBG] 2: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-18T08:19:54.851 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.416465+0000 mon.a (mon.0) 212 : cluster [DBG] fsmap 2024-09-18T08:19:54.851 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.416465+0000 mon.a (mon.0) 212 : cluster [DBG] fsmap 2024-09-18T08:19:54.851 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.416557+0000 mon.a (mon.0) 213 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:54.851 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.416557+0000 mon.a (mon.0) 213 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:54.851 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.416888+0000 mon.a (mon.0) 214 : cluster [DBG] mgrmap e13: a(active, since 91s) 2024-09-18T08:19:54.851 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.416888+0000 mon.a (mon.0) 214 : cluster [DBG] mgrmap e13: a(active, since 91s) 2024-09-18T08:19:54.851 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.417295+0000 mon.a (mon.0) 215 : cluster [WRN] Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-18T08:19:54.851 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.417295+0000 mon.a (mon.0) 215 : cluster [WRN] Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-09-18T08:19:54.851 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.425571+0000 mon.a (mon.0) 216 : cluster [WRN] Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-18T08:19:54.851 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.425571+0000 mon.a (mon.0) 216 : cluster [WRN] Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-09-18T08:19:54.851 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.425611+0000 mon.a (mon.0) 217 : cluster [WRN] [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-18T08:19:54.851 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.425611+0000 mon.a (mon.0) 217 : cluster [WRN] [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-09-18T08:19:54.852 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.425662+0000 mon.a (mon.0) 218 : cluster [WRN] mon.b (rank 2) addr [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] is down (out of quorum) 2024-09-18T08:19:54.852 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.425662+0000 mon.a (mon.0) 218 : cluster [WRN] mon.b (rank 2) addr [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] is down (out of quorum) 2024-09-18T08:19:54.852 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.430114+0000 mon.a (mon.0) 219 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.852 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.430114+0000 mon.a (mon.0) 219 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.852 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.435282+0000 mon.a (mon.0) 220 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.852 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.435282+0000 mon.a (mon.0) 220 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.852 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.439999+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.852 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.439999+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.852 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.445374+0000 mon.a (mon.0) 222 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.852 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.445374+0000 mon.a (mon.0) 222 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.852 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.450212+0000 mon.a (mon.0) 223 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.852 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.450212+0000 mon.a (mon.0) 223 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.852 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.452025+0000 mon.a (mon.0) 224 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:54.853 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.452025+0000 mon.a (mon.0) 224 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:54.853 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.454070+0000 mon.a (mon.0) 225 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:19:54.853 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.454070+0000 mon.a (mon.0) 225 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:19:54.853 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cephadm 2024-09-18T08:19:52.456677+0000 mgr.a (mgr.14152) 73 : cephadm [INF] Updating smithi070:/etc/ceph/ceph.conf 2024-09-18T08:19:54.853 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cephadm 2024-09-18T08:19:52.456677+0000 mgr.a (mgr.14152) 73 : cephadm [INF] Updating smithi070:/etc/ceph/ceph.conf 2024-09-18T08:19:54.853 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cephadm 2024-09-18T08:19:52.457423+0000 mgr.a (mgr.14152) 74 : cephadm [INF] Updating smithi086:/etc/ceph/ceph.conf 2024-09-18T08:19:54.853 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cephadm 2024-09-18T08:19:52.457423+0000 mgr.a (mgr.14152) 74 : cephadm [INF] Updating smithi086:/etc/ceph/ceph.conf 2024-09-18T08:19:54.853 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cephadm 2024-09-18T08:19:52.457622+0000 mgr.a (mgr.14152) 75 : cephadm [INF] Updating smithi172:/etc/ceph/ceph.conf 2024-09-18T08:19:54.853 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cephadm 2024-09-18T08:19:52.457622+0000 mgr.a (mgr.14152) 75 : cephadm [INF] Updating smithi172:/etc/ceph/ceph.conf 2024-09-18T08:19:54.853 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cephadm 2024-09-18T08:19:52.636819+0000 mgr.a (mgr.14152) 76 : cephadm [INF] Updating smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:54.853 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cephadm 2024-09-18T08:19:52.636819+0000 mgr.a (mgr.14152) 76 : cephadm [INF] Updating smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:54.853 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cephadm 2024-09-18T08:19:52.637227+0000 mgr.a (mgr.14152) 77 : cephadm [INF] Updating smithi070:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:54.853 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cephadm 2024-09-18T08:19:52.637227+0000 mgr.a (mgr.14152) 77 : cephadm [INF] Updating smithi070:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:54.853 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cephadm 2024-09-18T08:19:52.637875+0000 mgr.a (mgr.14152) 78 : cephadm [INF] Updating smithi086:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:54.853 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cephadm 2024-09-18T08:19:52.637875+0000 mgr.a (mgr.14152) 78 : cephadm [INF] Updating smithi086:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:19:54.854 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.755965+0000 mon.a (mon.0) 226 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.854 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.755965+0000 mon.a (mon.0) 226 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.854 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.760933+0000 mon.a (mon.0) 227 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.854 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.760933+0000 mon.a (mon.0) 227 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.854 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.765910+0000 mon.a (mon.0) 228 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.854 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.765910+0000 mon.a (mon.0) 228 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.854 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.771250+0000 mon.a (mon.0) 229 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.854 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.771250+0000 mon.a (mon.0) 229 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.854 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.776428+0000 mon.a (mon.0) 230 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.854 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.776428+0000 mon.a (mon.0) 230 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.854 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.781320+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.854 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.781320+0000 mon.a (mon.0) 231 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.854 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.787329+0000 mon.a (mon.0) 232 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.855 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.787329+0000 mon.a (mon.0) 232 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.855 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.819916+0000 mon.a (mon.0) 233 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.855 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.819916+0000 mon.a (mon.0) 233 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.855 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.824492+0000 mon.a (mon.0) 234 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.855 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.824492+0000 mon.a (mon.0) 234 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.855 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.829058+0000 mon.a (mon.0) 235 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.855 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.829058+0000 mon.a (mon.0) 235 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.855 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.834004+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.855 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.834004+0000 mon.a (mon.0) 236 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:54.855 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cephadm 2024-09-18T08:19:52.834556+0000 mgr.a (mgr.14152) 79 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-18T08:19:54.855 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cephadm 2024-09-18T08:19:52.834556+0000 mgr.a (mgr.14152) 79 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-18T08:19:54.855 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.834977+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:54.855 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.834977+0000 mon.a (mon.0) 237 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:54.855 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.836085+0000 mon.a (mon.0) 238 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:19:54.856 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.836085+0000 mon.a (mon.0) 238 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:19:54.856 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.837005+0000 mon.a (mon.0) 239 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:54.856 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:52.837005+0000 mon.a (mon.0) 239 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:54.856 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cephadm 2024-09-18T08:19:52.838101+0000 mgr.a (mgr.14152) 80 : cephadm [INF] Reconfiguring daemon mon.a on smithi070 2024-09-18T08:19:54.856 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cephadm 2024-09-18T08:19:52.838101+0000 mgr.a (mgr.14152) 80 : cephadm [INF] Reconfiguring daemon mon.a on smithi070 2024-09-18T08:19:54.856 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.847740+0000 mgr.a (mgr.14152) 81 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:54.856 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:52.847740+0000 mgr.a (mgr.14152) 81 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:54.856 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:53.364224+0000 mon.a (mon.0) 240 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.856 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: audit 2024-09-18T08:19:53.364224+0000 mon.a (mon.0) 240 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:54.856 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:49.366082+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-18T08:19:54.856 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:49.366082+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-18T08:19:54.856 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.411562+0000 mon.b (mon.2) 2 : cluster [INF] mon.b calling monitor election 2024-09-18T08:19:54.856 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.411562+0000 mon.b (mon.2) 2 : cluster [INF] mon.b calling monitor election 2024-09-18T08:19:54.857 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.412241+0000 mon.a (mon.0) 242 : cluster [INF] mon.a calling monitor election 2024-09-18T08:19:54.857 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.412241+0000 mon.a (mon.0) 242 : cluster [INF] mon.a calling monitor election 2024-09-18T08:19:54.857 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.412465+0000 mon.c (mon.1) 3 : cluster [INF] mon.c calling monitor election 2024-09-18T08:19:54.857 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.412465+0000 mon.c (mon.1) 3 : cluster [INF] mon.c calling monitor election 2024-09-18T08:19:54.857 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.434463+0000 mon.a (mon.0) 243 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-18T08:19:54.857 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.434463+0000 mon.a (mon.0) 243 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-18T08:19:54.857 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.445665+0000 mon.a (mon.0) 244 : cluster [DBG] monmap epoch 3 2024-09-18T08:19:54.857 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.445665+0000 mon.a (mon.0) 244 : cluster [DBG] monmap epoch 3 2024-09-18T08:19:54.857 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.445683+0000 mon.a (mon.0) 245 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:19:54.857 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.445683+0000 mon.a (mon.0) 245 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:19:54.857 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.445690+0000 mon.a (mon.0) 246 : cluster [DBG] last_changed 2024-09-18T08:19:47.364256+0000 2024-09-18T08:19:54.857 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.445690+0000 mon.a (mon.0) 246 : cluster [DBG] last_changed 2024-09-18T08:19:47.364256+0000 2024-09-18T08:19:54.857 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.445698+0000 mon.a (mon.0) 247 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:19:54.857 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.445698+0000 mon.a (mon.0) 247 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:19:54.858 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.445706+0000 mon.a (mon.0) 248 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:19:54.858 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.445706+0000 mon.a (mon.0) 248 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:19:54.858 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.445714+0000 mon.a (mon.0) 249 : cluster [DBG] election_strategy: 1 2024-09-18T08:19:54.858 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.445714+0000 mon.a (mon.0) 249 : cluster [DBG] election_strategy: 1 2024-09-18T08:19:54.858 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.445722+0000 mon.a (mon.0) 250 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:19:54.858 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.445722+0000 mon.a (mon.0) 250 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:19:54.858 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.445731+0000 mon.a (mon.0) 251 : cluster [DBG] 1: [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] mon.c 2024-09-18T08:19:54.858 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.445731+0000 mon.a (mon.0) 251 : cluster [DBG] 1: [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] mon.c 2024-09-18T08:19:54.858 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.445739+0000 mon.a (mon.0) 252 : cluster [DBG] 2: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-18T08:19:54.858 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.445739+0000 mon.a (mon.0) 252 : cluster [DBG] 2: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-18T08:19:54.858 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.446241+0000 mon.a (mon.0) 253 : cluster [DBG] fsmap 2024-09-18T08:19:54.858 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.446241+0000 mon.a (mon.0) 253 : cluster [DBG] fsmap 2024-09-18T08:19:54.858 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.446265+0000 mon.a (mon.0) 254 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:54.858 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.446265+0000 mon.a (mon.0) 254 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:54.859 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.446420+0000 mon.a (mon.0) 255 : cluster [DBG] mgrmap e13: a(active, since 93s) 2024-09-18T08:19:54.859 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.446420+0000 mon.a (mon.0) 255 : cluster [DBG] mgrmap e13: a(active, since 93s) 2024-09-18T08:19:54.859 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.446560+0000 mon.a (mon.0) 256 : cluster [INF] Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-18T08:19:54.859 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.446560+0000 mon.a (mon.0) 256 : cluster [INF] Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-18T08:19:54.859 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.446574+0000 mon.a (mon.0) 257 : cluster [INF] Cluster is now healthy 2024-09-18T08:19:54.859 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.446574+0000 mon.a (mon.0) 257 : cluster [INF] Cluster is now healthy 2024-09-18T08:19:54.859 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.449526+0000 mon.a (mon.0) 258 : cluster [INF] overall HEALTH_OK 2024-09-18T08:19:54.859 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:54 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.449526+0000 mon.a (mon.0) 258 : cluster [INF] overall HEALTH_OK 2024-09-18T08:19:54.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:49.366082+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-18T08:19:54.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:49.366082+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-18T08:19:54.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.411562+0000 mon.b (mon.2) 2 : cluster [INF] mon.b calling monitor election 2024-09-18T08:19:54.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.411562+0000 mon.b (mon.2) 2 : cluster [INF] mon.b calling monitor election 2024-09-18T08:19:54.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.412241+0000 mon.a (mon.0) 242 : cluster [INF] mon.a calling monitor election 2024-09-18T08:19:54.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.412241+0000 mon.a (mon.0) 242 : cluster [INF] mon.a calling monitor election 2024-09-18T08:19:54.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.412465+0000 mon.c (mon.1) 3 : cluster [INF] mon.c calling monitor election 2024-09-18T08:19:54.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.412465+0000 mon.c (mon.1) 3 : cluster [INF] mon.c calling monitor election 2024-09-18T08:19:54.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.434463+0000 mon.a (mon.0) 243 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-18T08:19:54.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.434463+0000 mon.a (mon.0) 243 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-18T08:19:54.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.445665+0000 mon.a (mon.0) 244 : cluster [DBG] monmap epoch 3 2024-09-18T08:19:54.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.445665+0000 mon.a (mon.0) 244 : cluster [DBG] monmap epoch 3 2024-09-18T08:19:54.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.445683+0000 mon.a (mon.0) 245 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:19:54.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.445683+0000 mon.a (mon.0) 245 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:19:54.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.445690+0000 mon.a (mon.0) 246 : cluster [DBG] last_changed 2024-09-18T08:19:47.364256+0000 2024-09-18T08:19:54.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.445690+0000 mon.a (mon.0) 246 : cluster [DBG] last_changed 2024-09-18T08:19:47.364256+0000 2024-09-18T08:19:54.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.445698+0000 mon.a (mon.0) 247 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:19:54.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.445698+0000 mon.a (mon.0) 247 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:19:54.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.445706+0000 mon.a (mon.0) 248 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:19:54.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.445706+0000 mon.a (mon.0) 248 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:19:54.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.445714+0000 mon.a (mon.0) 249 : cluster [DBG] election_strategy: 1 2024-09-18T08:19:54.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.445714+0000 mon.a (mon.0) 249 : cluster [DBG] election_strategy: 1 2024-09-18T08:19:54.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.445722+0000 mon.a (mon.0) 250 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:19:54.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.445722+0000 mon.a (mon.0) 250 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:19:54.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.445731+0000 mon.a (mon.0) 251 : cluster [DBG] 1: [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] mon.c 2024-09-18T08:19:54.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.445731+0000 mon.a (mon.0) 251 : cluster [DBG] 1: [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] mon.c 2024-09-18T08:19:54.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.445739+0000 mon.a (mon.0) 252 : cluster [DBG] 2: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-18T08:19:54.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.445739+0000 mon.a (mon.0) 252 : cluster [DBG] 2: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-18T08:19:54.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.446241+0000 mon.a (mon.0) 253 : cluster [DBG] fsmap 2024-09-18T08:19:54.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.446241+0000 mon.a (mon.0) 253 : cluster [DBG] fsmap 2024-09-18T08:19:54.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.446265+0000 mon.a (mon.0) 254 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:54.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.446265+0000 mon.a (mon.0) 254 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:54.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.446420+0000 mon.a (mon.0) 255 : cluster [DBG] mgrmap e13: a(active, since 93s) 2024-09-18T08:19:54.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.446420+0000 mon.a (mon.0) 255 : cluster [DBG] mgrmap e13: a(active, since 93s) 2024-09-18T08:19:54.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.446560+0000 mon.a (mon.0) 256 : cluster [INF] Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-18T08:19:54.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.446560+0000 mon.a (mon.0) 256 : cluster [INF] Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-18T08:19:54.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.446574+0000 mon.a (mon.0) 257 : cluster [INF] Cluster is now healthy 2024-09-18T08:19:54.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.446574+0000 mon.a (mon.0) 257 : cluster [INF] Cluster is now healthy 2024-09-18T08:19:54.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.449526+0000 mon.a (mon.0) 258 : cluster [INF] overall HEALTH_OK 2024-09-18T08:19:54.987 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:54 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.449526+0000 mon.a (mon.0) 258 : cluster [INF] overall HEALTH_OK 2024-09-18T08:19:55.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:49.366082+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-18T08:19:55.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:49.366082+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-18T08:19:55.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.411562+0000 mon.b (mon.2) 2 : cluster [INF] mon.b calling monitor election 2024-09-18T08:19:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.411562+0000 mon.b (mon.2) 2 : cluster [INF] mon.b calling monitor election 2024-09-18T08:19:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.412241+0000 mon.a (mon.0) 242 : cluster [INF] mon.a calling monitor election 2024-09-18T08:19:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.412241+0000 mon.a (mon.0) 242 : cluster [INF] mon.a calling monitor election 2024-09-18T08:19:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.412465+0000 mon.c (mon.1) 3 : cluster [INF] mon.c calling monitor election 2024-09-18T08:19:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.412465+0000 mon.c (mon.1) 3 : cluster [INF] mon.c calling monitor election 2024-09-18T08:19:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.434463+0000 mon.a (mon.0) 243 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-18T08:19:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.434463+0000 mon.a (mon.0) 243 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-18T08:19:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.445665+0000 mon.a (mon.0) 244 : cluster [DBG] monmap epoch 3 2024-09-18T08:19:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.445665+0000 mon.a (mon.0) 244 : cluster [DBG] monmap epoch 3 2024-09-18T08:19:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.445683+0000 mon.a (mon.0) 245 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:19:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.445683+0000 mon.a (mon.0) 245 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:19:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.445690+0000 mon.a (mon.0) 246 : cluster [DBG] last_changed 2024-09-18T08:19:47.364256+0000 2024-09-18T08:19:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.445690+0000 mon.a (mon.0) 246 : cluster [DBG] last_changed 2024-09-18T08:19:47.364256+0000 2024-09-18T08:19:55.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.445698+0000 mon.a (mon.0) 247 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:19:55.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.445698+0000 mon.a (mon.0) 247 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:19:55.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.445706+0000 mon.a (mon.0) 248 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:19:55.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.445706+0000 mon.a (mon.0) 248 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:19:55.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.445714+0000 mon.a (mon.0) 249 : cluster [DBG] election_strategy: 1 2024-09-18T08:19:55.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.445714+0000 mon.a (mon.0) 249 : cluster [DBG] election_strategy: 1 2024-09-18T08:19:55.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.445722+0000 mon.a (mon.0) 250 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:19:55.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.445722+0000 mon.a (mon.0) 250 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:19:55.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.445731+0000 mon.a (mon.0) 251 : cluster [DBG] 1: [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] mon.c 2024-09-18T08:19:55.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.445731+0000 mon.a (mon.0) 251 : cluster [DBG] 1: [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] mon.c 2024-09-18T08:19:55.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.445739+0000 mon.a (mon.0) 252 : cluster [DBG] 2: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-18T08:19:55.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.445739+0000 mon.a (mon.0) 252 : cluster [DBG] 2: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-18T08:19:55.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.446241+0000 mon.a (mon.0) 253 : cluster [DBG] fsmap 2024-09-18T08:19:55.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.446241+0000 mon.a (mon.0) 253 : cluster [DBG] fsmap 2024-09-18T08:19:55.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.446265+0000 mon.a (mon.0) 254 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:55.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.446265+0000 mon.a (mon.0) 254 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-18T08:19:55.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.446420+0000 mon.a (mon.0) 255 : cluster [DBG] mgrmap e13: a(active, since 93s) 2024-09-18T08:19:55.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.446420+0000 mon.a (mon.0) 255 : cluster [DBG] mgrmap e13: a(active, since 93s) 2024-09-18T08:19:55.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.446560+0000 mon.a (mon.0) 256 : cluster [INF] Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-18T08:19:55.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.446560+0000 mon.a (mon.0) 256 : cluster [INF] Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-09-18T08:19:55.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.446574+0000 mon.a (mon.0) 257 : cluster [INF] Cluster is now healthy 2024-09-18T08:19:55.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.446574+0000 mon.a (mon.0) 257 : cluster [INF] Cluster is now healthy 2024-09-18T08:19:55.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.449526+0000 mon.a (mon.0) 258 : cluster [INF] overall HEALTH_OK 2024-09-18T08:19:55.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:54 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.449526+0000 mon.a (mon.0) 258 : cluster [INF] overall HEALTH_OK 2024-09-18T08:19:56.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:55 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.848105+0000 mgr.a (mgr.14152) 82 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:56.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:55 smithi086 bash[24678]: cluster 2024-09-18T08:19:54.848105+0000 mgr.a (mgr.14152) 82 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:56.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:55 smithi086 bash[24678]: audit 2024-09-18T08:19:55.046301+0000 mon.a (mon.0) 259 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:56.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:55 smithi086 bash[24678]: audit 2024-09-18T08:19:55.046301+0000 mon.a (mon.0) 259 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:56.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:55 smithi086 bash[24678]: audit 2024-09-18T08:19:55.052290+0000 mon.a (mon.0) 260 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:56.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:55 smithi086 bash[24678]: audit 2024-09-18T08:19:55.052290+0000 mon.a (mon.0) 260 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:56.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:55 smithi086 bash[24678]: audit 2024-09-18T08:19:55.053912+0000 mon.a (mon.0) 261 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:56.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:55 smithi086 bash[24678]: audit 2024-09-18T08:19:55.053912+0000 mon.a (mon.0) 261 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:56.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:55 smithi086 bash[24678]: audit 2024-09-18T08:19:55.055203+0000 mon.a (mon.0) 262 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:19:56.094 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:55 smithi086 bash[24678]: audit 2024-09-18T08:19:55.055203+0000 mon.a (mon.0) 262 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:19:56.094 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:55 smithi086 bash[24678]: audit 2024-09-18T08:19:55.056769+0000 mon.a (mon.0) 263 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:56.094 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:55 smithi086 bash[24678]: audit 2024-09-18T08:19:55.056769+0000 mon.a (mon.0) 263 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:56.094 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:55 smithi086 bash[24678]: audit 2024-09-18T08:19:55.365092+0000 mon.a (mon.0) 264 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:56.094 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:55 smithi086 bash[24678]: audit 2024-09-18T08:19:55.365092+0000 mon.a (mon.0) 264 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:56.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:55 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.848105+0000 mgr.a (mgr.14152) 82 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:56.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:55 smithi070 bash[22844]: cluster 2024-09-18T08:19:54.848105+0000 mgr.a (mgr.14152) 82 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:56.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:55 smithi070 bash[22844]: audit 2024-09-18T08:19:55.046301+0000 mon.a (mon.0) 259 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:56.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:55 smithi070 bash[22844]: audit 2024-09-18T08:19:55.046301+0000 mon.a (mon.0) 259 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:56.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:55 smithi070 bash[22844]: audit 2024-09-18T08:19:55.052290+0000 mon.a (mon.0) 260 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:56.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:55 smithi070 bash[22844]: audit 2024-09-18T08:19:55.052290+0000 mon.a (mon.0) 260 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:56.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:55 smithi070 bash[22844]: audit 2024-09-18T08:19:55.053912+0000 mon.a (mon.0) 261 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:56.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:55 smithi070 bash[22844]: audit 2024-09-18T08:19:55.053912+0000 mon.a (mon.0) 261 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:56.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:55 smithi070 bash[22844]: audit 2024-09-18T08:19:55.055203+0000 mon.a (mon.0) 262 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:19:56.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:55 smithi070 bash[22844]: audit 2024-09-18T08:19:55.055203+0000 mon.a (mon.0) 262 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:19:56.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:55 smithi070 bash[22844]: audit 2024-09-18T08:19:55.056769+0000 mon.a (mon.0) 263 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:56.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:55 smithi070 bash[22844]: audit 2024-09-18T08:19:55.056769+0000 mon.a (mon.0) 263 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:56.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:55 smithi070 bash[22844]: audit 2024-09-18T08:19:55.365092+0000 mon.a (mon.0) 264 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:56.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:55 smithi070 bash[22844]: audit 2024-09-18T08:19:55.365092+0000 mon.a (mon.0) 264 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:56.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:55 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.848105+0000 mgr.a (mgr.14152) 82 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:56.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:55 smithi172 bash[24990]: cluster 2024-09-18T08:19:54.848105+0000 mgr.a (mgr.14152) 82 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:56.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:55 smithi172 bash[24990]: audit 2024-09-18T08:19:55.046301+0000 mon.a (mon.0) 259 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:56.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:55 smithi172 bash[24990]: audit 2024-09-18T08:19:55.046301+0000 mon.a (mon.0) 259 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:56.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:55 smithi172 bash[24990]: audit 2024-09-18T08:19:55.052290+0000 mon.a (mon.0) 260 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:56.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:55 smithi172 bash[24990]: audit 2024-09-18T08:19:55.052290+0000 mon.a (mon.0) 260 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:56.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:55 smithi172 bash[24990]: audit 2024-09-18T08:19:55.053912+0000 mon.a (mon.0) 261 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:56.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:55 smithi172 bash[24990]: audit 2024-09-18T08:19:55.053912+0000 mon.a (mon.0) 261 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:56.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:55 smithi172 bash[24990]: audit 2024-09-18T08:19:55.055203+0000 mon.a (mon.0) 262 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:19:56.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:55 smithi172 bash[24990]: audit 2024-09-18T08:19:55.055203+0000 mon.a (mon.0) 262 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:19:56.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:55 smithi172 bash[24990]: audit 2024-09-18T08:19:55.056769+0000 mon.a (mon.0) 263 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:56.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:55 smithi172 bash[24990]: audit 2024-09-18T08:19:55.056769+0000 mon.a (mon.0) 263 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:56.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:55 smithi172 bash[24990]: audit 2024-09-18T08:19:55.365092+0000 mon.a (mon.0) 264 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:56.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:55 smithi172 bash[24990]: audit 2024-09-18T08:19:55.365092+0000 mon.a (mon.0) 264 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:19:56.733 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:19:56 smithi070 bash[23095]: debug 2024-09-18T08:19:56.359+0000 7f6f626f9640 -1 mgr.server handle_report got status from non-daemon mon.b 2024-09-18T08:19:57.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:56 smithi070 bash[22844]: cephadm 2024-09-18T08:19:55.053455+0000 mgr.a (mgr.14152) 83 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-18T08:19:57.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:56 smithi070 bash[22844]: cephadm 2024-09-18T08:19:55.053455+0000 mgr.a (mgr.14152) 83 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-18T08:19:57.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:56 smithi070 bash[22844]: cephadm 2024-09-18T08:19:55.058501+0000 mgr.a (mgr.14152) 84 : cephadm [INF] Reconfiguring daemon mon.b on smithi086 2024-09-18T08:19:57.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:56 smithi070 bash[22844]: cephadm 2024-09-18T08:19:55.058501+0000 mgr.a (mgr.14152) 84 : cephadm [INF] Reconfiguring daemon mon.b on smithi086 2024-09-18T08:19:57.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:56 smithi172 bash[24990]: cephadm 2024-09-18T08:19:55.053455+0000 mgr.a (mgr.14152) 83 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-18T08:19:57.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:56 smithi172 bash[24990]: cephadm 2024-09-18T08:19:55.053455+0000 mgr.a (mgr.14152) 83 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-18T08:19:57.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:56 smithi172 bash[24990]: cephadm 2024-09-18T08:19:55.058501+0000 mgr.a (mgr.14152) 84 : cephadm [INF] Reconfiguring daemon mon.b on smithi086 2024-09-18T08:19:57.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:56 smithi172 bash[24990]: cephadm 2024-09-18T08:19:55.058501+0000 mgr.a (mgr.14152) 84 : cephadm [INF] Reconfiguring daemon mon.b on smithi086 2024-09-18T08:19:57.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:56 smithi086 bash[24678]: cephadm 2024-09-18T08:19:55.053455+0000 mgr.a (mgr.14152) 83 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-18T08:19:57.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:56 smithi086 bash[24678]: cephadm 2024-09-18T08:19:55.053455+0000 mgr.a (mgr.14152) 83 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-18T08:19:57.343 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:56 smithi086 bash[24678]: cephadm 2024-09-18T08:19:55.058501+0000 mgr.a (mgr.14152) 84 : cephadm [INF] Reconfiguring daemon mon.b on smithi086 2024-09-18T08:19:57.343 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:56 smithi086 bash[24678]: cephadm 2024-09-18T08:19:55.058501+0000 mgr.a (mgr.14152) 84 : cephadm [INF] Reconfiguring daemon mon.b on smithi086 2024-09-18T08:19:57.829 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:19:58.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:57 smithi070 bash[22844]: cluster 2024-09-18T08:19:56.848451+0000 mgr.a (mgr.14152) 85 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:58.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:57 smithi070 bash[22844]: cluster 2024-09-18T08:19:56.848451+0000 mgr.a (mgr.14152) 85 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:58.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:57 smithi070 bash[22844]: audit 2024-09-18T08:19:57.267159+0000 mon.a (mon.0) 265 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:58.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:57 smithi070 bash[22844]: audit 2024-09-18T08:19:57.267159+0000 mon.a (mon.0) 265 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:58.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:57 smithi070 bash[22844]: audit 2024-09-18T08:19:57.273773+0000 mon.a (mon.0) 266 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:58.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:57 smithi070 bash[22844]: audit 2024-09-18T08:19:57.273773+0000 mon.a (mon.0) 266 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:58.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:57 smithi070 bash[22844]: audit 2024-09-18T08:19:57.275791+0000 mon.a (mon.0) 267 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:58.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:57 smithi070 bash[22844]: audit 2024-09-18T08:19:57.275791+0000 mon.a (mon.0) 267 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:58.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:57 smithi070 bash[22844]: audit 2024-09-18T08:19:57.277603+0000 mon.a (mon.0) 268 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:19:58.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:57 smithi070 bash[22844]: audit 2024-09-18T08:19:57.277603+0000 mon.a (mon.0) 268 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:19:58.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:57 smithi070 bash[22844]: audit 2024-09-18T08:19:57.279365+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:58.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:57 smithi070 bash[22844]: audit 2024-09-18T08:19:57.279365+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:58.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:57 smithi172 bash[24990]: cluster 2024-09-18T08:19:56.848451+0000 mgr.a (mgr.14152) 85 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:58.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:57 smithi172 bash[24990]: cluster 2024-09-18T08:19:56.848451+0000 mgr.a (mgr.14152) 85 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:58.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:57 smithi172 bash[24990]: audit 2024-09-18T08:19:57.267159+0000 mon.a (mon.0) 265 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:58.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:57 smithi172 bash[24990]: audit 2024-09-18T08:19:57.267159+0000 mon.a (mon.0) 265 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:58.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:57 smithi172 bash[24990]: audit 2024-09-18T08:19:57.273773+0000 mon.a (mon.0) 266 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:58.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:57 smithi172 bash[24990]: audit 2024-09-18T08:19:57.273773+0000 mon.a (mon.0) 266 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:58.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:57 smithi172 bash[24990]: audit 2024-09-18T08:19:57.275791+0000 mon.a (mon.0) 267 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:58.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:57 smithi172 bash[24990]: audit 2024-09-18T08:19:57.275791+0000 mon.a (mon.0) 267 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:58.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:57 smithi172 bash[24990]: audit 2024-09-18T08:19:57.277603+0000 mon.a (mon.0) 268 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:19:58.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:57 smithi172 bash[24990]: audit 2024-09-18T08:19:57.277603+0000 mon.a (mon.0) 268 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:19:58.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:57 smithi172 bash[24990]: audit 2024-09-18T08:19:57.279365+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:58.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:57 smithi172 bash[24990]: audit 2024-09-18T08:19:57.279365+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:58.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:57 smithi086 bash[24678]: cluster 2024-09-18T08:19:56.848451+0000 mgr.a (mgr.14152) 85 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:58.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:57 smithi086 bash[24678]: cluster 2024-09-18T08:19:56.848451+0000 mgr.a (mgr.14152) 85 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:58.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:57 smithi086 bash[24678]: audit 2024-09-18T08:19:57.267159+0000 mon.a (mon.0) 265 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:58.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:57 smithi086 bash[24678]: audit 2024-09-18T08:19:57.267159+0000 mon.a (mon.0) 265 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:58.343 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:57 smithi086 bash[24678]: audit 2024-09-18T08:19:57.273773+0000 mon.a (mon.0) 266 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:58.343 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:57 smithi086 bash[24678]: audit 2024-09-18T08:19:57.273773+0000 mon.a (mon.0) 266 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:58.343 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:57 smithi086 bash[24678]: audit 2024-09-18T08:19:57.275791+0000 mon.a (mon.0) 267 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:58.343 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:57 smithi086 bash[24678]: audit 2024-09-18T08:19:57.275791+0000 mon.a (mon.0) 267 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:19:58.343 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:57 smithi086 bash[24678]: audit 2024-09-18T08:19:57.277603+0000 mon.a (mon.0) 268 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:19:58.343 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:57 smithi086 bash[24678]: audit 2024-09-18T08:19:57.277603+0000 mon.a (mon.0) 268 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:19:58.343 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:57 smithi086 bash[24678]: audit 2024-09-18T08:19:57.279365+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:58.343 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:57 smithi086 bash[24678]: audit 2024-09-18T08:19:57.279365+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:58.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:58 smithi172 bash[24990]: cephadm 2024-09-18T08:19:57.275170+0000 mgr.a (mgr.14152) 86 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-18T08:19:58.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:58 smithi172 bash[24990]: cephadm 2024-09-18T08:19:57.275170+0000 mgr.a (mgr.14152) 86 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-18T08:19:58.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:58 smithi172 bash[24990]: cephadm 2024-09-18T08:19:57.281337+0000 mgr.a (mgr.14152) 87 : cephadm [INF] Reconfiguring daemon mon.c on smithi172 2024-09-18T08:19:58.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:58 smithi172 bash[24990]: cephadm 2024-09-18T08:19:57.281337+0000 mgr.a (mgr.14152) 87 : cephadm [INF] Reconfiguring daemon mon.c on smithi172 2024-09-18T08:19:59.113 INFO:teuthology.orchestra.run.smithi070.stdout:# minimal ceph.conf for 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:19:59.113 INFO:teuthology.orchestra.run.smithi070.stdout:[global] 2024-09-18T08:19:59.113 INFO:teuthology.orchestra.run.smithi070.stdout: fsid = 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:19:59.113 INFO:teuthology.orchestra.run.smithi070.stdout: mon_host = [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] 2024-09-18T08:19:59.125 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:58 smithi070 bash[22844]: cephadm 2024-09-18T08:19:57.275170+0000 mgr.a (mgr.14152) 86 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-18T08:19:59.125 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:58 smithi070 bash[22844]: cephadm 2024-09-18T08:19:57.275170+0000 mgr.a (mgr.14152) 86 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-18T08:19:59.125 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:58 smithi070 bash[22844]: cephadm 2024-09-18T08:19:57.281337+0000 mgr.a (mgr.14152) 87 : cephadm [INF] Reconfiguring daemon mon.c on smithi172 2024-09-18T08:19:59.125 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:58 smithi070 bash[22844]: cephadm 2024-09-18T08:19:57.281337+0000 mgr.a (mgr.14152) 87 : cephadm [INF] Reconfiguring daemon mon.c on smithi172 2024-09-18T08:19:59.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:58 smithi086 bash[24678]: cephadm 2024-09-18T08:19:57.275170+0000 mgr.a (mgr.14152) 86 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-18T08:19:59.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:58 smithi086 bash[24678]: cephadm 2024-09-18T08:19:57.275170+0000 mgr.a (mgr.14152) 86 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-18T08:19:59.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:58 smithi086 bash[24678]: cephadm 2024-09-18T08:19:57.281337+0000 mgr.a (mgr.14152) 87 : cephadm [INF] Reconfiguring daemon mon.c on smithi172 2024-09-18T08:19:59.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:58 smithi086 bash[24678]: cephadm 2024-09-18T08:19:57.281337+0000 mgr.a (mgr.14152) 87 : cephadm [INF] Reconfiguring daemon mon.c on smithi172 2024-09-18T08:19:59.642 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-18T08:19:59.643 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-18T08:19:59.643 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd of=/etc/ceph/ceph.conf 2024-09-18T08:19:59.656 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-18T08:19:59.656 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-18T08:19:59.710 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-18T08:19:59.710 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd of=/etc/ceph/ceph.conf 2024-09-18T08:19:59.724 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-18T08:19:59.725 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-18T08:19:59.814 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-09-18T08:19:59.814 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd of=/etc/ceph/ceph.conf 2024-09-18T08:19:59.828 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-09-18T08:19:59.828 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-18T08:19:59.888 INFO:tasks.cephadm:Adding mgr.a on smithi070 2024-09-18T08:19:59.888 INFO:tasks.cephadm:Adding mgr.b on smithi086 2024-09-18T08:19:59.889 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph orch apply mgr '2;smithi070=a;smithi086=b' 2024-09-18T08:19:59.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:59 smithi070 bash[22844]: cluster 2024-09-18T08:19:58.848739+0000 mgr.a (mgr.14152) 88 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:59 smithi070 bash[22844]: cluster 2024-09-18T08:19:58.848739+0000 mgr.a (mgr.14152) 88 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:19:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:59 smithi070 bash[22844]: audit 2024-09-18T08:19:59.113263+0000 mon.a (mon.0) 270 : audit [DBG] from='client.? 172.21.15.70:0/1655759382' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:59 smithi070 bash[22844]: audit 2024-09-18T08:19:59.113263+0000 mon.a (mon.0) 270 : audit [DBG] from='client.? 172.21.15.70:0/1655759382' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:59 smithi070 bash[22844]: audit 2024-09-18T08:19:59.350047+0000 mon.a (mon.0) 271 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:59 smithi070 bash[22844]: audit 2024-09-18T08:19:59.350047+0000 mon.a (mon.0) 271 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:59 smithi070 bash[22844]: audit 2024-09-18T08:19:59.357922+0000 mon.a (mon.0) 272 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:59 smithi070 bash[22844]: audit 2024-09-18T08:19:59.357922+0000 mon.a (mon.0) 272 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:59 smithi070 bash[22844]: audit 2024-09-18T08:19:59.360331+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:19:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:59 smithi070 bash[22844]: audit 2024-09-18T08:19:59.360331+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:19:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:59 smithi070 bash[22844]: audit 2024-09-18T08:19:59.363449+0000 mon.a (mon.0) 274 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:59 smithi070 bash[22844]: audit 2024-09-18T08:19:59.363449+0000 mon.a (mon.0) 274 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:19:59.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:59 smithi070 bash[22844]: audit 2024-09-18T08:19:59.365091+0000 mon.a (mon.0) 275 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:19:59.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:59 smithi070 bash[22844]: audit 2024-09-18T08:19:59.365091+0000 mon.a (mon.0) 275 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:19:59.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:59 smithi070 bash[22844]: audit 2024-09-18T08:19:59.373804+0000 mon.a (mon.0) 276 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:19:59.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:19:59 smithi070 bash[22844]: audit 2024-09-18T08:19:59.373804+0000 mon.a (mon.0) 276 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:00.092 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:59 smithi086 bash[24678]: cluster 2024-09-18T08:19:58.848739+0000 mgr.a (mgr.14152) 88 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:00.092 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:59 smithi086 bash[24678]: cluster 2024-09-18T08:19:58.848739+0000 mgr.a (mgr.14152) 88 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:00.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:59 smithi086 bash[24678]: audit 2024-09-18T08:19:59.113263+0000 mon.a (mon.0) 270 : audit [DBG] from='client.? 172.21.15.70:0/1655759382' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:00.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:59 smithi086 bash[24678]: audit 2024-09-18T08:19:59.113263+0000 mon.a (mon.0) 270 : audit [DBG] from='client.? 172.21.15.70:0/1655759382' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:00.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:59 smithi086 bash[24678]: audit 2024-09-18T08:19:59.350047+0000 mon.a (mon.0) 271 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:00.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:59 smithi086 bash[24678]: audit 2024-09-18T08:19:59.350047+0000 mon.a (mon.0) 271 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:00.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:59 smithi086 bash[24678]: audit 2024-09-18T08:19:59.357922+0000 mon.a (mon.0) 272 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:00.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:59 smithi086 bash[24678]: audit 2024-09-18T08:19:59.357922+0000 mon.a (mon.0) 272 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:00.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:59 smithi086 bash[24678]: audit 2024-09-18T08:19:59.360331+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:00.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:59 smithi086 bash[24678]: audit 2024-09-18T08:19:59.360331+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:00.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:59 smithi086 bash[24678]: audit 2024-09-18T08:19:59.363449+0000 mon.a (mon.0) 274 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:00.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:59 smithi086 bash[24678]: audit 2024-09-18T08:19:59.363449+0000 mon.a (mon.0) 274 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:00.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:59 smithi086 bash[24678]: audit 2024-09-18T08:19:59.365091+0000 mon.a (mon.0) 275 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:00.093 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:59 smithi086 bash[24678]: audit 2024-09-18T08:19:59.365091+0000 mon.a (mon.0) 275 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:00.094 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:59 smithi086 bash[24678]: audit 2024-09-18T08:19:59.373804+0000 mon.a (mon.0) 276 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:00.094 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:19:59 smithi086 bash[24678]: audit 2024-09-18T08:19:59.373804+0000 mon.a (mon.0) 276 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:00.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:59 smithi172 bash[24990]: cluster 2024-09-18T08:19:58.848739+0000 mgr.a (mgr.14152) 88 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:00.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:59 smithi172 bash[24990]: cluster 2024-09-18T08:19:58.848739+0000 mgr.a (mgr.14152) 88 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:00.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:59 smithi172 bash[24990]: audit 2024-09-18T08:19:59.113263+0000 mon.a (mon.0) 270 : audit [DBG] from='client.? 172.21.15.70:0/1655759382' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:00.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:59 smithi172 bash[24990]: audit 2024-09-18T08:19:59.113263+0000 mon.a (mon.0) 270 : audit [DBG] from='client.? 172.21.15.70:0/1655759382' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:00.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:59 smithi172 bash[24990]: audit 2024-09-18T08:19:59.350047+0000 mon.a (mon.0) 271 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:00.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:59 smithi172 bash[24990]: audit 2024-09-18T08:19:59.350047+0000 mon.a (mon.0) 271 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:00.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:59 smithi172 bash[24990]: audit 2024-09-18T08:19:59.357922+0000 mon.a (mon.0) 272 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:00.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:59 smithi172 bash[24990]: audit 2024-09-18T08:19:59.357922+0000 mon.a (mon.0) 272 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:00.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:59 smithi172 bash[24990]: audit 2024-09-18T08:19:59.360331+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:00.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:59 smithi172 bash[24990]: audit 2024-09-18T08:19:59.360331+0000 mon.a (mon.0) 273 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:00.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:59 smithi172 bash[24990]: audit 2024-09-18T08:19:59.363449+0000 mon.a (mon.0) 274 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:00.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:59 smithi172 bash[24990]: audit 2024-09-18T08:19:59.363449+0000 mon.a (mon.0) 274 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:00.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:59 smithi172 bash[24990]: audit 2024-09-18T08:19:59.365091+0000 mon.a (mon.0) 275 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:00.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:59 smithi172 bash[24990]: audit 2024-09-18T08:19:59.365091+0000 mon.a (mon.0) 275 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:00.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:59 smithi172 bash[24990]: audit 2024-09-18T08:19:59.373804+0000 mon.a (mon.0) 276 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:00.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:19:59 smithi172 bash[24990]: audit 2024-09-18T08:19:59.373804+0000 mon.a (mon.0) 276 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:01.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:00 smithi070 bash[22844]: cluster 2024-09-18T08:20:00.000151+0000 mon.a (mon.0) 277 : cluster [INF] overall HEALTH_OK 2024-09-18T08:20:01.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:00 smithi070 bash[22844]: cluster 2024-09-18T08:20:00.000151+0000 mon.a (mon.0) 277 : cluster [INF] overall HEALTH_OK 2024-09-18T08:20:01.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:00 smithi070 bash[22844]: cluster 2024-09-18T08:20:00.849118+0000 mgr.a (mgr.14152) 89 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:01.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:00 smithi070 bash[22844]: cluster 2024-09-18T08:20:00.849118+0000 mgr.a (mgr.14152) 89 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:01.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:00 smithi172 bash[24990]: cluster 2024-09-18T08:20:00.000151+0000 mon.a (mon.0) 277 : cluster [INF] overall HEALTH_OK 2024-09-18T08:20:01.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:00 smithi172 bash[24990]: cluster 2024-09-18T08:20:00.000151+0000 mon.a (mon.0) 277 : cluster [INF] overall HEALTH_OK 2024-09-18T08:20:01.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:00 smithi172 bash[24990]: cluster 2024-09-18T08:20:00.849118+0000 mgr.a (mgr.14152) 89 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:01.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:00 smithi172 bash[24990]: cluster 2024-09-18T08:20:00.849118+0000 mgr.a (mgr.14152) 89 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:01.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:00 smithi086 bash[24678]: cluster 2024-09-18T08:20:00.000151+0000 mon.a (mon.0) 277 : cluster [INF] overall HEALTH_OK 2024-09-18T08:20:01.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:00 smithi086 bash[24678]: cluster 2024-09-18T08:20:00.000151+0000 mon.a (mon.0) 277 : cluster [INF] overall HEALTH_OK 2024-09-18T08:20:01.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:00 smithi086 bash[24678]: cluster 2024-09-18T08:20:00.849118+0000 mgr.a (mgr.14152) 89 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:01.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:00 smithi086 bash[24678]: cluster 2024-09-18T08:20:00.849118+0000 mgr.a (mgr.14152) 89 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:03.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:02 smithi070 bash[22844]: cluster 2024-09-18T08:20:02.849535+0000 mgr.a (mgr.14152) 90 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:03.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:02 smithi070 bash[22844]: cluster 2024-09-18T08:20:02.849535+0000 mgr.a (mgr.14152) 90 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:03.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:02 smithi172 bash[24990]: cluster 2024-09-18T08:20:02.849535+0000 mgr.a (mgr.14152) 90 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:03.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:02 smithi172 bash[24990]: cluster 2024-09-18T08:20:02.849535+0000 mgr.a (mgr.14152) 90 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:03.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:02 smithi086 bash[24678]: cluster 2024-09-18T08:20:02.849535+0000 mgr.a (mgr.14152) 90 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:03.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:02 smithi086 bash[24678]: cluster 2024-09-18T08:20:02.849535+0000 mgr.a (mgr.14152) 90 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:03.646 INFO:teuthology.orchestra.run.smithi172.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.c/config 2024-09-18T08:20:04.949 INFO:teuthology.orchestra.run.smithi172.stdout:Scheduled mgr update... 2024-09-18T08:20:05.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:04 smithi070 bash[22844]: cluster 2024-09-18T08:20:04.849980+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-18T08:20:05.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:04 smithi070 bash[22844]: cluster 2024-09-18T08:20:04.849980+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-18T08:20:05.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:04 smithi172 bash[24990]: cluster 2024-09-18T08:20:04.849980+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-18T08:20:05.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:04 smithi172 bash[24990]: cluster 2024-09-18T08:20:04.849980+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-18T08:20:05.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:04 smithi086 bash[24678]: cluster 2024-09-18T08:20:04.849980+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-18T08:20:05.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:04 smithi086 bash[24678]: cluster 2024-09-18T08:20:04.849980+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-18T08:20:05.499 DEBUG:teuthology.orchestra.run.smithi086:mgr.b> sudo journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@mgr.b.service 2024-09-18T08:20:05.505 DEBUG:tasks.cephadm:set 0 configs 2024-09-18T08:20:05.506 INFO:tasks.cephadm:Deploying OSDs... 2024-09-18T08:20:05.506 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-18T08:20:05.506 DEBUG:teuthology.orchestra.run.smithi070:> dd if=/scratch_devs of=/dev/stdout 2024-09-18T08:20:05.512 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-18T08:20:05.513 DEBUG:teuthology.orchestra.run.smithi070:> stat /dev/vg_nvme/lv_1 2024-09-18T08:20:05.560 INFO:teuthology.orchestra.run.smithi070.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-18T08:20:05.560 INFO:teuthology.orchestra.run.smithi070.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T08:20:05.560 INFO:teuthology.orchestra.run.smithi070.stdout:Device: 5h/5d Inode: 878 Links: 1 2024-09-18T08:20:05.560 INFO:teuthology.orchestra.run.smithi070.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T08:20:05.560 INFO:teuthology.orchestra.run.smithi070.stdout:Access: 2024-09-18 08:09:15.706712803 +0000 2024-09-18T08:20:05.560 INFO:teuthology.orchestra.run.smithi070.stdout:Modify: 2024-09-18 08:09:15.470714910 +0000 2024-09-18T08:20:05.561 INFO:teuthology.orchestra.run.smithi070.stdout:Change: 2024-09-18 08:09:15.470714910 +0000 2024-09-18T08:20:05.561 INFO:teuthology.orchestra.run.smithi070.stdout: Birth: - 2024-09-18T08:20:05.561 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-18T08:20:05.618 INFO:teuthology.orchestra.run.smithi070.stderr:1+0 records in 2024-09-18T08:20:05.618 INFO:teuthology.orchestra.run.smithi070.stderr:1+0 records out 2024-09-18T08:20:05.618 INFO:teuthology.orchestra.run.smithi070.stderr:512 bytes copied, 0.000275257 s, 1.9 MB/s 2024-09-18T08:20:05.619 DEBUG:teuthology.orchestra.run.smithi070:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-18T08:20:05.668 DEBUG:teuthology.orchestra.run.smithi070:> stat /dev/vg_nvme/lv_2 2024-09-18T08:20:05.715 INFO:teuthology.orchestra.run.smithi070.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-18T08:20:05.715 INFO:teuthology.orchestra.run.smithi070.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T08:20:05.715 INFO:teuthology.orchestra.run.smithi070.stdout:Device: 5h/5d Inode: 896 Links: 1 2024-09-18T08:20:05.715 INFO:teuthology.orchestra.run.smithi070.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T08:20:05.715 INFO:teuthology.orchestra.run.smithi070.stdout:Access: 2024-09-18 08:09:16.182708551 +0000 2024-09-18T08:20:05.715 INFO:teuthology.orchestra.run.smithi070.stdout:Modify: 2024-09-18 08:09:15.942710695 +0000 2024-09-18T08:20:05.715 INFO:teuthology.orchestra.run.smithi070.stdout:Change: 2024-09-18 08:09:15.942710695 +0000 2024-09-18T08:20:05.715 INFO:teuthology.orchestra.run.smithi070.stdout: Birth: - 2024-09-18T08:20:05.716 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-18T08:20:05.771 INFO:teuthology.orchestra.run.smithi070.stderr:1+0 records in 2024-09-18T08:20:05.771 INFO:teuthology.orchestra.run.smithi070.stderr:1+0 records out 2024-09-18T08:20:05.771 INFO:teuthology.orchestra.run.smithi070.stderr:512 bytes copied, 0.000205015 s, 2.5 MB/s 2024-09-18T08:20:05.772 DEBUG:teuthology.orchestra.run.smithi070:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-18T08:20:05.821 DEBUG:teuthology.orchestra.run.smithi070:> stat /dev/vg_nvme/lv_3 2024-09-18T08:20:05.868 INFO:teuthology.orchestra.run.smithi070.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-18T08:20:05.910 INFO:teuthology.orchestra.run.smithi070.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T08:20:05.910 INFO:teuthology.orchestra.run.smithi070.stdout:Device: 5h/5d Inode: 907 Links: 1 2024-09-18T08:20:05.910 INFO:teuthology.orchestra.run.smithi070.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T08:20:05.910 INFO:teuthology.orchestra.run.smithi070.stdout:Access: 2024-09-18 08:09:16.678704121 +0000 2024-09-18T08:20:05.910 INFO:teuthology.orchestra.run.smithi070.stdout:Modify: 2024-09-18 08:09:16.414706479 +0000 2024-09-18T08:20:05.910 INFO:teuthology.orchestra.run.smithi070.stdout:Change: 2024-09-18 08:09:16.414706479 +0000 2024-09-18T08:20:05.910 INFO:teuthology.orchestra.run.smithi070.stdout: Birth: - 2024-09-18T08:20:05.910 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-18T08:20:05.923 INFO:teuthology.orchestra.run.smithi070.stderr:1+0 records in 2024-09-18T08:20:05.923 INFO:teuthology.orchestra.run.smithi070.stderr:1+0 records out 2024-09-18T08:20:05.923 INFO:teuthology.orchestra.run.smithi070.stderr:512 bytes copied, 0.000344028 s, 1.5 MB/s 2024-09-18T08:20:05.924 DEBUG:teuthology.orchestra.run.smithi070:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-18T08:20:05.973 DEBUG:teuthology.orchestra.run.smithi070:> stat /dev/vg_nvme/lv_4 2024-09-18T08:20:06.019 INFO:teuthology.orchestra.run.smithi070.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-18T08:20:06.019 INFO:teuthology.orchestra.run.smithi070.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T08:20:06.020 INFO:teuthology.orchestra.run.smithi070.stdout:Device: 5h/5d Inode: 929 Links: 1 2024-09-18T08:20:06.020 INFO:teuthology.orchestra.run.smithi070.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T08:20:06.020 INFO:teuthology.orchestra.run.smithi070.stdout:Access: 2024-09-18 08:09:16.886702263 +0000 2024-09-18T08:20:06.020 INFO:teuthology.orchestra.run.smithi070.stdout:Modify: 2024-09-18 08:09:16.882702299 +0000 2024-09-18T08:20:06.020 INFO:teuthology.orchestra.run.smithi070.stdout:Change: 2024-09-18 08:09:16.882702299 +0000 2024-09-18T08:20:06.020 INFO:teuthology.orchestra.run.smithi070.stdout: Birth: - 2024-09-18T08:20:06.020 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-18T08:20:06.073 INFO:teuthology.orchestra.run.smithi070.stderr:1+0 records in 2024-09-18T08:20:06.073 INFO:teuthology.orchestra.run.smithi070.stderr:1+0 records out 2024-09-18T08:20:06.073 INFO:teuthology.orchestra.run.smithi070.stderr:512 bytes copied, 0.0002012 s, 2.5 MB/s 2024-09-18T08:20:06.074 DEBUG:teuthology.orchestra.run.smithi070:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-18T08:20:06.121 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-18T08:20:06.121 DEBUG:teuthology.orchestra.run.smithi086:> dd if=/scratch_devs of=/dev/stdout 2024-09-18T08:20:06.126 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-18T08:20:06.126 DEBUG:teuthology.orchestra.run.smithi086:> stat /dev/vg_nvme/lv_1 2024-09-18T08:20:06.172 INFO:teuthology.orchestra.run.smithi086.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-18T08:20:06.172 INFO:teuthology.orchestra.run.smithi086.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T08:20:06.172 INFO:teuthology.orchestra.run.smithi086.stdout:Device: 5h/5d Inode: 874 Links: 1 2024-09-18T08:20:06.172 INFO:teuthology.orchestra.run.smithi086.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T08:20:06.172 INFO:teuthology.orchestra.run.smithi086.stdout:Access: 2024-09-18 08:09:16.416292011 +0000 2024-09-18T08:20:06.173 INFO:teuthology.orchestra.run.smithi086.stdout:Modify: 2024-09-18 08:09:16.156294334 +0000 2024-09-18T08:20:06.173 INFO:teuthology.orchestra.run.smithi086.stdout:Change: 2024-09-18 08:09:16.156294334 +0000 2024-09-18T08:20:06.173 INFO:teuthology.orchestra.run.smithi086.stdout: Birth: - 2024-09-18T08:20:06.173 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-18T08:20:06.213 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: audit 2024-09-18T08:20:04.939562+0000 mgr.a (mgr.14152) 92 : audit [DBG] from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi070=a;smithi086=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:20:06.213 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: audit 2024-09-18T08:20:04.939562+0000 mgr.a (mgr.14152) 92 : audit [DBG] from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi070=a;smithi086=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:20:06.213 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: cephadm 2024-09-18T08:20:04.942512+0000 mgr.a (mgr.14152) 93 : cephadm [INF] Saving service mgr spec with placement smithi070=a;smithi086=b;count:2 2024-09-18T08:20:06.213 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: cephadm 2024-09-18T08:20:04.942512+0000 mgr.a (mgr.14152) 93 : cephadm [INF] Saving service mgr spec with placement smithi070=a;smithi086=b;count:2 2024-09-18T08:20:06.214 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: audit 2024-09-18T08:20:04.948400+0000 mon.a (mon.0) 278 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:06.214 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: audit 2024-09-18T08:20:04.948400+0000 mon.a (mon.0) 278 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:06.214 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: audit 2024-09-18T08:20:04.950045+0000 mon.a (mon.0) 279 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:06.214 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: audit 2024-09-18T08:20:04.950045+0000 mon.a (mon.0) 279 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:06.214 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: audit 2024-09-18T08:20:05.647717+0000 mon.a (mon.0) 280 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:06.214 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: audit 2024-09-18T08:20:05.647717+0000 mon.a (mon.0) 280 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:06.214 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: audit 2024-09-18T08:20:05.648912+0000 mon.a (mon.0) 281 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:06.214 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: audit 2024-09-18T08:20:05.648912+0000 mon.a (mon.0) 281 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:06.214 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: audit 2024-09-18T08:20:05.655139+0000 mon.a (mon.0) 282 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:06.214 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: audit 2024-09-18T08:20:05.655139+0000 mon.a (mon.0) 282 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:06.214 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: audit 2024-09-18T08:20:05.657760+0000 mon.a (mon.0) 283 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-18T08:20:06.214 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: audit 2024-09-18T08:20:05.657760+0000 mon.a (mon.0) 283 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-18T08:20:06.214 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: audit 2024-09-18T08:20:05.659522+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-18T08:20:06.215 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 18 08:20:06 smithi086 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:20:06.215 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: audit 2024-09-18T08:20:05.659522+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-18T08:20:06.215 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: audit 2024-09-18T08:20:05.662000+0000 mon.a (mon.0) 285 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-18T08:20:06.215 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: audit 2024-09-18T08:20:05.662000+0000 mon.a (mon.0) 285 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-18T08:20:06.215 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: audit 2024-09-18T08:20:05.663171+0000 mon.a (mon.0) 286 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:06.215 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: audit 2024-09-18T08:20:05.663171+0000 mon.a (mon.0) 286 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:06.216 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: cephadm 2024-09-18T08:20:05.664372+0000 mgr.a (mgr.14152) 94 : cephadm [INF] Deploying daemon mgr.b on smithi086 2024-09-18T08:20:06.216 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:05 smithi086 bash[24678]: cephadm 2024-09-18T08:20:05.664372+0000 mgr.a (mgr.14152) 94 : cephadm [INF] Deploying daemon mgr.b on smithi086 2024-09-18T08:20:06.225 INFO:teuthology.orchestra.run.smithi086.stderr:1+0 records in 2024-09-18T08:20:06.225 INFO:teuthology.orchestra.run.smithi086.stderr:1+0 records out 2024-09-18T08:20:06.225 INFO:teuthology.orchestra.run.smithi086.stderr:512 bytes copied, 0.000267977 s, 1.9 MB/s 2024-09-18T08:20:06.227 DEBUG:teuthology.orchestra.run.smithi086:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-18T08:20:06.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: audit 2024-09-18T08:20:04.939562+0000 mgr.a (mgr.14152) 92 : audit [DBG] from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi070=a;smithi086=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:20:06.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: audit 2024-09-18T08:20:04.939562+0000 mgr.a (mgr.14152) 92 : audit [DBG] from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi070=a;smithi086=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:20:06.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: cephadm 2024-09-18T08:20:04.942512+0000 mgr.a (mgr.14152) 93 : cephadm [INF] Saving service mgr spec with placement smithi070=a;smithi086=b;count:2 2024-09-18T08:20:06.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: cephadm 2024-09-18T08:20:04.942512+0000 mgr.a (mgr.14152) 93 : cephadm [INF] Saving service mgr spec with placement smithi070=a;smithi086=b;count:2 2024-09-18T08:20:06.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: audit 2024-09-18T08:20:04.948400+0000 mon.a (mon.0) 278 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:06.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: audit 2024-09-18T08:20:04.948400+0000 mon.a (mon.0) 278 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:06.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: audit 2024-09-18T08:20:04.950045+0000 mon.a (mon.0) 279 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:06.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: audit 2024-09-18T08:20:04.950045+0000 mon.a (mon.0) 279 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:06.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: audit 2024-09-18T08:20:05.647717+0000 mon.a (mon.0) 280 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:06.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: audit 2024-09-18T08:20:05.647717+0000 mon.a (mon.0) 280 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:06.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: audit 2024-09-18T08:20:05.648912+0000 mon.a (mon.0) 281 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:06.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: audit 2024-09-18T08:20:05.648912+0000 mon.a (mon.0) 281 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:06.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: audit 2024-09-18T08:20:05.655139+0000 mon.a (mon.0) 282 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:06.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: audit 2024-09-18T08:20:05.655139+0000 mon.a (mon.0) 282 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:06.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: audit 2024-09-18T08:20:05.657760+0000 mon.a (mon.0) 283 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-18T08:20:06.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: audit 2024-09-18T08:20:05.657760+0000 mon.a (mon.0) 283 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-18T08:20:06.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: audit 2024-09-18T08:20:05.659522+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-18T08:20:06.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: audit 2024-09-18T08:20:05.659522+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-18T08:20:06.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: audit 2024-09-18T08:20:05.662000+0000 mon.a (mon.0) 285 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-18T08:20:06.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: audit 2024-09-18T08:20:05.662000+0000 mon.a (mon.0) 285 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-18T08:20:06.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: audit 2024-09-18T08:20:05.663171+0000 mon.a (mon.0) 286 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:06.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: audit 2024-09-18T08:20:05.663171+0000 mon.a (mon.0) 286 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:06.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: cephadm 2024-09-18T08:20:05.664372+0000 mgr.a (mgr.14152) 94 : cephadm [INF] Deploying daemon mgr.b on smithi086 2024-09-18T08:20:06.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:05 smithi070 bash[22844]: cephadm 2024-09-18T08:20:05.664372+0000 mgr.a (mgr.14152) 94 : cephadm [INF] Deploying daemon mgr.b on smithi086 2024-09-18T08:20:06.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: audit 2024-09-18T08:20:04.939562+0000 mgr.a (mgr.14152) 92 : audit [DBG] from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi070=a;smithi086=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:20:06.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: audit 2024-09-18T08:20:04.939562+0000 mgr.a (mgr.14152) 92 : audit [DBG] from='client.24109 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi070=a;smithi086=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:20:06.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: cephadm 2024-09-18T08:20:04.942512+0000 mgr.a (mgr.14152) 93 : cephadm [INF] Saving service mgr spec with placement smithi070=a;smithi086=b;count:2 2024-09-18T08:20:06.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: cephadm 2024-09-18T08:20:04.942512+0000 mgr.a (mgr.14152) 93 : cephadm [INF] Saving service mgr spec with placement smithi070=a;smithi086=b;count:2 2024-09-18T08:20:06.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: audit 2024-09-18T08:20:04.948400+0000 mon.a (mon.0) 278 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:06.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: audit 2024-09-18T08:20:04.948400+0000 mon.a (mon.0) 278 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:06.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: audit 2024-09-18T08:20:04.950045+0000 mon.a (mon.0) 279 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:06.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: audit 2024-09-18T08:20:04.950045+0000 mon.a (mon.0) 279 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:06.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: audit 2024-09-18T08:20:05.647717+0000 mon.a (mon.0) 280 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:06.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: audit 2024-09-18T08:20:05.647717+0000 mon.a (mon.0) 280 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:06.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: audit 2024-09-18T08:20:05.648912+0000 mon.a (mon.0) 281 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:06.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: audit 2024-09-18T08:20:05.648912+0000 mon.a (mon.0) 281 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:06.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: audit 2024-09-18T08:20:05.655139+0000 mon.a (mon.0) 282 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:06.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: audit 2024-09-18T08:20:05.655139+0000 mon.a (mon.0) 282 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:06.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: audit 2024-09-18T08:20:05.657760+0000 mon.a (mon.0) 283 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-18T08:20:06.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: audit 2024-09-18T08:20:05.657760+0000 mon.a (mon.0) 283 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-18T08:20:06.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: audit 2024-09-18T08:20:05.659522+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-18T08:20:06.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: audit 2024-09-18T08:20:05.659522+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-18T08:20:06.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: audit 2024-09-18T08:20:05.662000+0000 mon.a (mon.0) 285 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-18T08:20:06.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: audit 2024-09-18T08:20:05.662000+0000 mon.a (mon.0) 285 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-18T08:20:06.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: audit 2024-09-18T08:20:05.663171+0000 mon.a (mon.0) 286 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:06.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: audit 2024-09-18T08:20:05.663171+0000 mon.a (mon.0) 286 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:06.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: cephadm 2024-09-18T08:20:05.664372+0000 mgr.a (mgr.14152) 94 : cephadm [INF] Deploying daemon mgr.b on smithi086 2024-09-18T08:20:06.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:05 smithi172 bash[24990]: cephadm 2024-09-18T08:20:05.664372+0000 mgr.a (mgr.14152) 94 : cephadm [INF] Deploying daemon mgr.b on smithi086 2024-09-18T08:20:06.274 DEBUG:teuthology.orchestra.run.smithi086:> stat /dev/vg_nvme/lv_2 2024-09-18T08:20:06.321 INFO:teuthology.orchestra.run.smithi086.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-18T08:20:06.322 INFO:teuthology.orchestra.run.smithi086.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T08:20:06.322 INFO:teuthology.orchestra.run.smithi086.stdout:Device: 5h/5d Inode: 893 Links: 1 2024-09-18T08:20:06.322 INFO:teuthology.orchestra.run.smithi086.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T08:20:06.322 INFO:teuthology.orchestra.run.smithi086.stdout:Access: 2024-09-18 08:09:16.928287438 +0000 2024-09-18T08:20:06.322 INFO:teuthology.orchestra.run.smithi086.stdout:Modify: 2024-09-18 08:09:16.656289867 +0000 2024-09-18T08:20:06.322 INFO:teuthology.orchestra.run.smithi086.stdout:Change: 2024-09-18 08:09:16.656289867 +0000 2024-09-18T08:20:06.322 INFO:teuthology.orchestra.run.smithi086.stdout: Birth: - 2024-09-18T08:20:06.322 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-18T08:20:06.374 INFO:teuthology.orchestra.run.smithi086.stderr:1+0 records in 2024-09-18T08:20:06.375 INFO:teuthology.orchestra.run.smithi086.stderr:1+0 records out 2024-09-18T08:20:06.375 INFO:teuthology.orchestra.run.smithi086.stderr:512 bytes copied, 0.000377176 s, 1.4 MB/s 2024-09-18T08:20:06.376 DEBUG:teuthology.orchestra.run.smithi086:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-18T08:20:06.422 DEBUG:teuthology.orchestra.run.smithi086:> stat /dev/vg_nvme/lv_3 2024-09-18T08:20:06.468 INFO:teuthology.orchestra.run.smithi086.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-18T08:20:06.469 INFO:teuthology.orchestra.run.smithi086.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T08:20:06.469 INFO:teuthology.orchestra.run.smithi086.stdout:Device: 5h/5d Inode: 910 Links: 1 2024-09-18T08:20:06.469 INFO:teuthology.orchestra.run.smithi086.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T08:20:06.469 INFO:teuthology.orchestra.run.smithi086.stdout:Access: 2024-09-18 08:09:17.416283079 +0000 2024-09-18T08:20:06.469 INFO:teuthology.orchestra.run.smithi086.stdout:Modify: 2024-09-18 08:09:17.164285330 +0000 2024-09-18T08:20:06.469 INFO:teuthology.orchestra.run.smithi086.stdout:Change: 2024-09-18 08:09:17.164285330 +0000 2024-09-18T08:20:06.469 INFO:teuthology.orchestra.run.smithi086.stdout: Birth: - 2024-09-18T08:20:06.469 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-18T08:20:06.525 INFO:teuthology.orchestra.run.smithi086.stderr:1+0 records in 2024-09-18T08:20:06.526 INFO:teuthology.orchestra.run.smithi086.stderr:1+0 records out 2024-09-18T08:20:06.526 INFO:teuthology.orchestra.run.smithi086.stderr:512 bytes copied, 0.00044183 s, 1.2 MB/s 2024-09-18T08:20:06.526 DEBUG:teuthology.orchestra.run.smithi086:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-18T08:20:06.574 DEBUG:teuthology.orchestra.run.smithi086:> stat /dev/vg_nvme/lv_4 2024-09-18T08:20:06.621 INFO:teuthology.orchestra.run.smithi086.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-18T08:20:06.621 INFO:teuthology.orchestra.run.smithi086.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T08:20:06.621 INFO:teuthology.orchestra.run.smithi086.stdout:Device: 5h/5d Inode: 925 Links: 1 2024-09-18T08:20:06.621 INFO:teuthology.orchestra.run.smithi086.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T08:20:06.621 INFO:teuthology.orchestra.run.smithi086.stdout:Access: 2024-09-18 08:09:17.896278791 +0000 2024-09-18T08:20:06.621 INFO:teuthology.orchestra.run.smithi086.stdout:Modify: 2024-09-18 08:09:17.640281078 +0000 2024-09-18T08:20:06.621 INFO:teuthology.orchestra.run.smithi086.stdout:Change: 2024-09-18 08:09:17.640281078 +0000 2024-09-18T08:20:06.621 INFO:teuthology.orchestra.run.smithi086.stdout: Birth: - 2024-09-18T08:20:06.622 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-18T08:20:06.677 INFO:teuthology.orchestra.run.smithi086.stderr:1+0 records in 2024-09-18T08:20:06.677 INFO:teuthology.orchestra.run.smithi086.stderr:1+0 records out 2024-09-18T08:20:06.677 INFO:teuthology.orchestra.run.smithi086.stderr:512 bytes copied, 0.00032405 s, 1.6 MB/s 2024-09-18T08:20:06.678 DEBUG:teuthology.orchestra.run.smithi086:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-18T08:20:06.731 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-09-18T08:20:06.731 DEBUG:teuthology.orchestra.run.smithi172:> dd if=/scratch_devs of=/dev/stdout 2024-09-18T08:20:06.738 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-18T08:20:06.738 DEBUG:teuthology.orchestra.run.smithi172:> stat /dev/vg_nvme/lv_1 2024-09-18T08:20:06.784 INFO:teuthology.orchestra.run.smithi172.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-18T08:20:06.784 INFO:teuthology.orchestra.run.smithi172.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T08:20:06.784 INFO:teuthology.orchestra.run.smithi172.stdout:Device: 5h/5d Inode: 874 Links: 1 2024-09-18T08:20:06.784 INFO:teuthology.orchestra.run.smithi172.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T08:20:06.784 INFO:teuthology.orchestra.run.smithi172.stdout:Access: 2024-09-18 08:09:19.072698262 +0000 2024-09-18T08:20:06.784 INFO:teuthology.orchestra.run.smithi172.stdout:Modify: 2024-09-18 08:09:18.800700690 +0000 2024-09-18T08:20:06.784 INFO:teuthology.orchestra.run.smithi172.stdout:Change: 2024-09-18 08:09:18.800700690 +0000 2024-09-18T08:20:06.784 INFO:teuthology.orchestra.run.smithi172.stdout: Birth: - 2024-09-18T08:20:06.785 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-18T08:20:06.839 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records in 2024-09-18T08:20:06.839 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records out 2024-09-18T08:20:06.839 INFO:teuthology.orchestra.run.smithi172.stderr:512 bytes copied, 0.000437738 s, 1.2 MB/s 2024-09-18T08:20:06.840 DEBUG:teuthology.orchestra.run.smithi172:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-18T08:20:06.890 DEBUG:teuthology.orchestra.run.smithi172:> stat /dev/vg_nvme/lv_2 2024-09-18T08:20:06.938 INFO:teuthology.orchestra.run.smithi172.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-18T08:20:06.938 INFO:teuthology.orchestra.run.smithi172.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T08:20:06.938 INFO:teuthology.orchestra.run.smithi172.stdout:Device: 5h/5d Inode: 886 Links: 1 2024-09-18T08:20:06.938 INFO:teuthology.orchestra.run.smithi172.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T08:20:06.938 INFO:teuthology.orchestra.run.smithi172.stdout:Access: 2024-09-18 08:09:19.552693974 +0000 2024-09-18T08:20:06.939 INFO:teuthology.orchestra.run.smithi172.stdout:Modify: 2024-09-18 08:09:19.304696190 +0000 2024-09-18T08:20:06.939 INFO:teuthology.orchestra.run.smithi172.stdout:Change: 2024-09-18 08:09:19.304696190 +0000 2024-09-18T08:20:06.939 INFO:teuthology.orchestra.run.smithi172.stdout: Birth: - 2024-09-18T08:20:06.939 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-18T08:20:06.991 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records in 2024-09-18T08:20:06.991 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records out 2024-09-18T08:20:06.991 INFO:teuthology.orchestra.run.smithi172.stderr:512 bytes copied, 0.000335242 s, 1.5 MB/s 2024-09-18T08:20:06.992 DEBUG:teuthology.orchestra.run.smithi172:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-18T08:20:07.042 DEBUG:teuthology.orchestra.run.smithi172:> stat /dev/vg_nvme/lv_3 2024-09-18T08:20:07.089 INFO:teuthology.orchestra.run.smithi172.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-18T08:20:07.089 INFO:teuthology.orchestra.run.smithi172.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T08:20:07.089 INFO:teuthology.orchestra.run.smithi172.stdout:Device: 5h/5d Inode: 908 Links: 1 2024-09-18T08:20:07.089 INFO:teuthology.orchestra.run.smithi172.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T08:20:07.090 INFO:teuthology.orchestra.run.smithi172.stdout:Access: 2024-09-18 08:09:20.044689580 +0000 2024-09-18T08:20:07.090 INFO:teuthology.orchestra.run.smithi172.stdout:Modify: 2024-09-18 08:09:19.772692009 +0000 2024-09-18T08:20:07.090 INFO:teuthology.orchestra.run.smithi172.stdout:Change: 2024-09-18 08:09:19.772692009 +0000 2024-09-18T08:20:07.090 INFO:teuthology.orchestra.run.smithi172.stdout: Birth: - 2024-09-18T08:20:07.090 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-18T08:20:07.140 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:06 smithi172 bash[24990]: cluster 2024-09-18T08:20:06.850417+0000 mgr.a (mgr.14152) 95 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:07.140 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:06 smithi172 bash[24990]: cluster 2024-09-18T08:20:06.850417+0000 mgr.a (mgr.14152) 95 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:07.143 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records in 2024-09-18T08:20:07.143 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records out 2024-09-18T08:20:07.143 INFO:teuthology.orchestra.run.smithi172.stderr:512 bytes copied, 0.000405373 s, 1.3 MB/s 2024-09-18T08:20:07.144 DEBUG:teuthology.orchestra.run.smithi172:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-18T08:20:07.193 DEBUG:teuthology.orchestra.run.smithi172:> stat /dev/vg_nvme/lv_4 2024-09-18T08:20:07.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:06 smithi070 bash[22844]: cluster 2024-09-18T08:20:06.850417+0000 mgr.a (mgr.14152) 95 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:07.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:06 smithi070 bash[22844]: cluster 2024-09-18T08:20:06.850417+0000 mgr.a (mgr.14152) 95 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:07.244 INFO:teuthology.orchestra.run.smithi172.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-18T08:20:07.244 INFO:teuthology.orchestra.run.smithi172.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-18T08:20:07.244 INFO:teuthology.orchestra.run.smithi172.stdout:Device: 5h/5d Inode: 925 Links: 1 2024-09-18T08:20:07.244 INFO:teuthology.orchestra.run.smithi172.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-18T08:20:07.245 INFO:teuthology.orchestra.run.smithi172.stdout:Access: 2024-09-18 08:09:20.532685221 +0000 2024-09-18T08:20:07.245 INFO:teuthology.orchestra.run.smithi172.stdout:Modify: 2024-09-18 08:09:20.304687256 +0000 2024-09-18T08:20:07.245 INFO:teuthology.orchestra.run.smithi172.stdout:Change: 2024-09-18 08:09:20.304687256 +0000 2024-09-18T08:20:07.245 INFO:teuthology.orchestra.run.smithi172.stdout: Birth: - 2024-09-18T08:20:07.245 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-18T08:20:07.298 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records in 2024-09-18T08:20:07.298 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records out 2024-09-18T08:20:07.298 INFO:teuthology.orchestra.run.smithi172.stderr:512 bytes copied, 0.000411071 s, 1.2 MB/s 2024-09-18T08:20:07.300 DEBUG:teuthology.orchestra.run.smithi172:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-18T08:20:07.308 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:06 smithi086 bash[24678]: cluster 2024-09-18T08:20:06.850417+0000 mgr.a (mgr.14152) 95 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:07.308 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:06 smithi086 bash[24678]: cluster 2024-09-18T08:20:06.850417+0000 mgr.a (mgr.14152) 95 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:07.353 INFO:tasks.cephadm:Deploying osd.0 on smithi070 with /dev/vg_nvme/lv_4... 2024-09-18T08:20:07.354 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-18T08:20:08.092 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:07 smithi086 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:20:08.092 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 18 08:20:07 smithi086 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:20:08.092 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 18 08:20:07 smithi086 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:20:08.092 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 18 08:20:07 smithi086 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:20:08.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:08 smithi086 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:20:08.592 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 18 08:20:08 smithi086 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:20:08.592 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 18 08:20:08 smithi086 systemd[1]: Started Ceph mgr.b for 1481c73c-7596-11ef-bceb-c7b262605968. 2024-09-18T08:20:09.592 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 18 08:20:09 smithi086 bash[25165]: debug 2024-09-18T08:20:09.187+0000 7f1999f80640 1 -- 172.21.15.86:0/1181034871 <== mon.2 v2:172.21.15.86:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) ==== 194+0+0 (secure 0 0 0) 0x55e2ae8310e0 con 0x55e2ae833400 2024-09-18T08:20:09.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:09 smithi086 bash[24678]: audit 2024-09-18T08:20:08.238226+0000 mon.a (mon.0) 287 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:09 smithi086 bash[24678]: audit 2024-09-18T08:20:08.238226+0000 mon.a (mon.0) 287 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:09 smithi086 bash[24678]: audit 2024-09-18T08:20:08.245389+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:09 smithi086 bash[24678]: audit 2024-09-18T08:20:08.245389+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.593 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:09 smithi086 bash[24678]: audit 2024-09-18T08:20:08.252675+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.593 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:09 smithi086 bash[24678]: audit 2024-09-18T08:20:08.252675+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.593 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:09 smithi086 bash[24678]: audit 2024-09-18T08:20:08.259581+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.593 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:09 smithi086 bash[24678]: audit 2024-09-18T08:20:08.259581+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.593 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:09 smithi086 bash[24678]: audit 2024-09-18T08:20:08.310010+0000 mon.a (mon.0) 291 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:09.593 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:09 smithi086 bash[24678]: audit 2024-09-18T08:20:08.310010+0000 mon.a (mon.0) 291 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:09.593 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:09 smithi086 bash[24678]: cluster 2024-09-18T08:20:08.850810+0000 mgr.a (mgr.14152) 96 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:09.593 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:09 smithi086 bash[24678]: cluster 2024-09-18T08:20:08.850810+0000 mgr.a (mgr.14152) 96 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:09.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:09 smithi070 bash[22844]: audit 2024-09-18T08:20:08.238226+0000 mon.a (mon.0) 287 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:09 smithi070 bash[22844]: audit 2024-09-18T08:20:08.238226+0000 mon.a (mon.0) 287 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:09 smithi070 bash[22844]: audit 2024-09-18T08:20:08.245389+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:09 smithi070 bash[22844]: audit 2024-09-18T08:20:08.245389+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:09 smithi070 bash[22844]: audit 2024-09-18T08:20:08.252675+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:09 smithi070 bash[22844]: audit 2024-09-18T08:20:08.252675+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:09 smithi070 bash[22844]: audit 2024-09-18T08:20:08.259581+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:09 smithi070 bash[22844]: audit 2024-09-18T08:20:08.259581+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:09 smithi070 bash[22844]: audit 2024-09-18T08:20:08.310010+0000 mon.a (mon.0) 291 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:09.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:09 smithi070 bash[22844]: audit 2024-09-18T08:20:08.310010+0000 mon.a (mon.0) 291 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:09.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:09 smithi070 bash[22844]: cluster 2024-09-18T08:20:08.850810+0000 mgr.a (mgr.14152) 96 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:09.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:09 smithi070 bash[22844]: cluster 2024-09-18T08:20:08.850810+0000 mgr.a (mgr.14152) 96 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:09.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:09 smithi172 bash[24990]: audit 2024-09-18T08:20:08.238226+0000 mon.a (mon.0) 287 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:09 smithi172 bash[24990]: audit 2024-09-18T08:20:08.238226+0000 mon.a (mon.0) 287 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:09 smithi172 bash[24990]: audit 2024-09-18T08:20:08.245389+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:09 smithi172 bash[24990]: audit 2024-09-18T08:20:08.245389+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:09 smithi172 bash[24990]: audit 2024-09-18T08:20:08.252675+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:09 smithi172 bash[24990]: audit 2024-09-18T08:20:08.252675+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:09 smithi172 bash[24990]: audit 2024-09-18T08:20:08.259581+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:09 smithi172 bash[24990]: audit 2024-09-18T08:20:08.259581+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:09.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:09 smithi172 bash[24990]: audit 2024-09-18T08:20:08.310010+0000 mon.a (mon.0) 291 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:09.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:09 smithi172 bash[24990]: audit 2024-09-18T08:20:08.310010+0000 mon.a (mon.0) 291 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:09.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:09 smithi172 bash[24990]: cluster 2024-09-18T08:20:08.850810+0000 mgr.a (mgr.14152) 96 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:09.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:09 smithi172 bash[24990]: cluster 2024-09-18T08:20:08.850810+0000 mgr.a (mgr.14152) 96 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:11.238 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:10 smithi070 bash[22844]: cluster 2024-09-18T08:20:10.851334+0000 mgr.a (mgr.14152) 97 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:11.239 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:10 smithi070 bash[22844]: cluster 2024-09-18T08:20:10.851334+0000 mgr.a (mgr.14152) 97 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:11.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:10 smithi172 bash[24990]: cluster 2024-09-18T08:20:10.851334+0000 mgr.a (mgr.14152) 97 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:11.240 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:10 smithi172 bash[24990]: cluster 2024-09-18T08:20:10.851334+0000 mgr.a (mgr.14152) 97 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:11.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:10 smithi086 bash[24678]: cluster 2024-09-18T08:20:10.851334+0000 mgr.a (mgr.14152) 97 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:11.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:10 smithi086 bash[24678]: cluster 2024-09-18T08:20:10.851334+0000 mgr.a (mgr.14152) 97 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:12.081 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:20:13.722 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:13 smithi070 bash[22844]: audit 2024-09-18T08:20:12.443334+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:13.723 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:13 smithi070 bash[22844]: audit 2024-09-18T08:20:12.443334+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:13.723 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:13 smithi070 bash[22844]: cluster 2024-09-18T08:20:12.851859+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-18T08:20:13.723 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:13 smithi070 bash[22844]: cluster 2024-09-18T08:20:12.851859+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-18T08:20:13.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:13 smithi172 bash[24990]: audit 2024-09-18T08:20:12.443334+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:13.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:13 smithi172 bash[24990]: audit 2024-09-18T08:20:12.443334+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:13.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:13 smithi172 bash[24990]: cluster 2024-09-18T08:20:12.851859+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-18T08:20:13.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:13 smithi172 bash[24990]: cluster 2024-09-18T08:20:12.851859+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-18T08:20:13.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:13 smithi086 bash[24678]: audit 2024-09-18T08:20:12.443334+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:13.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:13 smithi086 bash[24678]: audit 2024-09-18T08:20:12.443334+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:13.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:13 smithi086 bash[24678]: cluster 2024-09-18T08:20:12.851859+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-18T08:20:13.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:13 smithi086 bash[24678]: cluster 2024-09-18T08:20:12.851859+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-18T08:20:14.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:14 smithi086 bash[24678]: audit 2024-09-18T08:20:13.518460+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:14.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:14 smithi086 bash[24678]: audit 2024-09-18T08:20:13.518460+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:14.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:14 smithi086 bash[24678]: audit 2024-09-18T08:20:13.525760+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:14.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:14 smithi086 bash[24678]: audit 2024-09-18T08:20:13.525760+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:14.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:14 smithi086 bash[24678]: audit 2024-09-18T08:20:13.527557+0000 mon.a (mon.0) 295 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:14.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:14 smithi086 bash[24678]: audit 2024-09-18T08:20:13.527557+0000 mon.a (mon.0) 295 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:14.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:14 smithi086 bash[24678]: audit 2024-09-18T08:20:13.529591+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:14.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:14 smithi086 bash[24678]: audit 2024-09-18T08:20:13.529591+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:14.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:14 smithi086 bash[24678]: audit 2024-09-18T08:20:13.538845+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:14.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:14 smithi086 bash[24678]: audit 2024-09-18T08:20:13.538845+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:14.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:14 smithi086 bash[24678]: cephadm 2024-09-18T08:20:13.578536+0000 mgr.a (mgr.14152) 99 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-18T08:20:14.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:14 smithi086 bash[24678]: cephadm 2024-09-18T08:20:13.578536+0000 mgr.a (mgr.14152) 99 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-18T08:20:14.845 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:14 smithi086 bash[24678]: audit 2024-09-18T08:20:13.579086+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-18T08:20:14.845 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:14 smithi086 bash[24678]: audit 2024-09-18T08:20:13.579086+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-18T08:20:14.845 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:14 smithi086 bash[24678]: audit 2024-09-18T08:20:13.580267+0000 mon.a (mon.0) 299 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-18T08:20:14.845 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:14 smithi086 bash[24678]: audit 2024-09-18T08:20:13.580267+0000 mon.a (mon.0) 299 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-18T08:20:14.845 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:14 smithi086 bash[24678]: audit 2024-09-18T08:20:13.581216+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:14.845 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:14 smithi086 bash[24678]: audit 2024-09-18T08:20:13.581216+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:14.846 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:14 smithi086 bash[24678]: cephadm 2024-09-18T08:20:13.582305+0000 mgr.a (mgr.14152) 100 : cephadm [INF] Reconfiguring daemon mgr.a on smithi070 2024-09-18T08:20:14.846 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:14 smithi086 bash[24678]: cephadm 2024-09-18T08:20:13.582305+0000 mgr.a (mgr.14152) 100 : cephadm [INF] Reconfiguring daemon mgr.a on smithi070 2024-09-18T08:20:14.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:14 smithi070 bash[22844]: audit 2024-09-18T08:20:13.518460+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:14.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:14 smithi070 bash[22844]: audit 2024-09-18T08:20:13.518460+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:14.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:14 smithi070 bash[22844]: audit 2024-09-18T08:20:13.525760+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:14.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:14 smithi070 bash[22844]: audit 2024-09-18T08:20:13.525760+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:14.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:14 smithi070 bash[22844]: audit 2024-09-18T08:20:13.527557+0000 mon.a (mon.0) 295 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:14.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:14 smithi070 bash[22844]: audit 2024-09-18T08:20:13.527557+0000 mon.a (mon.0) 295 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:14.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:14 smithi070 bash[22844]: audit 2024-09-18T08:20:13.529591+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:14.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:14 smithi070 bash[22844]: audit 2024-09-18T08:20:13.529591+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:14.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:14 smithi070 bash[22844]: audit 2024-09-18T08:20:13.538845+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:14.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:14 smithi070 bash[22844]: audit 2024-09-18T08:20:13.538845+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:14.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:14 smithi070 bash[22844]: cephadm 2024-09-18T08:20:13.578536+0000 mgr.a (mgr.14152) 99 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-18T08:20:14.984 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:14 smithi070 bash[22844]: cephadm 2024-09-18T08:20:13.578536+0000 mgr.a (mgr.14152) 99 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-18T08:20:14.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:14 smithi070 bash[22844]: audit 2024-09-18T08:20:13.579086+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-18T08:20:14.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:14 smithi070 bash[22844]: audit 2024-09-18T08:20:13.579086+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-18T08:20:14.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:14 smithi070 bash[22844]: audit 2024-09-18T08:20:13.580267+0000 mon.a (mon.0) 299 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-18T08:20:14.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:14 smithi070 bash[22844]: audit 2024-09-18T08:20:13.580267+0000 mon.a (mon.0) 299 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-18T08:20:14.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:14 smithi070 bash[22844]: audit 2024-09-18T08:20:13.581216+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:14.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:14 smithi070 bash[22844]: audit 2024-09-18T08:20:13.581216+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:14.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:14 smithi070 bash[22844]: cephadm 2024-09-18T08:20:13.582305+0000 mgr.a (mgr.14152) 100 : cephadm [INF] Reconfiguring daemon mgr.a on smithi070 2024-09-18T08:20:14.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:14 smithi070 bash[22844]: cephadm 2024-09-18T08:20:13.582305+0000 mgr.a (mgr.14152) 100 : cephadm [INF] Reconfiguring daemon mgr.a on smithi070 2024-09-18T08:20:14.986 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:14 smithi172 bash[24990]: audit 2024-09-18T08:20:13.518460+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:14.986 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:14 smithi172 bash[24990]: audit 2024-09-18T08:20:13.518460+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:14.986 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:14 smithi172 bash[24990]: audit 2024-09-18T08:20:13.525760+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:14.986 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:14 smithi172 bash[24990]: audit 2024-09-18T08:20:13.525760+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:14.986 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:14 smithi172 bash[24990]: audit 2024-09-18T08:20:13.527557+0000 mon.a (mon.0) 295 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:14.986 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:14 smithi172 bash[24990]: audit 2024-09-18T08:20:13.527557+0000 mon.a (mon.0) 295 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:14.986 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:14 smithi172 bash[24990]: audit 2024-09-18T08:20:13.529591+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:14.986 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:14 smithi172 bash[24990]: audit 2024-09-18T08:20:13.529591+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:14.987 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:14 smithi172 bash[24990]: audit 2024-09-18T08:20:13.538845+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:14.987 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:14 smithi172 bash[24990]: audit 2024-09-18T08:20:13.538845+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:14.987 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:14 smithi172 bash[24990]: cephadm 2024-09-18T08:20:13.578536+0000 mgr.a (mgr.14152) 99 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-18T08:20:14.987 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:14 smithi172 bash[24990]: cephadm 2024-09-18T08:20:13.578536+0000 mgr.a (mgr.14152) 99 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-18T08:20:14.987 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:14 smithi172 bash[24990]: audit 2024-09-18T08:20:13.579086+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-18T08:20:14.987 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:14 smithi172 bash[24990]: audit 2024-09-18T08:20:13.579086+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-18T08:20:14.987 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:14 smithi172 bash[24990]: audit 2024-09-18T08:20:13.580267+0000 mon.a (mon.0) 299 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-18T08:20:14.987 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:14 smithi172 bash[24990]: audit 2024-09-18T08:20:13.580267+0000 mon.a (mon.0) 299 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-18T08:20:14.987 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:14 smithi172 bash[24990]: audit 2024-09-18T08:20:13.581216+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:14.987 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:14 smithi172 bash[24990]: audit 2024-09-18T08:20:13.581216+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:14.987 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:14 smithi172 bash[24990]: cephadm 2024-09-18T08:20:13.582305+0000 mgr.a (mgr.14152) 100 : cephadm [INF] Reconfiguring daemon mgr.a on smithi070 2024-09-18T08:20:14.987 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:14 smithi172 bash[24990]: cephadm 2024-09-18T08:20:13.582305+0000 mgr.a (mgr.14152) 100 : cephadm [INF] Reconfiguring daemon mgr.a on smithi070 2024-09-18T08:20:15.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:15 smithi070 bash[22844]: cluster 2024-09-18T08:20:14.852179+0000 mgr.a (mgr.14152) 101 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:15.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:15 smithi070 bash[22844]: cluster 2024-09-18T08:20:14.852179+0000 mgr.a (mgr.14152) 101 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:15.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:15 smithi070 bash[22844]: cluster 2024-09-18T08:20:15.193186+0000 mon.a (mon.0) 301 : cluster [DBG] Standby manager daemon b started 2024-09-18T08:20:15.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:15 smithi070 bash[22844]: cluster 2024-09-18T08:20:15.193186+0000 mon.a (mon.0) 301 : cluster [DBG] Standby manager daemon b started 2024-09-18T08:20:15.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:15 smithi070 bash[22844]: audit 2024-09-18T08:20:15.193744+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2024-09-18T08:20:15.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:15 smithi070 bash[22844]: audit 2024-09-18T08:20:15.193744+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2024-09-18T08:20:15.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:15 smithi070 bash[22844]: audit 2024-09-18T08:20:15.194443+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-18T08:20:15.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:15 smithi070 bash[22844]: audit 2024-09-18T08:20:15.194443+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-18T08:20:15.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:15 smithi070 bash[22844]: audit 2024-09-18T08:20:15.195664+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2024-09-18T08:20:15.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:15 smithi070 bash[22844]: audit 2024-09-18T08:20:15.195664+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2024-09-18T08:20:15.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:15 smithi070 bash[22844]: audit 2024-09-18T08:20:15.196287+0000 mon.b (mon.2) 6 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-18T08:20:15.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:15 smithi070 bash[22844]: audit 2024-09-18T08:20:15.196287+0000 mon.b (mon.2) 6 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-18T08:20:15.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:15 smithi086 bash[24678]: cluster 2024-09-18T08:20:14.852179+0000 mgr.a (mgr.14152) 101 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:15.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:15 smithi086 bash[24678]: cluster 2024-09-18T08:20:14.852179+0000 mgr.a (mgr.14152) 101 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:15.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:15 smithi086 bash[24678]: cluster 2024-09-18T08:20:15.193186+0000 mon.a (mon.0) 301 : cluster [DBG] Standby manager daemon b started 2024-09-18T08:20:15.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:15 smithi086 bash[24678]: cluster 2024-09-18T08:20:15.193186+0000 mon.a (mon.0) 301 : cluster [DBG] Standby manager daemon b started 2024-09-18T08:20:15.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:15 smithi086 bash[24678]: audit 2024-09-18T08:20:15.193744+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2024-09-18T08:20:15.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:15 smithi086 bash[24678]: audit 2024-09-18T08:20:15.193744+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2024-09-18T08:20:15.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:15 smithi086 bash[24678]: audit 2024-09-18T08:20:15.194443+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-18T08:20:15.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:15 smithi086 bash[24678]: audit 2024-09-18T08:20:15.194443+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-18T08:20:15.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:15 smithi086 bash[24678]: audit 2024-09-18T08:20:15.195664+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2024-09-18T08:20:15.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:15 smithi086 bash[24678]: audit 2024-09-18T08:20:15.195664+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2024-09-18T08:20:15.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:15 smithi086 bash[24678]: audit 2024-09-18T08:20:15.196287+0000 mon.b (mon.2) 6 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-18T08:20:15.844 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:15 smithi086 bash[24678]: audit 2024-09-18T08:20:15.196287+0000 mon.b (mon.2) 6 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-18T08:20:15.947 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:20:15.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:15 smithi172 bash[24990]: cluster 2024-09-18T08:20:14.852179+0000 mgr.a (mgr.14152) 101 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:15.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:15 smithi172 bash[24990]: cluster 2024-09-18T08:20:14.852179+0000 mgr.a (mgr.14152) 101 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:15.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:15 smithi172 bash[24990]: cluster 2024-09-18T08:20:15.193186+0000 mon.a (mon.0) 301 : cluster [DBG] Standby manager daemon b started 2024-09-18T08:20:15.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:15 smithi172 bash[24990]: cluster 2024-09-18T08:20:15.193186+0000 mon.a (mon.0) 301 : cluster [DBG] Standby manager daemon b started 2024-09-18T08:20:15.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:15 smithi172 bash[24990]: audit 2024-09-18T08:20:15.193744+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2024-09-18T08:20:15.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:15 smithi172 bash[24990]: audit 2024-09-18T08:20:15.193744+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2024-09-18T08:20:15.985 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:15 smithi172 bash[24990]: audit 2024-09-18T08:20:15.194443+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-18T08:20:15.985 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:15 smithi172 bash[24990]: audit 2024-09-18T08:20:15.194443+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-18T08:20:15.985 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:15 smithi172 bash[24990]: audit 2024-09-18T08:20:15.195664+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2024-09-18T08:20:15.985 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:15 smithi172 bash[24990]: audit 2024-09-18T08:20:15.195664+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2024-09-18T08:20:15.985 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:15 smithi172 bash[24990]: audit 2024-09-18T08:20:15.196287+0000 mon.b (mon.2) 6 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-18T08:20:15.985 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:15 smithi172 bash[24990]: audit 2024-09-18T08:20:15.196287+0000 mon.b (mon.2) 6 : audit [DBG] from='mgr.? 172.21.15.86:0/1485827996' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-18T08:20:15.987 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi070:vg_nvme/lv_4 2024-09-18T08:20:16.824 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:16 smithi070 bash[22844]: cluster 2024-09-18T08:20:15.528995+0000 mon.a (mon.0) 302 : cluster [DBG] mgrmap e14: a(active, since 114s), standbys: b 2024-09-18T08:20:16.824 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:16 smithi070 bash[22844]: cluster 2024-09-18T08:20:15.528995+0000 mon.a (mon.0) 302 : cluster [DBG] mgrmap e14: a(active, since 114s), standbys: b 2024-09-18T08:20:16.825 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:16 smithi070 bash[22844]: audit 2024-09-18T08:20:15.530446+0000 mon.a (mon.0) 303 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2024-09-18T08:20:16.825 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:16 smithi070 bash[22844]: audit 2024-09-18T08:20:15.530446+0000 mon.a (mon.0) 303 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2024-09-18T08:20:16.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:16 smithi086 bash[24678]: cluster 2024-09-18T08:20:15.528995+0000 mon.a (mon.0) 302 : cluster [DBG] mgrmap e14: a(active, since 114s), standbys: b 2024-09-18T08:20:16.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:16 smithi086 bash[24678]: cluster 2024-09-18T08:20:15.528995+0000 mon.a (mon.0) 302 : cluster [DBG] mgrmap e14: a(active, since 114s), standbys: b 2024-09-18T08:20:16.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:16 smithi086 bash[24678]: audit 2024-09-18T08:20:15.530446+0000 mon.a (mon.0) 303 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2024-09-18T08:20:16.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:16 smithi086 bash[24678]: audit 2024-09-18T08:20:15.530446+0000 mon.a (mon.0) 303 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2024-09-18T08:20:16.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:16 smithi172 bash[24990]: cluster 2024-09-18T08:20:15.528995+0000 mon.a (mon.0) 302 : cluster [DBG] mgrmap e14: a(active, since 114s), standbys: b 2024-09-18T08:20:16.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:16 smithi172 bash[24990]: cluster 2024-09-18T08:20:15.528995+0000 mon.a (mon.0) 302 : cluster [DBG] mgrmap e14: a(active, since 114s), standbys: b 2024-09-18T08:20:16.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:16 smithi172 bash[24990]: audit 2024-09-18T08:20:15.530446+0000 mon.a (mon.0) 303 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2024-09-18T08:20:16.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:16 smithi172 bash[24990]: audit 2024-09-18T08:20:15.530446+0000 mon.a (mon.0) 303 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2024-09-18T08:20:17.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:17 smithi086 bash[24678]: cluster 2024-09-18T08:20:16.852424+0000 mgr.a (mgr.14152) 102 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:17.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:17 smithi086 bash[24678]: cluster 2024-09-18T08:20:16.852424+0000 mgr.a (mgr.14152) 102 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:17.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:17 smithi086 bash[24678]: audit 2024-09-18T08:20:17.516450+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:17.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:17 smithi086 bash[24678]: audit 2024-09-18T08:20:17.516450+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:17.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:17 smithi086 bash[24678]: audit 2024-09-18T08:20:17.523733+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:17.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:17 smithi086 bash[24678]: audit 2024-09-18T08:20:17.523733+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:17.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:17 smithi070 bash[22844]: cluster 2024-09-18T08:20:16.852424+0000 mgr.a (mgr.14152) 102 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:17.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:17 smithi070 bash[22844]: cluster 2024-09-18T08:20:16.852424+0000 mgr.a (mgr.14152) 102 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:17.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:17 smithi070 bash[22844]: audit 2024-09-18T08:20:17.516450+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:17.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:17 smithi070 bash[22844]: audit 2024-09-18T08:20:17.516450+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:17.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:17 smithi070 bash[22844]: audit 2024-09-18T08:20:17.523733+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:17.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:17 smithi070 bash[22844]: audit 2024-09-18T08:20:17.523733+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:17.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:17 smithi172 bash[24990]: cluster 2024-09-18T08:20:16.852424+0000 mgr.a (mgr.14152) 102 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:17.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:17 smithi172 bash[24990]: cluster 2024-09-18T08:20:16.852424+0000 mgr.a (mgr.14152) 102 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:17.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:17 smithi172 bash[24990]: audit 2024-09-18T08:20:17.516450+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:17.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:17 smithi172 bash[24990]: audit 2024-09-18T08:20:17.516450+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:17.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:17 smithi172 bash[24990]: audit 2024-09-18T08:20:17.523733+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:17.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:17 smithi172 bash[24990]: audit 2024-09-18T08:20:17.523733+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:18.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:18 smithi086 bash[24678]: audit 2024-09-18T08:20:17.526756+0000 mon.a (mon.0) 306 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:18.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:18 smithi086 bash[24678]: audit 2024-09-18T08:20:17.526756+0000 mon.a (mon.0) 306 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:18.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:18 smithi086 bash[24678]: audit 2024-09-18T08:20:17.538593+0000 mon.a (mon.0) 307 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:18.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:18 smithi086 bash[24678]: audit 2024-09-18T08:20:17.538593+0000 mon.a (mon.0) 307 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:18.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:18 smithi086 bash[24678]: audit 2024-09-18T08:20:17.540162+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:18.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:18 smithi086 bash[24678]: audit 2024-09-18T08:20:17.540162+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:18.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:18 smithi086 bash[24678]: audit 2024-09-18T08:20:17.549063+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:18.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:18 smithi086 bash[24678]: audit 2024-09-18T08:20:17.549063+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:18.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:18 smithi070 bash[22844]: audit 2024-09-18T08:20:17.526756+0000 mon.a (mon.0) 306 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:18.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:18 smithi070 bash[22844]: audit 2024-09-18T08:20:17.526756+0000 mon.a (mon.0) 306 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:18.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:18 smithi070 bash[22844]: audit 2024-09-18T08:20:17.538593+0000 mon.a (mon.0) 307 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:18.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:18 smithi070 bash[22844]: audit 2024-09-18T08:20:17.538593+0000 mon.a (mon.0) 307 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:18.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:18 smithi070 bash[22844]: audit 2024-09-18T08:20:17.540162+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:18.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:18 smithi070 bash[22844]: audit 2024-09-18T08:20:17.540162+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:18.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:18 smithi070 bash[22844]: audit 2024-09-18T08:20:17.549063+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:18.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:18 smithi070 bash[22844]: audit 2024-09-18T08:20:17.549063+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:18.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:18 smithi172 bash[24990]: audit 2024-09-18T08:20:17.526756+0000 mon.a (mon.0) 306 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:18.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:18 smithi172 bash[24990]: audit 2024-09-18T08:20:17.526756+0000 mon.a (mon.0) 306 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:18.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:18 smithi172 bash[24990]: audit 2024-09-18T08:20:17.538593+0000 mon.a (mon.0) 307 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:18.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:18 smithi172 bash[24990]: audit 2024-09-18T08:20:17.538593+0000 mon.a (mon.0) 307 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:18.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:18 smithi172 bash[24990]: audit 2024-09-18T08:20:17.540162+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:18.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:18 smithi172 bash[24990]: audit 2024-09-18T08:20:17.540162+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:18.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:18 smithi172 bash[24990]: audit 2024-09-18T08:20:17.549063+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:18.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:18 smithi172 bash[24990]: audit 2024-09-18T08:20:17.549063+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:19.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:19 smithi086 bash[24678]: cluster 2024-09-18T08:20:18.852838+0000 mgr.a (mgr.14152) 103 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:19.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:19 smithi086 bash[24678]: cluster 2024-09-18T08:20:18.852838+0000 mgr.a (mgr.14152) 103 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:19.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:19 smithi070 bash[22844]: cluster 2024-09-18T08:20:18.852838+0000 mgr.a (mgr.14152) 103 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:19.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:19 smithi070 bash[22844]: cluster 2024-09-18T08:20:18.852838+0000 mgr.a (mgr.14152) 103 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:19.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:19 smithi172 bash[24990]: cluster 2024-09-18T08:20:18.852838+0000 mgr.a (mgr.14152) 103 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:19.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:19 smithi172 bash[24990]: cluster 2024-09-18T08:20:18.852838+0000 mgr.a (mgr.14152) 103 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:20.707 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:20:21.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:20 smithi070 bash[22844]: cluster 2024-09-18T08:20:20.853296+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-18T08:20:21.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:20 smithi070 bash[22844]: cluster 2024-09-18T08:20:20.853296+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-18T08:20:21.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:20 smithi172 bash[24990]: cluster 2024-09-18T08:20:20.853296+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-18T08:20:21.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:20 smithi172 bash[24990]: cluster 2024-09-18T08:20:20.853296+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-18T08:20:21.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:20 smithi086 bash[24678]: cluster 2024-09-18T08:20:20.853296+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-18T08:20:21.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:20 smithi086 bash[24678]: cluster 2024-09-18T08:20:20.853296+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-18T08:20:22.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:22 smithi086 bash[24678]: audit 2024-09-18T08:20:22.010550+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:20:22.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:22 smithi086 bash[24678]: audit 2024-09-18T08:20:22.010550+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:20:22.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:22 smithi086 bash[24678]: audit 2024-09-18T08:20:22.015491+0000 mon.a (mon.0) 311 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:20:22.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:22 smithi086 bash[24678]: audit 2024-09-18T08:20:22.015491+0000 mon.a (mon.0) 311 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:20:22.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:22 smithi086 bash[24678]: audit 2024-09-18T08:20:22.016698+0000 mon.a (mon.0) 312 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:22.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:22 smithi086 bash[24678]: audit 2024-09-18T08:20:22.016698+0000 mon.a (mon.0) 312 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:22.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:22 smithi070 bash[22844]: audit 2024-09-18T08:20:22.010550+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:20:22.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:22 smithi070 bash[22844]: audit 2024-09-18T08:20:22.010550+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:20:22.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:22 smithi070 bash[22844]: audit 2024-09-18T08:20:22.015491+0000 mon.a (mon.0) 311 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:20:22.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:22 smithi070 bash[22844]: audit 2024-09-18T08:20:22.015491+0000 mon.a (mon.0) 311 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:20:22.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:22 smithi070 bash[22844]: audit 2024-09-18T08:20:22.016698+0000 mon.a (mon.0) 312 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:22.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:22 smithi070 bash[22844]: audit 2024-09-18T08:20:22.016698+0000 mon.a (mon.0) 312 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:22.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:22 smithi172 bash[24990]: audit 2024-09-18T08:20:22.010550+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:20:22.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:22 smithi172 bash[24990]: audit 2024-09-18T08:20:22.010550+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:20:22.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:22 smithi172 bash[24990]: audit 2024-09-18T08:20:22.015491+0000 mon.a (mon.0) 311 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:20:22.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:22 smithi172 bash[24990]: audit 2024-09-18T08:20:22.015491+0000 mon.a (mon.0) 311 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:20:22.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:22 smithi172 bash[24990]: audit 2024-09-18T08:20:22.016698+0000 mon.a (mon.0) 312 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:22.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:22 smithi172 bash[24990]: audit 2024-09-18T08:20:22.016698+0000 mon.a (mon.0) 312 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:23.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:23 smithi086 bash[24678]: audit 2024-09-18T08:20:22.003967+0000 mgr.a (mgr.14152) 105 : audit [DBG] from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi070:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:20:23.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:23 smithi086 bash[24678]: audit 2024-09-18T08:20:22.003967+0000 mgr.a (mgr.14152) 105 : audit [DBG] from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi070:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:20:23.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:23 smithi086 bash[24678]: cluster 2024-09-18T08:20:22.853731+0000 mgr.a (mgr.14152) 106 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:23.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:23 smithi086 bash[24678]: cluster 2024-09-18T08:20:22.853731+0000 mgr.a (mgr.14152) 106 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:23.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:23 smithi070 bash[22844]: audit 2024-09-18T08:20:22.003967+0000 mgr.a (mgr.14152) 105 : audit [DBG] from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi070:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:20:23.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:23 smithi070 bash[22844]: audit 2024-09-18T08:20:22.003967+0000 mgr.a (mgr.14152) 105 : audit [DBG] from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi070:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:20:23.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:23 smithi070 bash[22844]: cluster 2024-09-18T08:20:22.853731+0000 mgr.a (mgr.14152) 106 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:23.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:23 smithi070 bash[22844]: cluster 2024-09-18T08:20:22.853731+0000 mgr.a (mgr.14152) 106 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:23.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:23 smithi172 bash[24990]: audit 2024-09-18T08:20:22.003967+0000 mgr.a (mgr.14152) 105 : audit [DBG] from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi070:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:20:23.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:23 smithi172 bash[24990]: audit 2024-09-18T08:20:22.003967+0000 mgr.a (mgr.14152) 105 : audit [DBG] from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi070:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:20:23.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:23 smithi172 bash[24990]: cluster 2024-09-18T08:20:22.853731+0000 mgr.a (mgr.14152) 106 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:23.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:23 smithi172 bash[24990]: cluster 2024-09-18T08:20:22.853731+0000 mgr.a (mgr.14152) 106 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:25.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:24 smithi070 bash[22844]: cluster 2024-09-18T08:20:24.854131+0000 mgr.a (mgr.14152) 107 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:25.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:24 smithi070 bash[22844]: cluster 2024-09-18T08:20:24.854131+0000 mgr.a (mgr.14152) 107 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:25.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:24 smithi172 bash[24990]: cluster 2024-09-18T08:20:24.854131+0000 mgr.a (mgr.14152) 107 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:25.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:24 smithi172 bash[24990]: cluster 2024-09-18T08:20:24.854131+0000 mgr.a (mgr.14152) 107 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:25.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:24 smithi086 bash[24678]: cluster 2024-09-18T08:20:24.854131+0000 mgr.a (mgr.14152) 107 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:25.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:24 smithi086 bash[24678]: cluster 2024-09-18T08:20:24.854131+0000 mgr.a (mgr.14152) 107 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:27.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:26 smithi070 bash[22844]: cluster 2024-09-18T08:20:26.854621+0000 mgr.a (mgr.14152) 108 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:27.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:26 smithi070 bash[22844]: cluster 2024-09-18T08:20:26.854621+0000 mgr.a (mgr.14152) 108 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:27.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:26 smithi172 bash[24990]: cluster 2024-09-18T08:20:26.854621+0000 mgr.a (mgr.14152) 108 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:27.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:26 smithi172 bash[24990]: cluster 2024-09-18T08:20:26.854621+0000 mgr.a (mgr.14152) 108 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:27.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:26 smithi086 bash[24678]: cluster 2024-09-18T08:20:26.854621+0000 mgr.a (mgr.14152) 108 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:27.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:26 smithi086 bash[24678]: cluster 2024-09-18T08:20:26.854621+0000 mgr.a (mgr.14152) 108 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:28.982 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:28 smithi070 bash[22844]: cluster 2024-09-18T08:20:28.855115+0000 mgr.a (mgr.14152) 109 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:28.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:28 smithi070 bash[22844]: cluster 2024-09-18T08:20:28.855115+0000 mgr.a (mgr.14152) 109 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:29.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:28 smithi172 bash[24990]: cluster 2024-09-18T08:20:28.855115+0000 mgr.a (mgr.14152) 109 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:29.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:28 smithi172 bash[24990]: cluster 2024-09-18T08:20:28.855115+0000 mgr.a (mgr.14152) 109 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:29.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:28 smithi086 bash[24678]: cluster 2024-09-18T08:20:28.855115+0000 mgr.a (mgr.14152) 109 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:29.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:28 smithi086 bash[24678]: cluster 2024-09-18T08:20:28.855115+0000 mgr.a (mgr.14152) 109 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:30.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:30 smithi070 bash[22844]: audit 2024-09-18T08:20:30.170554+0000 mon.a (mon.0) 313 : audit [INF] from='client.? 172.21.15.70:0/2886834765' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8044a3a9-164b-481b-aa4b-08f6decc7ed4"} : dispatch 2024-09-18T08:20:30.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:30 smithi070 bash[22844]: audit 2024-09-18T08:20:30.170554+0000 mon.a (mon.0) 313 : audit [INF] from='client.? 172.21.15.70:0/2886834765' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8044a3a9-164b-481b-aa4b-08f6decc7ed4"} : dispatch 2024-09-18T08:20:30.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:30 smithi070 bash[22844]: audit 2024-09-18T08:20:30.173646+0000 mon.a (mon.0) 314 : audit [INF] from='client.? 172.21.15.70:0/2886834765' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8044a3a9-164b-481b-aa4b-08f6decc7ed4"}]': finished 2024-09-18T08:20:30.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:30 smithi070 bash[22844]: audit 2024-09-18T08:20:30.173646+0000 mon.a (mon.0) 314 : audit [INF] from='client.? 172.21.15.70:0/2886834765' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8044a3a9-164b-481b-aa4b-08f6decc7ed4"}]': finished 2024-09-18T08:20:30.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:30 smithi070 bash[22844]: cluster 2024-09-18T08:20:30.178381+0000 mon.a (mon.0) 315 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-18T08:20:30.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:30 smithi070 bash[22844]: cluster 2024-09-18T08:20:30.178381+0000 mon.a (mon.0) 315 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-18T08:20:30.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:30 smithi070 bash[22844]: audit 2024-09-18T08:20:30.178584+0000 mon.a (mon.0) 316 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:20:30.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:30 smithi070 bash[22844]: audit 2024-09-18T08:20:30.178584+0000 mon.a (mon.0) 316 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:20:30.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:30 smithi172 bash[24990]: audit 2024-09-18T08:20:30.170554+0000 mon.a (mon.0) 313 : audit [INF] from='client.? 172.21.15.70:0/2886834765' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8044a3a9-164b-481b-aa4b-08f6decc7ed4"} : dispatch 2024-09-18T08:20:30.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:30 smithi172 bash[24990]: audit 2024-09-18T08:20:30.170554+0000 mon.a (mon.0) 313 : audit [INF] from='client.? 172.21.15.70:0/2886834765' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8044a3a9-164b-481b-aa4b-08f6decc7ed4"} : dispatch 2024-09-18T08:20:30.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:30 smithi172 bash[24990]: audit 2024-09-18T08:20:30.173646+0000 mon.a (mon.0) 314 : audit [INF] from='client.? 172.21.15.70:0/2886834765' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8044a3a9-164b-481b-aa4b-08f6decc7ed4"}]': finished 2024-09-18T08:20:30.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:30 smithi172 bash[24990]: audit 2024-09-18T08:20:30.173646+0000 mon.a (mon.0) 314 : audit [INF] from='client.? 172.21.15.70:0/2886834765' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8044a3a9-164b-481b-aa4b-08f6decc7ed4"}]': finished 2024-09-18T08:20:30.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:30 smithi172 bash[24990]: cluster 2024-09-18T08:20:30.178381+0000 mon.a (mon.0) 315 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-18T08:20:30.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:30 smithi172 bash[24990]: cluster 2024-09-18T08:20:30.178381+0000 mon.a (mon.0) 315 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-18T08:20:30.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:30 smithi172 bash[24990]: audit 2024-09-18T08:20:30.178584+0000 mon.a (mon.0) 316 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:20:30.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:30 smithi172 bash[24990]: audit 2024-09-18T08:20:30.178584+0000 mon.a (mon.0) 316 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:20:30.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:30 smithi086 bash[24678]: audit 2024-09-18T08:20:30.170554+0000 mon.a (mon.0) 313 : audit [INF] from='client.? 172.21.15.70:0/2886834765' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8044a3a9-164b-481b-aa4b-08f6decc7ed4"} : dispatch 2024-09-18T08:20:30.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:30 smithi086 bash[24678]: audit 2024-09-18T08:20:30.170554+0000 mon.a (mon.0) 313 : audit [INF] from='client.? 172.21.15.70:0/2886834765' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8044a3a9-164b-481b-aa4b-08f6decc7ed4"} : dispatch 2024-09-18T08:20:30.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:30 smithi086 bash[24678]: audit 2024-09-18T08:20:30.173646+0000 mon.a (mon.0) 314 : audit [INF] from='client.? 172.21.15.70:0/2886834765' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8044a3a9-164b-481b-aa4b-08f6decc7ed4"}]': finished 2024-09-18T08:20:30.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:30 smithi086 bash[24678]: audit 2024-09-18T08:20:30.173646+0000 mon.a (mon.0) 314 : audit [INF] from='client.? 172.21.15.70:0/2886834765' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8044a3a9-164b-481b-aa4b-08f6decc7ed4"}]': finished 2024-09-18T08:20:30.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:30 smithi086 bash[24678]: cluster 2024-09-18T08:20:30.178381+0000 mon.a (mon.0) 315 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-18T08:20:30.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:30 smithi086 bash[24678]: cluster 2024-09-18T08:20:30.178381+0000 mon.a (mon.0) 315 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-18T08:20:30.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:30 smithi086 bash[24678]: audit 2024-09-18T08:20:30.178584+0000 mon.a (mon.0) 316 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:20:30.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:30 smithi086 bash[24678]: audit 2024-09-18T08:20:30.178584+0000 mon.a (mon.0) 316 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:20:31.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:31 smithi070 bash[22844]: audit 2024-09-18T08:20:30.802518+0000 mon.a (mon.0) 317 : audit [DBG] from='client.? 172.21.15.70:0/728324433' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:20:31.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:31 smithi070 bash[22844]: audit 2024-09-18T08:20:30.802518+0000 mon.a (mon.0) 317 : audit [DBG] from='client.? 172.21.15.70:0/728324433' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:20:31.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:31 smithi070 bash[22844]: cluster 2024-09-18T08:20:30.855585+0000 mgr.a (mgr.14152) 110 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:31.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:31 smithi070 bash[22844]: cluster 2024-09-18T08:20:30.855585+0000 mgr.a (mgr.14152) 110 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:31.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:31 smithi172 bash[24990]: audit 2024-09-18T08:20:30.802518+0000 mon.a (mon.0) 317 : audit [DBG] from='client.? 172.21.15.70:0/728324433' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:20:31.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:31 smithi172 bash[24990]: audit 2024-09-18T08:20:30.802518+0000 mon.a (mon.0) 317 : audit [DBG] from='client.? 172.21.15.70:0/728324433' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:20:31.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:31 smithi172 bash[24990]: cluster 2024-09-18T08:20:30.855585+0000 mgr.a (mgr.14152) 110 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:31.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:31 smithi172 bash[24990]: cluster 2024-09-18T08:20:30.855585+0000 mgr.a (mgr.14152) 110 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:31.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:31 smithi086 bash[24678]: audit 2024-09-18T08:20:30.802518+0000 mon.a (mon.0) 317 : audit [DBG] from='client.? 172.21.15.70:0/728324433' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:20:31.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:31 smithi086 bash[24678]: audit 2024-09-18T08:20:30.802518+0000 mon.a (mon.0) 317 : audit [DBG] from='client.? 172.21.15.70:0/728324433' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:20:31.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:31 smithi086 bash[24678]: cluster 2024-09-18T08:20:30.855585+0000 mgr.a (mgr.14152) 110 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:31.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:31 smithi086 bash[24678]: cluster 2024-09-18T08:20:30.855585+0000 mgr.a (mgr.14152) 110 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:33.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:32 smithi070 bash[22844]: cluster 2024-09-18T08:20:32.855906+0000 mgr.a (mgr.14152) 111 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:33.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:32 smithi070 bash[22844]: cluster 2024-09-18T08:20:32.855906+0000 mgr.a (mgr.14152) 111 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:33.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:32 smithi172 bash[24990]: cluster 2024-09-18T08:20:32.855906+0000 mgr.a (mgr.14152) 111 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:33.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:32 smithi172 bash[24990]: cluster 2024-09-18T08:20:32.855906+0000 mgr.a (mgr.14152) 111 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:33.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:32 smithi086 bash[24678]: cluster 2024-09-18T08:20:32.855906+0000 mgr.a (mgr.14152) 111 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:33.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:32 smithi086 bash[24678]: cluster 2024-09-18T08:20:32.855906+0000 mgr.a (mgr.14152) 111 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:35.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:34 smithi070 bash[22844]: cluster 2024-09-18T08:20:34.856259+0000 mgr.a (mgr.14152) 112 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:35.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:34 smithi070 bash[22844]: cluster 2024-09-18T08:20:34.856259+0000 mgr.a (mgr.14152) 112 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:35.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:34 smithi172 bash[24990]: cluster 2024-09-18T08:20:34.856259+0000 mgr.a (mgr.14152) 112 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:35.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:34 smithi172 bash[24990]: cluster 2024-09-18T08:20:34.856259+0000 mgr.a (mgr.14152) 112 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:35.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:34 smithi086 bash[24678]: cluster 2024-09-18T08:20:34.856259+0000 mgr.a (mgr.14152) 112 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:35.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:34 smithi086 bash[24678]: cluster 2024-09-18T08:20:34.856259+0000 mgr.a (mgr.14152) 112 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:37.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:36 smithi070 bash[22844]: cluster 2024-09-18T08:20:36.856713+0000 mgr.a (mgr.14152) 113 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:37.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:36 smithi070 bash[22844]: cluster 2024-09-18T08:20:36.856713+0000 mgr.a (mgr.14152) 113 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:37.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:36 smithi172 bash[24990]: cluster 2024-09-18T08:20:36.856713+0000 mgr.a (mgr.14152) 113 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:37.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:36 smithi172 bash[24990]: cluster 2024-09-18T08:20:36.856713+0000 mgr.a (mgr.14152) 113 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:37.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:36 smithi086 bash[24678]: cluster 2024-09-18T08:20:36.856713+0000 mgr.a (mgr.14152) 113 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:37.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:36 smithi086 bash[24678]: cluster 2024-09-18T08:20:36.856713+0000 mgr.a (mgr.14152) 113 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:39.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:38 smithi070 bash[22844]: cluster 2024-09-18T08:20:38.857147+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-18T08:20:39.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:38 smithi070 bash[22844]: cluster 2024-09-18T08:20:38.857147+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-18T08:20:39.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:38 smithi172 bash[24990]: cluster 2024-09-18T08:20:38.857147+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-18T08:20:39.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:38 smithi172 bash[24990]: cluster 2024-09-18T08:20:38.857147+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-18T08:20:39.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:38 smithi086 bash[24678]: cluster 2024-09-18T08:20:38.857147+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-18T08:20:39.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:38 smithi086 bash[24678]: cluster 2024-09-18T08:20:38.857147+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-18T08:20:41.088 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:40 smithi070 bash[22844]: cluster 2024-09-18T08:20:40.857599+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-18T08:20:41.088 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:40 smithi070 bash[22844]: cluster 2024-09-18T08:20:40.857599+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-18T08:20:41.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:40 smithi172 bash[24990]: cluster 2024-09-18T08:20:40.857599+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-18T08:20:41.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:40 smithi172 bash[24990]: cluster 2024-09-18T08:20:40.857599+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-18T08:20:41.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:40 smithi086 bash[24678]: cluster 2024-09-18T08:20:40.857599+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-18T08:20:41.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:40 smithi086 bash[24678]: cluster 2024-09-18T08:20:40.857599+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-18T08:20:43.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:42 smithi070 bash[22844]: cluster 2024-09-18T08:20:42.858063+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-18T08:20:43.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:42 smithi070 bash[22844]: cluster 2024-09-18T08:20:42.858063+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-18T08:20:43.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:42 smithi172 bash[24990]: cluster 2024-09-18T08:20:42.858063+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-18T08:20:43.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:42 smithi172 bash[24990]: cluster 2024-09-18T08:20:42.858063+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-18T08:20:43.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:42 smithi086 bash[24678]: cluster 2024-09-18T08:20:42.858063+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-18T08:20:43.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:42 smithi086 bash[24678]: cluster 2024-09-18T08:20:42.858063+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-18T08:20:44.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:43 smithi070 bash[22844]: audit 2024-09-18T08:20:43.100897+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-18T08:20:44.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:43 smithi070 bash[22844]: audit 2024-09-18T08:20:43.100897+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-18T08:20:44.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:43 smithi070 bash[22844]: audit 2024-09-18T08:20:43.102666+0000 mon.a (mon.0) 319 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:44.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:43 smithi070 bash[22844]: audit 2024-09-18T08:20:43.102666+0000 mon.a (mon.0) 319 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:44.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:43 smithi070 bash[22844]: cephadm 2024-09-18T08:20:43.104142+0000 mgr.a (mgr.14152) 117 : cephadm [INF] Deploying daemon osd.0 on smithi070 2024-09-18T08:20:44.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:43 smithi070 bash[22844]: cephadm 2024-09-18T08:20:43.104142+0000 mgr.a (mgr.14152) 117 : cephadm [INF] Deploying daemon osd.0 on smithi070 2024-09-18T08:20:44.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:43 smithi172 bash[24990]: audit 2024-09-18T08:20:43.100897+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-18T08:20:44.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:43 smithi172 bash[24990]: audit 2024-09-18T08:20:43.100897+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-18T08:20:44.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:43 smithi172 bash[24990]: audit 2024-09-18T08:20:43.102666+0000 mon.a (mon.0) 319 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:44.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:43 smithi172 bash[24990]: audit 2024-09-18T08:20:43.102666+0000 mon.a (mon.0) 319 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:44.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:43 smithi172 bash[24990]: cephadm 2024-09-18T08:20:43.104142+0000 mgr.a (mgr.14152) 117 : cephadm [INF] Deploying daemon osd.0 on smithi070 2024-09-18T08:20:44.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:43 smithi172 bash[24990]: cephadm 2024-09-18T08:20:43.104142+0000 mgr.a (mgr.14152) 117 : cephadm [INF] Deploying daemon osd.0 on smithi070 2024-09-18T08:20:44.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:43 smithi086 bash[24678]: audit 2024-09-18T08:20:43.100897+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-18T08:20:44.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:43 smithi086 bash[24678]: audit 2024-09-18T08:20:43.100897+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-18T08:20:44.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:43 smithi086 bash[24678]: audit 2024-09-18T08:20:43.102666+0000 mon.a (mon.0) 319 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:44.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:43 smithi086 bash[24678]: audit 2024-09-18T08:20:43.102666+0000 mon.a (mon.0) 319 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:44.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:43 smithi086 bash[24678]: cephadm 2024-09-18T08:20:43.104142+0000 mgr.a (mgr.14152) 117 : cephadm [INF] Deploying daemon osd.0 on smithi070 2024-09-18T08:20:44.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:43 smithi086 bash[24678]: cephadm 2024-09-18T08:20:43.104142+0000 mgr.a (mgr.14152) 117 : cephadm [INF] Deploying daemon osd.0 on smithi070 2024-09-18T08:20:45.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:44 smithi070 bash[22844]: cluster 2024-09-18T08:20:44.858524+0000 mgr.a (mgr.14152) 118 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:45.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:44 smithi070 bash[22844]: cluster 2024-09-18T08:20:44.858524+0000 mgr.a (mgr.14152) 118 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:45.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:44 smithi172 bash[24990]: cluster 2024-09-18T08:20:44.858524+0000 mgr.a (mgr.14152) 118 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:45.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:44 smithi172 bash[24990]: cluster 2024-09-18T08:20:44.858524+0000 mgr.a (mgr.14152) 118 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:45.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:44 smithi086 bash[24678]: cluster 2024-09-18T08:20:44.858524+0000 mgr.a (mgr.14152) 118 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:45.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:44 smithi086 bash[24678]: cluster 2024-09-18T08:20:44.858524+0000 mgr.a (mgr.14152) 118 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:47.218 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:20:47 smithi070 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:20:47.218 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:46 smithi070 bash[22844]: cluster 2024-09-18T08:20:46.858965+0000 mgr.a (mgr.14152) 119 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:47.218 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:46 smithi070 bash[22844]: cluster 2024-09-18T08:20:46.858965+0000 mgr.a (mgr.14152) 119 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:47.218 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:47 smithi070 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:20:47.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:46 smithi172 bash[24990]: cluster 2024-09-18T08:20:46.858965+0000 mgr.a (mgr.14152) 119 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:47.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:46 smithi172 bash[24990]: cluster 2024-09-18T08:20:46.858965+0000 mgr.a (mgr.14152) 119 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:47.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:46 smithi086 bash[24678]: cluster 2024-09-18T08:20:46.858965+0000 mgr.a (mgr.14152) 119 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:47.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:46 smithi086 bash[24678]: cluster 2024-09-18T08:20:46.858965+0000 mgr.a (mgr.14152) 119 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:47.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:47 smithi070 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:20:47.483 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:20:47 smithi070 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:20:48.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:47 smithi070 bash[22844]: audit 2024-09-18T08:20:47.479905+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:48.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:47 smithi070 bash[22844]: audit 2024-09-18T08:20:47.479905+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:48.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:47 smithi070 bash[22844]: audit 2024-09-18T08:20:47.483549+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:48.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:47 smithi070 bash[22844]: audit 2024-09-18T08:20:47.483549+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:48.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:47 smithi070 bash[22844]: audit 2024-09-18T08:20:47.487752+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:48.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:47 smithi070 bash[22844]: audit 2024-09-18T08:20:47.487752+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:48.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:47 smithi172 bash[24990]: audit 2024-09-18T08:20:47.479905+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:48.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:47 smithi172 bash[24990]: audit 2024-09-18T08:20:47.479905+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:48.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:47 smithi172 bash[24990]: audit 2024-09-18T08:20:47.483549+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:48.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:47 smithi172 bash[24990]: audit 2024-09-18T08:20:47.483549+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:48.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:47 smithi172 bash[24990]: audit 2024-09-18T08:20:47.487752+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:48.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:47 smithi172 bash[24990]: audit 2024-09-18T08:20:47.487752+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:48.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:47 smithi086 bash[24678]: audit 2024-09-18T08:20:47.479905+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:48.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:47 smithi086 bash[24678]: audit 2024-09-18T08:20:47.479905+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:48.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:47 smithi086 bash[24678]: audit 2024-09-18T08:20:47.483549+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:48.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:47 smithi086 bash[24678]: audit 2024-09-18T08:20:47.483549+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:48.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:47 smithi086 bash[24678]: audit 2024-09-18T08:20:47.487752+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:48.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:47 smithi086 bash[24678]: audit 2024-09-18T08:20:47.487752+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:49.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:48 smithi070 bash[22844]: cluster 2024-09-18T08:20:48.859489+0000 mgr.a (mgr.14152) 120 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:49.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:48 smithi070 bash[22844]: cluster 2024-09-18T08:20:48.859489+0000 mgr.a (mgr.14152) 120 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:49.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:48 smithi172 bash[24990]: cluster 2024-09-18T08:20:48.859489+0000 mgr.a (mgr.14152) 120 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:49.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:48 smithi172 bash[24990]: cluster 2024-09-18T08:20:48.859489+0000 mgr.a (mgr.14152) 120 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:49.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:48 smithi086 bash[24678]: cluster 2024-09-18T08:20:48.859489+0000 mgr.a (mgr.14152) 120 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:49.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:48 smithi086 bash[24678]: cluster 2024-09-18T08:20:48.859489+0000 mgr.a (mgr.14152) 120 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:51.175 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:50 smithi070 bash[22844]: cluster 2024-09-18T08:20:50.859841+0000 mgr.a (mgr.14152) 121 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:51.175 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:50 smithi070 bash[22844]: cluster 2024-09-18T08:20:50.859841+0000 mgr.a (mgr.14152) 121 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:51.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:50 smithi172 bash[24990]: cluster 2024-09-18T08:20:50.859841+0000 mgr.a (mgr.14152) 121 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:51.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:50 smithi172 bash[24990]: cluster 2024-09-18T08:20:50.859841+0000 mgr.a (mgr.14152) 121 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:51.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:50 smithi086 bash[24678]: cluster 2024-09-18T08:20:50.859841+0000 mgr.a (mgr.14152) 121 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:51.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:50 smithi086 bash[24678]: cluster 2024-09-18T08:20:50.859841+0000 mgr.a (mgr.14152) 121 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:20:53.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:52 smithi070 bash[22844]: cluster 2024-09-18T08:20:52.860152+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-18T08:20:53.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:52 smithi070 bash[22844]: cluster 2024-09-18T08:20:52.860152+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-18T08:20:53.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:52 smithi172 bash[24990]: cluster 2024-09-18T08:20:52.860152+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-18T08:20:53.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:52 smithi172 bash[24990]: cluster 2024-09-18T08:20:52.860152+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-18T08:20:53.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:52 smithi086 bash[24678]: cluster 2024-09-18T08:20:52.860152+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-18T08:20:53.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:52 smithi086 bash[24678]: cluster 2024-09-18T08:20:52.860152+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-18T08:20:54.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:54 smithi070 bash[22844]: audit 2024-09-18T08:20:53.561360+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:54.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:54 smithi070 bash[22844]: audit 2024-09-18T08:20:53.561360+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:54.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:54 smithi070 bash[22844]: audit 2024-09-18T08:20:53.567335+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:54.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:54 smithi070 bash[22844]: audit 2024-09-18T08:20:53.567335+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:54.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:54 smithi070 bash[22844]: audit 2024-09-18T08:20:54.186297+0000 mon.a (mon.0) 325 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:54.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:54 smithi070 bash[22844]: audit 2024-09-18T08:20:54.186297+0000 mon.a (mon.0) 325 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:54.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:54 smithi070 bash[22844]: audit 2024-09-18T08:20:54.187053+0000 mon.a (mon.0) 326 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:54.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:54 smithi070 bash[22844]: audit 2024-09-18T08:20:54.187053+0000 mon.a (mon.0) 326 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:54.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:54 smithi070 bash[22844]: audit 2024-09-18T08:20:54.192154+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:54.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:54 smithi070 bash[22844]: audit 2024-09-18T08:20:54.192154+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:54.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:54 smithi086 bash[24678]: audit 2024-09-18T08:20:53.561360+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:54 smithi086 bash[24678]: audit 2024-09-18T08:20:53.561360+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:54 smithi086 bash[24678]: audit 2024-09-18T08:20:53.567335+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:54 smithi086 bash[24678]: audit 2024-09-18T08:20:53.567335+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:54 smithi086 bash[24678]: audit 2024-09-18T08:20:54.186297+0000 mon.a (mon.0) 325 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:54 smithi086 bash[24678]: audit 2024-09-18T08:20:54.186297+0000 mon.a (mon.0) 325 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:54 smithi086 bash[24678]: audit 2024-09-18T08:20:54.187053+0000 mon.a (mon.0) 326 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:54 smithi086 bash[24678]: audit 2024-09-18T08:20:54.187053+0000 mon.a (mon.0) 326 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:54 smithi086 bash[24678]: audit 2024-09-18T08:20:54.192154+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:54.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:54 smithi086 bash[24678]: audit 2024-09-18T08:20:54.192154+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:54.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:54 smithi172 bash[24990]: audit 2024-09-18T08:20:53.561360+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:54.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:54 smithi172 bash[24990]: audit 2024-09-18T08:20:53.561360+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:54.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:54 smithi172 bash[24990]: audit 2024-09-18T08:20:53.567335+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:54.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:54 smithi172 bash[24990]: audit 2024-09-18T08:20:53.567335+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:54.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:54 smithi172 bash[24990]: audit 2024-09-18T08:20:54.186297+0000 mon.a (mon.0) 325 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:54.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:54 smithi172 bash[24990]: audit 2024-09-18T08:20:54.186297+0000 mon.a (mon.0) 325 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:20:54.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:54 smithi172 bash[24990]: audit 2024-09-18T08:20:54.187053+0000 mon.a (mon.0) 326 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:54.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:54 smithi172 bash[24990]: audit 2024-09-18T08:20:54.187053+0000 mon.a (mon.0) 326 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:20:54.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:54 smithi172 bash[24990]: audit 2024-09-18T08:20:54.192154+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:54.984 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:54 smithi172 bash[24990]: audit 2024-09-18T08:20:54.192154+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:55.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:55 smithi086 bash[24678]: cluster 2024-09-18T08:20:54.860634+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-18T08:20:55.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:55 smithi086 bash[24678]: cluster 2024-09-18T08:20:54.860634+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-18T08:20:55.982 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:55 smithi070 bash[22844]: cluster 2024-09-18T08:20:54.860634+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-18T08:20:55.983 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:55 smithi070 bash[22844]: cluster 2024-09-18T08:20:54.860634+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-18T08:20:55.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:55 smithi172 bash[24990]: cluster 2024-09-18T08:20:54.860634+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-18T08:20:55.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:55 smithi172 bash[24990]: cluster 2024-09-18T08:20:54.860634+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-18T08:20:57.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:56 smithi070 bash[22844]: cluster 2024-09-18T08:20:56.861172+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-18T08:20:57.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:56 smithi070 bash[22844]: cluster 2024-09-18T08:20:56.861172+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-18T08:20:57.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:56 smithi172 bash[24990]: cluster 2024-09-18T08:20:56.861172+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-18T08:20:57.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:56 smithi172 bash[24990]: cluster 2024-09-18T08:20:56.861172+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-18T08:20:57.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:56 smithi086 bash[24678]: cluster 2024-09-18T08:20:56.861172+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-18T08:20:57.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:56 smithi086 bash[24678]: cluster 2024-09-18T08:20:56.861172+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-18T08:20:58.841 INFO:teuthology.orchestra.run.smithi070.stdout:Created osd(s) 0 on host 'smithi070' 2024-09-18T08:20:59.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:58 smithi070 bash[22844]: audit 2024-09-18T08:20:58.826628+0000 mon.a (mon.0) 328 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:59.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:58 smithi070 bash[22844]: audit 2024-09-18T08:20:58.826628+0000 mon.a (mon.0) 328 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:59.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:58 smithi070 bash[22844]: audit 2024-09-18T08:20:58.831577+0000 mon.a (mon.0) 329 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:59.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:58 smithi070 bash[22844]: audit 2024-09-18T08:20:58.831577+0000 mon.a (mon.0) 329 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:59.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:58 smithi070 bash[22844]: audit 2024-09-18T08:20:58.837592+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:59.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:58 smithi070 bash[22844]: audit 2024-09-18T08:20:58.837592+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:59.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:58 smithi070 bash[22844]: cluster 2024-09-18T08:20:58.861490+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-18T08:20:59.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:58 smithi070 bash[22844]: cluster 2024-09-18T08:20:58.861490+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-18T08:20:59.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:58 smithi172 bash[24990]: audit 2024-09-18T08:20:58.826628+0000 mon.a (mon.0) 328 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:59.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:58 smithi172 bash[24990]: audit 2024-09-18T08:20:58.826628+0000 mon.a (mon.0) 328 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:59.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:58 smithi172 bash[24990]: audit 2024-09-18T08:20:58.831577+0000 mon.a (mon.0) 329 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:59.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:58 smithi172 bash[24990]: audit 2024-09-18T08:20:58.831577+0000 mon.a (mon.0) 329 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:59.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:58 smithi172 bash[24990]: audit 2024-09-18T08:20:58.837592+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:59.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:58 smithi172 bash[24990]: audit 2024-09-18T08:20:58.837592+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:59.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:58 smithi172 bash[24990]: cluster 2024-09-18T08:20:58.861490+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-18T08:20:59.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:58 smithi172 bash[24990]: cluster 2024-09-18T08:20:58.861490+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-18T08:20:59.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:58 smithi086 bash[24678]: audit 2024-09-18T08:20:58.826628+0000 mon.a (mon.0) 328 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:59.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:58 smithi086 bash[24678]: audit 2024-09-18T08:20:58.826628+0000 mon.a (mon.0) 328 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:20:59.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:58 smithi086 bash[24678]: audit 2024-09-18T08:20:58.831577+0000 mon.a (mon.0) 329 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:59.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:58 smithi086 bash[24678]: audit 2024-09-18T08:20:58.831577+0000 mon.a (mon.0) 329 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:59.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:58 smithi086 bash[24678]: audit 2024-09-18T08:20:58.837592+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:59.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:58 smithi086 bash[24678]: audit 2024-09-18T08:20:58.837592+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:20:59.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:58 smithi086 bash[24678]: cluster 2024-09-18T08:20:58.861490+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-18T08:20:59.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:58 smithi086 bash[24678]: cluster 2024-09-18T08:20:58.861490+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-18T08:20:59.432 DEBUG:teuthology.orchestra.run.smithi070:osd.0> sudo journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@osd.0.service 2024-09-18T08:20:59.435 INFO:tasks.cephadm:Deploying osd.1 on smithi070 with /dev/vg_nvme/lv_3... 2024-09-18T08:20:59.435 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-18T08:21:00.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:59 smithi070 bash[22844]: audit 2024-09-18T08:20:58.916774+0000 mon.a (mon.0) 331 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-18T08:21:00.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:20:59 smithi070 bash[22844]: audit 2024-09-18T08:20:58.916774+0000 mon.a (mon.0) 331 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-18T08:21:00.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:59 smithi172 bash[24990]: audit 2024-09-18T08:20:58.916774+0000 mon.a (mon.0) 331 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-18T08:21:00.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:20:59 smithi172 bash[24990]: audit 2024-09-18T08:20:58.916774+0000 mon.a (mon.0) 331 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-18T08:21:00.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:59 smithi086 bash[24678]: audit 2024-09-18T08:20:58.916774+0000 mon.a (mon.0) 331 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-18T08:21:00.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:20:59 smithi086 bash[24678]: audit 2024-09-18T08:20:58.916774+0000 mon.a (mon.0) 331 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-18T08:21:01.217 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:00 smithi070 bash[22844]: audit 2024-09-18T08:20:59.887530+0000 mon.a (mon.0) 332 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-18T08:21:01.218 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:00 smithi070 bash[22844]: audit 2024-09-18T08:20:59.887530+0000 mon.a (mon.0) 332 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-18T08:21:01.218 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:00 smithi070 bash[22844]: cluster 2024-09-18T08:20:59.892118+0000 mon.a (mon.0) 333 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-18T08:21:01.218 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:00 smithi070 bash[22844]: cluster 2024-09-18T08:20:59.892118+0000 mon.a (mon.0) 333 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-18T08:21:01.218 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:00 smithi070 bash[22844]: audit 2024-09-18T08:20:59.892574+0000 mon.a (mon.0) 334 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi070", "root=default"]} : dispatch 2024-09-18T08:21:01.218 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:00 smithi070 bash[22844]: audit 2024-09-18T08:20:59.892574+0000 mon.a (mon.0) 334 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi070", "root=default"]} : dispatch 2024-09-18T08:21:01.218 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:00 smithi070 bash[22844]: audit 2024-09-18T08:20:59.893101+0000 mon.a (mon.0) 335 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:01.218 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:00 smithi070 bash[22844]: audit 2024-09-18T08:20:59.893101+0000 mon.a (mon.0) 335 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:01.218 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:00 smithi070 bash[22844]: cluster 2024-09-18T08:21:00.861939+0000 mgr.a (mgr.14152) 126 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:21:01.218 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:00 smithi070 bash[22844]: cluster 2024-09-18T08:21:00.861939+0000 mgr.a (mgr.14152) 126 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:21:01.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:00 smithi172 bash[24990]: audit 2024-09-18T08:20:59.887530+0000 mon.a (mon.0) 332 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-18T08:21:01.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:00 smithi172 bash[24990]: audit 2024-09-18T08:20:59.887530+0000 mon.a (mon.0) 332 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-18T08:21:01.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:00 smithi172 bash[24990]: cluster 2024-09-18T08:20:59.892118+0000 mon.a (mon.0) 333 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-18T08:21:01.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:00 smithi172 bash[24990]: cluster 2024-09-18T08:20:59.892118+0000 mon.a (mon.0) 333 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-18T08:21:01.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:00 smithi172 bash[24990]: audit 2024-09-18T08:20:59.892574+0000 mon.a (mon.0) 334 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi070", "root=default"]} : dispatch 2024-09-18T08:21:01.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:00 smithi172 bash[24990]: audit 2024-09-18T08:20:59.892574+0000 mon.a (mon.0) 334 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi070", "root=default"]} : dispatch 2024-09-18T08:21:01.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:00 smithi172 bash[24990]: audit 2024-09-18T08:20:59.893101+0000 mon.a (mon.0) 335 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:01.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:00 smithi172 bash[24990]: audit 2024-09-18T08:20:59.893101+0000 mon.a (mon.0) 335 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:01.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:00 smithi172 bash[24990]: cluster 2024-09-18T08:21:00.861939+0000 mgr.a (mgr.14152) 126 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:21:01.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:00 smithi172 bash[24990]: cluster 2024-09-18T08:21:00.861939+0000 mgr.a (mgr.14152) 126 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:21:01.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:00 smithi086 bash[24678]: audit 2024-09-18T08:20:59.887530+0000 mon.a (mon.0) 332 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-18T08:21:01.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:00 smithi086 bash[24678]: audit 2024-09-18T08:20:59.887530+0000 mon.a (mon.0) 332 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-18T08:21:01.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:00 smithi086 bash[24678]: cluster 2024-09-18T08:20:59.892118+0000 mon.a (mon.0) 333 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-18T08:21:01.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:00 smithi086 bash[24678]: cluster 2024-09-18T08:20:59.892118+0000 mon.a (mon.0) 333 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-18T08:21:01.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:00 smithi086 bash[24678]: audit 2024-09-18T08:20:59.892574+0000 mon.a (mon.0) 334 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi070", "root=default"]} : dispatch 2024-09-18T08:21:01.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:00 smithi086 bash[24678]: audit 2024-09-18T08:20:59.892574+0000 mon.a (mon.0) 334 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi070", "root=default"]} : dispatch 2024-09-18T08:21:01.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:00 smithi086 bash[24678]: audit 2024-09-18T08:20:59.893101+0000 mon.a (mon.0) 335 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:01.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:00 smithi086 bash[24678]: audit 2024-09-18T08:20:59.893101+0000 mon.a (mon.0) 335 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:01.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:00 smithi086 bash[24678]: cluster 2024-09-18T08:21:00.861939+0000 mgr.a (mgr.14152) 126 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:21:01.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:00 smithi086 bash[24678]: cluster 2024-09-18T08:21:00.861939+0000 mgr.a (mgr.14152) 126 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:21:01.483 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 18 08:21:01 smithi070 bash[32656]: debug 2024-09-18T08:21:01.213+0000 7f60ebc7e640 -1 osd.0 0 waiting for initial osdmap 2024-09-18T08:21:01.483 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 18 08:21:01 smithi070 bash[32656]: debug 2024-09-18T08:21:01.253+0000 7f60e3a9d640 -1 osd.0 7 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-18T08:21:02.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:01 smithi070 bash[22844]: audit 2024-09-18T08:21:00.889649+0000 mon.a (mon.0) 336 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi070", "root=default"]}]': finished 2024-09-18T08:21:02.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:01 smithi070 bash[22844]: audit 2024-09-18T08:21:00.889649+0000 mon.a (mon.0) 336 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi070", "root=default"]}]': finished 2024-09-18T08:21:02.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:01 smithi070 bash[22844]: cluster 2024-09-18T08:21:00.894748+0000 mon.a (mon.0) 337 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-18T08:21:02.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:01 smithi070 bash[22844]: cluster 2024-09-18T08:21:00.894748+0000 mon.a (mon.0) 337 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-18T08:21:02.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:01 smithi070 bash[22844]: audit 2024-09-18T08:21:00.896343+0000 mon.a (mon.0) 338 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:02.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:01 smithi070 bash[22844]: audit 2024-09-18T08:21:00.896343+0000 mon.a (mon.0) 338 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:02.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:01 smithi070 bash[22844]: audit 2024-09-18T08:21:00.905315+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:02.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:01 smithi070 bash[22844]: audit 2024-09-18T08:21:00.905315+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:02.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:01 smithi070 bash[22844]: audit 2024-09-18T08:21:01.223825+0000 mon.a (mon.0) 340 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' 2024-09-18T08:21:02.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:01 smithi070 bash[22844]: audit 2024-09-18T08:21:01.223825+0000 mon.a (mon.0) 340 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' 2024-09-18T08:21:02.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:01 smithi172 bash[24990]: audit 2024-09-18T08:21:00.889649+0000 mon.a (mon.0) 336 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi070", "root=default"]}]': finished 2024-09-18T08:21:02.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:01 smithi172 bash[24990]: audit 2024-09-18T08:21:00.889649+0000 mon.a (mon.0) 336 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi070", "root=default"]}]': finished 2024-09-18T08:21:02.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:01 smithi172 bash[24990]: cluster 2024-09-18T08:21:00.894748+0000 mon.a (mon.0) 337 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-18T08:21:02.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:01 smithi172 bash[24990]: cluster 2024-09-18T08:21:00.894748+0000 mon.a (mon.0) 337 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-18T08:21:02.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:01 smithi172 bash[24990]: audit 2024-09-18T08:21:00.896343+0000 mon.a (mon.0) 338 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:02.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:01 smithi172 bash[24990]: audit 2024-09-18T08:21:00.896343+0000 mon.a (mon.0) 338 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:02.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:01 smithi172 bash[24990]: audit 2024-09-18T08:21:00.905315+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:02.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:01 smithi172 bash[24990]: audit 2024-09-18T08:21:00.905315+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:02.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:01 smithi172 bash[24990]: audit 2024-09-18T08:21:01.223825+0000 mon.a (mon.0) 340 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' 2024-09-18T08:21:02.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:01 smithi172 bash[24990]: audit 2024-09-18T08:21:01.223825+0000 mon.a (mon.0) 340 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' 2024-09-18T08:21:02.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:01 smithi086 bash[24678]: audit 2024-09-18T08:21:00.889649+0000 mon.a (mon.0) 336 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi070", "root=default"]}]': finished 2024-09-18T08:21:02.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:01 smithi086 bash[24678]: audit 2024-09-18T08:21:00.889649+0000 mon.a (mon.0) 336 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi070", "root=default"]}]': finished 2024-09-18T08:21:02.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:01 smithi086 bash[24678]: cluster 2024-09-18T08:21:00.894748+0000 mon.a (mon.0) 337 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-18T08:21:02.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:01 smithi086 bash[24678]: cluster 2024-09-18T08:21:00.894748+0000 mon.a (mon.0) 337 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-18T08:21:02.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:01 smithi086 bash[24678]: audit 2024-09-18T08:21:00.896343+0000 mon.a (mon.0) 338 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:02.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:01 smithi086 bash[24678]: audit 2024-09-18T08:21:00.896343+0000 mon.a (mon.0) 338 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:02.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:01 smithi086 bash[24678]: audit 2024-09-18T08:21:00.905315+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:02.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:01 smithi086 bash[24678]: audit 2024-09-18T08:21:00.905315+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:02.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:01 smithi086 bash[24678]: audit 2024-09-18T08:21:01.223825+0000 mon.a (mon.0) 340 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' 2024-09-18T08:21:02.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:01 smithi086 bash[24678]: audit 2024-09-18T08:21:01.223825+0000 mon.a (mon.0) 340 : audit [INF] from='osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685]' entity='osd.0' 2024-09-18T08:21:03.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:02 smithi070 bash[22844]: cluster 2024-09-18T08:20:59.869902+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:21:03.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:02 smithi070 bash[22844]: cluster 2024-09-18T08:20:59.869902+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:21:03.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:02 smithi070 bash[22844]: cluster 2024-09-18T08:20:59.870008+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:21:03.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:02 smithi070 bash[22844]: cluster 2024-09-18T08:20:59.870008+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:21:03.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:02 smithi070 bash[22844]: audit 2024-09-18T08:21:01.902953+0000 mon.a (mon.0) 341 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:03.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:02 smithi070 bash[22844]: audit 2024-09-18T08:21:01.902953+0000 mon.a (mon.0) 341 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:03.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:02 smithi070 bash[22844]: cluster 2024-09-18T08:21:02.227756+0000 mon.a (mon.0) 342 : cluster [INF] osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685] boot 2024-09-18T08:21:03.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:02 smithi070 bash[22844]: cluster 2024-09-18T08:21:02.227756+0000 mon.a (mon.0) 342 : cluster [INF] osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685] boot 2024-09-18T08:21:03.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:02 smithi070 bash[22844]: cluster 2024-09-18T08:21:02.227841+0000 mon.a (mon.0) 343 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-18T08:21:03.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:02 smithi070 bash[22844]: cluster 2024-09-18T08:21:02.227841+0000 mon.a (mon.0) 343 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-18T08:21:03.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:02 smithi070 bash[22844]: audit 2024-09-18T08:21:02.228121+0000 mon.a (mon.0) 344 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:03.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:02 smithi070 bash[22844]: audit 2024-09-18T08:21:02.228121+0000 mon.a (mon.0) 344 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:03.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:02 smithi070 bash[22844]: cluster 2024-09-18T08:21:02.862388+0000 mgr.a (mgr.14152) 127 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:21:03.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:02 smithi070 bash[22844]: cluster 2024-09-18T08:21:02.862388+0000 mgr.a (mgr.14152) 127 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:21:03.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:02 smithi172 bash[24990]: cluster 2024-09-18T08:20:59.869902+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:21:03.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:02 smithi172 bash[24990]: cluster 2024-09-18T08:20:59.869902+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:21:03.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:02 smithi172 bash[24990]: cluster 2024-09-18T08:20:59.870008+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:21:03.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:02 smithi172 bash[24990]: cluster 2024-09-18T08:20:59.870008+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:21:03.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:02 smithi172 bash[24990]: audit 2024-09-18T08:21:01.902953+0000 mon.a (mon.0) 341 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:03.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:02 smithi172 bash[24990]: audit 2024-09-18T08:21:01.902953+0000 mon.a (mon.0) 341 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:03.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:02 smithi172 bash[24990]: cluster 2024-09-18T08:21:02.227756+0000 mon.a (mon.0) 342 : cluster [INF] osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685] boot 2024-09-18T08:21:03.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:02 smithi172 bash[24990]: cluster 2024-09-18T08:21:02.227756+0000 mon.a (mon.0) 342 : cluster [INF] osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685] boot 2024-09-18T08:21:03.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:02 smithi172 bash[24990]: cluster 2024-09-18T08:21:02.227841+0000 mon.a (mon.0) 343 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-18T08:21:03.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:02 smithi172 bash[24990]: cluster 2024-09-18T08:21:02.227841+0000 mon.a (mon.0) 343 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-18T08:21:03.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:02 smithi172 bash[24990]: audit 2024-09-18T08:21:02.228121+0000 mon.a (mon.0) 344 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:03.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:02 smithi172 bash[24990]: audit 2024-09-18T08:21:02.228121+0000 mon.a (mon.0) 344 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:03.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:02 smithi172 bash[24990]: cluster 2024-09-18T08:21:02.862388+0000 mgr.a (mgr.14152) 127 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:21:03.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:02 smithi172 bash[24990]: cluster 2024-09-18T08:21:02.862388+0000 mgr.a (mgr.14152) 127 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:21:03.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:02 smithi086 bash[24678]: cluster 2024-09-18T08:20:59.869902+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:21:03.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:02 smithi086 bash[24678]: cluster 2024-09-18T08:20:59.869902+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:21:03.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:02 smithi086 bash[24678]: cluster 2024-09-18T08:20:59.870008+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:21:03.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:02 smithi086 bash[24678]: cluster 2024-09-18T08:20:59.870008+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:21:03.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:02 smithi086 bash[24678]: audit 2024-09-18T08:21:01.902953+0000 mon.a (mon.0) 341 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:03.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:02 smithi086 bash[24678]: audit 2024-09-18T08:21:01.902953+0000 mon.a (mon.0) 341 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:03.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:02 smithi086 bash[24678]: cluster 2024-09-18T08:21:02.227756+0000 mon.a (mon.0) 342 : cluster [INF] osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685] boot 2024-09-18T08:21:03.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:02 smithi086 bash[24678]: cluster 2024-09-18T08:21:02.227756+0000 mon.a (mon.0) 342 : cluster [INF] osd.0 [v2:172.21.15.70:6802/1321566685,v1:172.21.15.70:6803/1321566685] boot 2024-09-18T08:21:03.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:02 smithi086 bash[24678]: cluster 2024-09-18T08:21:02.227841+0000 mon.a (mon.0) 343 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-18T08:21:03.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:02 smithi086 bash[24678]: cluster 2024-09-18T08:21:02.227841+0000 mon.a (mon.0) 343 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-18T08:21:03.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:02 smithi086 bash[24678]: audit 2024-09-18T08:21:02.228121+0000 mon.a (mon.0) 344 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:03.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:02 smithi086 bash[24678]: audit 2024-09-18T08:21:02.228121+0000 mon.a (mon.0) 344 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-18T08:21:03.343 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:02 smithi086 bash[24678]: cluster 2024-09-18T08:21:02.862388+0000 mgr.a (mgr.14152) 127 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:21:03.343 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:02 smithi086 bash[24678]: cluster 2024-09-18T08:21:02.862388+0000 mgr.a (mgr.14152) 127 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-18T08:21:03.874 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:21:05.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:04 smithi070 bash[22844]: cluster 2024-09-18T08:21:03.906425+0000 mon.a (mon.0) 345 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-18T08:21:05.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:04 smithi070 bash[22844]: cluster 2024-09-18T08:21:03.906425+0000 mon.a (mon.0) 345 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-18T08:21:05.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:04 smithi070 bash[22844]: cluster 2024-09-18T08:21:04.862852+0000 mgr.a (mgr.14152) 128 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:05.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:04 smithi070 bash[22844]: cluster 2024-09-18T08:21:04.862852+0000 mgr.a (mgr.14152) 128 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:05.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:04 smithi172 bash[24990]: cluster 2024-09-18T08:21:03.906425+0000 mon.a (mon.0) 345 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-18T08:21:05.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:04 smithi172 bash[24990]: cluster 2024-09-18T08:21:03.906425+0000 mon.a (mon.0) 345 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-18T08:21:05.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:04 smithi172 bash[24990]: cluster 2024-09-18T08:21:04.862852+0000 mgr.a (mgr.14152) 128 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:05.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:04 smithi172 bash[24990]: cluster 2024-09-18T08:21:04.862852+0000 mgr.a (mgr.14152) 128 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:05.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:04 smithi086 bash[24678]: cluster 2024-09-18T08:21:03.906425+0000 mon.a (mon.0) 345 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-18T08:21:05.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:04 smithi086 bash[24678]: cluster 2024-09-18T08:21:03.906425+0000 mon.a (mon.0) 345 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-18T08:21:05.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:04 smithi086 bash[24678]: cluster 2024-09-18T08:21:04.862852+0000 mgr.a (mgr.14152) 128 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:05.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:04 smithi086 bash[24678]: cluster 2024-09-18T08:21:04.862852+0000 mgr.a (mgr.14152) 128 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:07.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:06 smithi070 bash[22844]: cluster 2024-09-18T08:21:06.863430+0000 mgr.a (mgr.14152) 129 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:07.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:06 smithi070 bash[22844]: cluster 2024-09-18T08:21:06.863430+0000 mgr.a (mgr.14152) 129 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:07.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:06 smithi172 bash[24990]: cluster 2024-09-18T08:21:06.863430+0000 mgr.a (mgr.14152) 129 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:07.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:06 smithi172 bash[24990]: cluster 2024-09-18T08:21:06.863430+0000 mgr.a (mgr.14152) 129 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:07.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:06 smithi086 bash[24678]: cluster 2024-09-18T08:21:06.863430+0000 mgr.a (mgr.14152) 129 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:07.349 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:06 smithi086 bash[24678]: cluster 2024-09-18T08:21:06.863430+0000 mgr.a (mgr.14152) 129 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:09.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:08 smithi070 bash[22844]: cluster 2024-09-18T08:21:08.864008+0000 mgr.a (mgr.14152) 130 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:09.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:08 smithi070 bash[22844]: cluster 2024-09-18T08:21:08.864008+0000 mgr.a (mgr.14152) 130 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:09.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:08 smithi172 bash[24990]: cluster 2024-09-18T08:21:08.864008+0000 mgr.a (mgr.14152) 130 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:09.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:08 smithi172 bash[24990]: cluster 2024-09-18T08:21:08.864008+0000 mgr.a (mgr.14152) 130 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:09.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:08 smithi086 bash[24678]: cluster 2024-09-18T08:21:08.864008+0000 mgr.a (mgr.14152) 130 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:09.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:08 smithi086 bash[24678]: cluster 2024-09-18T08:21:08.864008+0000 mgr.a (mgr.14152) 130 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:10.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:09 smithi070 bash[22844]: cephadm 2024-09-18T08:21:08.934616+0000 mgr.a (mgr.14152) 131 : cephadm [INF] Detected new or changed devices on smithi070 2024-09-18T08:21:10.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:09 smithi070 bash[22844]: cephadm 2024-09-18T08:21:08.934616+0000 mgr.a (mgr.14152) 131 : cephadm [INF] Detected new or changed devices on smithi070 2024-09-18T08:21:10.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:09 smithi070 bash[22844]: audit 2024-09-18T08:21:08.941736+0000 mon.a (mon.0) 346 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:09 smithi070 bash[22844]: audit 2024-09-18T08:21:08.941736+0000 mon.a (mon.0) 346 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:09 smithi070 bash[22844]: audit 2024-09-18T08:21:08.946837+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:09 smithi070 bash[22844]: audit 2024-09-18T08:21:08.946837+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:09 smithi070 bash[22844]: audit 2024-09-18T08:21:08.948277+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-18T08:21:10.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:09 smithi070 bash[22844]: audit 2024-09-18T08:21:08.948277+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-18T08:21:10.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:09 smithi070 bash[22844]: cephadm 2024-09-18T08:21:08.949078+0000 mgr.a (mgr.14152) 132 : cephadm [INF] Adjusting osd_memory_target on smithi070 to 17265M 2024-09-18T08:21:10.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:09 smithi070 bash[22844]: cephadm 2024-09-18T08:21:08.949078+0000 mgr.a (mgr.14152) 132 : cephadm [INF] Adjusting osd_memory_target on smithi070 to 17265M 2024-09-18T08:21:10.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:09 smithi070 bash[22844]: audit 2024-09-18T08:21:08.953223+0000 mon.a (mon.0) 349 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:09 smithi070 bash[22844]: audit 2024-09-18T08:21:08.953223+0000 mon.a (mon.0) 349 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:09 smithi070 bash[22844]: audit 2024-09-18T08:21:08.956227+0000 mon.a (mon.0) 350 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:10.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:09 smithi070 bash[22844]: audit 2024-09-18T08:21:08.956227+0000 mon.a (mon.0) 350 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:10.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:09 smithi070 bash[22844]: audit 2024-09-18T08:21:08.957571+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:21:10.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:09 smithi070 bash[22844]: audit 2024-09-18T08:21:08.957571+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:21:10.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:09 smithi070 bash[22844]: audit 2024-09-18T08:21:08.965116+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.235 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:09 smithi070 bash[22844]: audit 2024-09-18T08:21:08.965116+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:09 smithi172 bash[24990]: cephadm 2024-09-18T08:21:08.934616+0000 mgr.a (mgr.14152) 131 : cephadm [INF] Detected new or changed devices on smithi070 2024-09-18T08:21:10.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:09 smithi172 bash[24990]: cephadm 2024-09-18T08:21:08.934616+0000 mgr.a (mgr.14152) 131 : cephadm [INF] Detected new or changed devices on smithi070 2024-09-18T08:21:10.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:09 smithi172 bash[24990]: audit 2024-09-18T08:21:08.941736+0000 mon.a (mon.0) 346 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:09 smithi172 bash[24990]: audit 2024-09-18T08:21:08.941736+0000 mon.a (mon.0) 346 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:09 smithi172 bash[24990]: audit 2024-09-18T08:21:08.946837+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:09 smithi172 bash[24990]: audit 2024-09-18T08:21:08.946837+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:09 smithi172 bash[24990]: audit 2024-09-18T08:21:08.948277+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-18T08:21:10.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:09 smithi172 bash[24990]: audit 2024-09-18T08:21:08.948277+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-18T08:21:10.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:09 smithi172 bash[24990]: cephadm 2024-09-18T08:21:08.949078+0000 mgr.a (mgr.14152) 132 : cephadm [INF] Adjusting osd_memory_target on smithi070 to 17265M 2024-09-18T08:21:10.236 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:09 smithi172 bash[24990]: cephadm 2024-09-18T08:21:08.949078+0000 mgr.a (mgr.14152) 132 : cephadm [INF] Adjusting osd_memory_target on smithi070 to 17265M 2024-09-18T08:21:10.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:09 smithi172 bash[24990]: audit 2024-09-18T08:21:08.953223+0000 mon.a (mon.0) 349 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:09 smithi172 bash[24990]: audit 2024-09-18T08:21:08.953223+0000 mon.a (mon.0) 349 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:09 smithi172 bash[24990]: audit 2024-09-18T08:21:08.956227+0000 mon.a (mon.0) 350 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:10.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:09 smithi172 bash[24990]: audit 2024-09-18T08:21:08.956227+0000 mon.a (mon.0) 350 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:10.237 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:09 smithi172 bash[24990]: audit 2024-09-18T08:21:08.957571+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:21:10.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:09 smithi172 bash[24990]: audit 2024-09-18T08:21:08.957571+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:21:10.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:09 smithi172 bash[24990]: audit 2024-09-18T08:21:08.965116+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.238 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:09 smithi172 bash[24990]: audit 2024-09-18T08:21:08.965116+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:09 smithi086 bash[24678]: cephadm 2024-09-18T08:21:08.934616+0000 mgr.a (mgr.14152) 131 : cephadm [INF] Detected new or changed devices on smithi070 2024-09-18T08:21:10.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:09 smithi086 bash[24678]: cephadm 2024-09-18T08:21:08.934616+0000 mgr.a (mgr.14152) 131 : cephadm [INF] Detected new or changed devices on smithi070 2024-09-18T08:21:10.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:09 smithi086 bash[24678]: audit 2024-09-18T08:21:08.941736+0000 mon.a (mon.0) 346 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:09 smithi086 bash[24678]: audit 2024-09-18T08:21:08.941736+0000 mon.a (mon.0) 346 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:09 smithi086 bash[24678]: audit 2024-09-18T08:21:08.946837+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:09 smithi086 bash[24678]: audit 2024-09-18T08:21:08.946837+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:09 smithi086 bash[24678]: audit 2024-09-18T08:21:08.948277+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-18T08:21:10.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:09 smithi086 bash[24678]: audit 2024-09-18T08:21:08.948277+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-18T08:21:10.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:09 smithi086 bash[24678]: cephadm 2024-09-18T08:21:08.949078+0000 mgr.a (mgr.14152) 132 : cephadm [INF] Adjusting osd_memory_target on smithi070 to 17265M 2024-09-18T08:21:10.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:09 smithi086 bash[24678]: cephadm 2024-09-18T08:21:08.949078+0000 mgr.a (mgr.14152) 132 : cephadm [INF] Adjusting osd_memory_target on smithi070 to 17265M 2024-09-18T08:21:10.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:09 smithi086 bash[24678]: audit 2024-09-18T08:21:08.953223+0000 mon.a (mon.0) 349 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:09 smithi086 bash[24678]: audit 2024-09-18T08:21:08.953223+0000 mon.a (mon.0) 349 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:09 smithi086 bash[24678]: audit 2024-09-18T08:21:08.956227+0000 mon.a (mon.0) 350 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:10.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:09 smithi086 bash[24678]: audit 2024-09-18T08:21:08.956227+0000 mon.a (mon.0) 350 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:10.343 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:09 smithi086 bash[24678]: audit 2024-09-18T08:21:08.957571+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:21:10.343 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:09 smithi086 bash[24678]: audit 2024-09-18T08:21:08.957571+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:21:10.343 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:09 smithi086 bash[24678]: audit 2024-09-18T08:21:08.965116+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:10.343 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:09 smithi086 bash[24678]: audit 2024-09-18T08:21:08.965116+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:11.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:10 smithi070 bash[22844]: cluster 2024-09-18T08:21:10.864423+0000 mgr.a (mgr.14152) 133 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:11.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:10 smithi070 bash[22844]: cluster 2024-09-18T08:21:10.864423+0000 mgr.a (mgr.14152) 133 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:11.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:10 smithi172 bash[24990]: cluster 2024-09-18T08:21:10.864423+0000 mgr.a (mgr.14152) 133 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:11.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:10 smithi172 bash[24990]: cluster 2024-09-18T08:21:10.864423+0000 mgr.a (mgr.14152) 133 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:11.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:10 smithi086 bash[24678]: cluster 2024-09-18T08:21:10.864423+0000 mgr.a (mgr.14152) 133 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:11.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:10 smithi086 bash[24678]: cluster 2024-09-18T08:21:10.864423+0000 mgr.a (mgr.14152) 133 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:11.352 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:21:11.403 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi070:vg_nvme/lv_3 2024-09-18T08:21:13.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:12 smithi070 bash[22844]: cluster 2024-09-18T08:21:12.864911+0000 mgr.a (mgr.14152) 134 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:13.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:12 smithi070 bash[22844]: cluster 2024-09-18T08:21:12.864911+0000 mgr.a (mgr.14152) 134 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:13.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:12 smithi172 bash[24990]: cluster 2024-09-18T08:21:12.864911+0000 mgr.a (mgr.14152) 134 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:13.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:12 smithi172 bash[24990]: cluster 2024-09-18T08:21:12.864911+0000 mgr.a (mgr.14152) 134 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:13.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:12 smithi086 bash[24678]: cluster 2024-09-18T08:21:12.864911+0000 mgr.a (mgr.14152) 134 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:13.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:12 smithi086 bash[24678]: cluster 2024-09-18T08:21:12.864911+0000 mgr.a (mgr.14152) 134 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:15.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:14 smithi070 bash[22844]: cluster 2024-09-18T08:21:14.865396+0000 mgr.a (mgr.14152) 135 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:15.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:14 smithi070 bash[22844]: cluster 2024-09-18T08:21:14.865396+0000 mgr.a (mgr.14152) 135 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:15.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:14 smithi172 bash[24990]: cluster 2024-09-18T08:21:14.865396+0000 mgr.a (mgr.14152) 135 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:15.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:14 smithi172 bash[24990]: cluster 2024-09-18T08:21:14.865396+0000 mgr.a (mgr.14152) 135 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:15.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:14 smithi086 bash[24678]: cluster 2024-09-18T08:21:14.865396+0000 mgr.a (mgr.14152) 135 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:15.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:14 smithi086 bash[24678]: cluster 2024-09-18T08:21:14.865396+0000 mgr.a (mgr.14152) 135 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:16.143 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:21:17.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:16 smithi070 bash[22844]: cluster 2024-09-18T08:21:16.865861+0000 mgr.a (mgr.14152) 136 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:17.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:16 smithi070 bash[22844]: cluster 2024-09-18T08:21:16.865861+0000 mgr.a (mgr.14152) 136 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:17.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:16 smithi172 bash[24990]: cluster 2024-09-18T08:21:16.865861+0000 mgr.a (mgr.14152) 136 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:17.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:16 smithi172 bash[24990]: cluster 2024-09-18T08:21:16.865861+0000 mgr.a (mgr.14152) 136 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:17.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:16 smithi086 bash[24678]: cluster 2024-09-18T08:21:16.865861+0000 mgr.a (mgr.14152) 136 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:17.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:16 smithi086 bash[24678]: cluster 2024-09-18T08:21:16.865861+0000 mgr.a (mgr.14152) 136 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:18.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:17 smithi070 bash[22844]: audit 2024-09-18T08:21:17.441424+0000 mgr.a (mgr.14152) 137 : audit [DBG] from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi070:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:21:18.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:17 smithi070 bash[22844]: audit 2024-09-18T08:21:17.441424+0000 mgr.a (mgr.14152) 137 : audit [DBG] from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi070:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:21:18.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:17 smithi070 bash[22844]: audit 2024-09-18T08:21:17.447558+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:21:18.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:17 smithi070 bash[22844]: audit 2024-09-18T08:21:17.447558+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:21:18.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:17 smithi070 bash[22844]: audit 2024-09-18T08:21:17.452593+0000 mon.a (mon.0) 354 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:21:18.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:17 smithi070 bash[22844]: audit 2024-09-18T08:21:17.452593+0000 mon.a (mon.0) 354 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:21:18.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:17 smithi070 bash[22844]: audit 2024-09-18T08:21:17.453556+0000 mon.a (mon.0) 355 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:18.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:17 smithi070 bash[22844]: audit 2024-09-18T08:21:17.453556+0000 mon.a (mon.0) 355 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:18.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:17 smithi172 bash[24990]: audit 2024-09-18T08:21:17.441424+0000 mgr.a (mgr.14152) 137 : audit [DBG] from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi070:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:21:18.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:17 smithi172 bash[24990]: audit 2024-09-18T08:21:17.441424+0000 mgr.a (mgr.14152) 137 : audit [DBG] from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi070:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:21:18.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:17 smithi172 bash[24990]: audit 2024-09-18T08:21:17.447558+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:21:18.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:17 smithi172 bash[24990]: audit 2024-09-18T08:21:17.447558+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:21:18.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:17 smithi172 bash[24990]: audit 2024-09-18T08:21:17.452593+0000 mon.a (mon.0) 354 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:21:18.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:17 smithi172 bash[24990]: audit 2024-09-18T08:21:17.452593+0000 mon.a (mon.0) 354 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:21:18.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:17 smithi172 bash[24990]: audit 2024-09-18T08:21:17.453556+0000 mon.a (mon.0) 355 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:18.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:17 smithi172 bash[24990]: audit 2024-09-18T08:21:17.453556+0000 mon.a (mon.0) 355 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:18.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:17 smithi086 bash[24678]: audit 2024-09-18T08:21:17.441424+0000 mgr.a (mgr.14152) 137 : audit [DBG] from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi070:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:21:18.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:17 smithi086 bash[24678]: audit 2024-09-18T08:21:17.441424+0000 mgr.a (mgr.14152) 137 : audit [DBG] from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi070:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:21:18.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:17 smithi086 bash[24678]: audit 2024-09-18T08:21:17.447558+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:21:18.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:17 smithi086 bash[24678]: audit 2024-09-18T08:21:17.447558+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:21:18.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:17 smithi086 bash[24678]: audit 2024-09-18T08:21:17.452593+0000 mon.a (mon.0) 354 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:21:18.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:17 smithi086 bash[24678]: audit 2024-09-18T08:21:17.452593+0000 mon.a (mon.0) 354 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:21:18.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:17 smithi086 bash[24678]: audit 2024-09-18T08:21:17.453556+0000 mon.a (mon.0) 355 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:18.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:17 smithi086 bash[24678]: audit 2024-09-18T08:21:17.453556+0000 mon.a (mon.0) 355 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:19.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:18 smithi172 bash[24990]: cluster 2024-09-18T08:21:18.866384+0000 mgr.a (mgr.14152) 138 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:19.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:18 smithi172 bash[24990]: cluster 2024-09-18T08:21:18.866384+0000 mgr.a (mgr.14152) 138 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:19.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:18 smithi070 bash[22844]: cluster 2024-09-18T08:21:18.866384+0000 mgr.a (mgr.14152) 138 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:19.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:18 smithi070 bash[22844]: cluster 2024-09-18T08:21:18.866384+0000 mgr.a (mgr.14152) 138 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:19.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:18 smithi086 bash[24678]: cluster 2024-09-18T08:21:18.866384+0000 mgr.a (mgr.14152) 138 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:19.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:18 smithi086 bash[24678]: cluster 2024-09-18T08:21:18.866384+0000 mgr.a (mgr.14152) 138 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:21.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:20 smithi070 bash[22844]: cluster 2024-09-18T08:21:20.866947+0000 mgr.a (mgr.14152) 139 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:21.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:20 smithi070 bash[22844]: cluster 2024-09-18T08:21:20.866947+0000 mgr.a (mgr.14152) 139 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:21.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:20 smithi172 bash[24990]: cluster 2024-09-18T08:21:20.866947+0000 mgr.a (mgr.14152) 139 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:21.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:20 smithi172 bash[24990]: cluster 2024-09-18T08:21:20.866947+0000 mgr.a (mgr.14152) 139 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:21.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:20 smithi086 bash[24678]: cluster 2024-09-18T08:21:20.866947+0000 mgr.a (mgr.14152) 139 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:21.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:20 smithi086 bash[24678]: cluster 2024-09-18T08:21:20.866947+0000 mgr.a (mgr.14152) 139 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:23.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:22 smithi070 bash[22844]: cluster 2024-09-18T08:21:22.867455+0000 mgr.a (mgr.14152) 140 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:23.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:22 smithi070 bash[22844]: cluster 2024-09-18T08:21:22.867455+0000 mgr.a (mgr.14152) 140 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:23.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:22 smithi172 bash[24990]: cluster 2024-09-18T08:21:22.867455+0000 mgr.a (mgr.14152) 140 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:23.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:22 smithi172 bash[24990]: cluster 2024-09-18T08:21:22.867455+0000 mgr.a (mgr.14152) 140 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:23.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:22 smithi086 bash[24678]: cluster 2024-09-18T08:21:22.867455+0000 mgr.a (mgr.14152) 140 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:23.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:22 smithi086 bash[24678]: cluster 2024-09-18T08:21:22.867455+0000 mgr.a (mgr.14152) 140 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:25.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:24 smithi070 bash[22844]: cluster 2024-09-18T08:21:24.867783+0000 mgr.a (mgr.14152) 141 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:25.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:24 smithi070 bash[22844]: cluster 2024-09-18T08:21:24.867783+0000 mgr.a (mgr.14152) 141 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:25.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:24 smithi172 bash[24990]: cluster 2024-09-18T08:21:24.867783+0000 mgr.a (mgr.14152) 141 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:25.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:24 smithi172 bash[24990]: cluster 2024-09-18T08:21:24.867783+0000 mgr.a (mgr.14152) 141 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:25.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:24 smithi086 bash[24678]: cluster 2024-09-18T08:21:24.867783+0000 mgr.a (mgr.14152) 141 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:25.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:24 smithi086 bash[24678]: cluster 2024-09-18T08:21:24.867783+0000 mgr.a (mgr.14152) 141 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:26.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:25 smithi070 bash[22844]: audit 2024-09-18T08:21:25.536249+0000 mon.a (mon.0) 356 : audit [INF] from='client.? 172.21.15.70:0/3517669975' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "1fe06e9e-6c21-406e-b6e4-16a43f6449a5"} : dispatch 2024-09-18T08:21:26.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:25 smithi070 bash[22844]: audit 2024-09-18T08:21:25.536249+0000 mon.a (mon.0) 356 : audit [INF] from='client.? 172.21.15.70:0/3517669975' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "1fe06e9e-6c21-406e-b6e4-16a43f6449a5"} : dispatch 2024-09-18T08:21:26.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:25 smithi070 bash[22844]: audit 2024-09-18T08:21:25.538987+0000 mon.a (mon.0) 357 : audit [INF] from='client.? 172.21.15.70:0/3517669975' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1fe06e9e-6c21-406e-b6e4-16a43f6449a5"}]': finished 2024-09-18T08:21:26.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:25 smithi070 bash[22844]: audit 2024-09-18T08:21:25.538987+0000 mon.a (mon.0) 357 : audit [INF] from='client.? 172.21.15.70:0/3517669975' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1fe06e9e-6c21-406e-b6e4-16a43f6449a5"}]': finished 2024-09-18T08:21:26.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:25 smithi070 bash[22844]: cluster 2024-09-18T08:21:25.543574+0000 mon.a (mon.0) 358 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-18T08:21:26.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:25 smithi070 bash[22844]: cluster 2024-09-18T08:21:25.543574+0000 mon.a (mon.0) 358 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-18T08:21:26.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:25 smithi070 bash[22844]: audit 2024-09-18T08:21:25.543865+0000 mon.a (mon.0) 359 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:26.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:25 smithi070 bash[22844]: audit 2024-09-18T08:21:25.543865+0000 mon.a (mon.0) 359 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:26.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:25 smithi172 bash[24990]: audit 2024-09-18T08:21:25.536249+0000 mon.a (mon.0) 356 : audit [INF] from='client.? 172.21.15.70:0/3517669975' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "1fe06e9e-6c21-406e-b6e4-16a43f6449a5"} : dispatch 2024-09-18T08:21:26.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:25 smithi172 bash[24990]: audit 2024-09-18T08:21:25.536249+0000 mon.a (mon.0) 356 : audit [INF] from='client.? 172.21.15.70:0/3517669975' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "1fe06e9e-6c21-406e-b6e4-16a43f6449a5"} : dispatch 2024-09-18T08:21:26.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:25 smithi172 bash[24990]: audit 2024-09-18T08:21:25.538987+0000 mon.a (mon.0) 357 : audit [INF] from='client.? 172.21.15.70:0/3517669975' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1fe06e9e-6c21-406e-b6e4-16a43f6449a5"}]': finished 2024-09-18T08:21:26.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:25 smithi172 bash[24990]: audit 2024-09-18T08:21:25.538987+0000 mon.a (mon.0) 357 : audit [INF] from='client.? 172.21.15.70:0/3517669975' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1fe06e9e-6c21-406e-b6e4-16a43f6449a5"}]': finished 2024-09-18T08:21:26.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:25 smithi172 bash[24990]: cluster 2024-09-18T08:21:25.543574+0000 mon.a (mon.0) 358 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-18T08:21:26.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:25 smithi172 bash[24990]: cluster 2024-09-18T08:21:25.543574+0000 mon.a (mon.0) 358 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-18T08:21:26.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:25 smithi172 bash[24990]: audit 2024-09-18T08:21:25.543865+0000 mon.a (mon.0) 359 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:26.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:25 smithi172 bash[24990]: audit 2024-09-18T08:21:25.543865+0000 mon.a (mon.0) 359 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:26.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:25 smithi086 bash[24678]: audit 2024-09-18T08:21:25.536249+0000 mon.a (mon.0) 356 : audit [INF] from='client.? 172.21.15.70:0/3517669975' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "1fe06e9e-6c21-406e-b6e4-16a43f6449a5"} : dispatch 2024-09-18T08:21:26.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:25 smithi086 bash[24678]: audit 2024-09-18T08:21:25.536249+0000 mon.a (mon.0) 356 : audit [INF] from='client.? 172.21.15.70:0/3517669975' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "1fe06e9e-6c21-406e-b6e4-16a43f6449a5"} : dispatch 2024-09-18T08:21:26.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:25 smithi086 bash[24678]: audit 2024-09-18T08:21:25.538987+0000 mon.a (mon.0) 357 : audit [INF] from='client.? 172.21.15.70:0/3517669975' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1fe06e9e-6c21-406e-b6e4-16a43f6449a5"}]': finished 2024-09-18T08:21:26.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:25 smithi086 bash[24678]: audit 2024-09-18T08:21:25.538987+0000 mon.a (mon.0) 357 : audit [INF] from='client.? 172.21.15.70:0/3517669975' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1fe06e9e-6c21-406e-b6e4-16a43f6449a5"}]': finished 2024-09-18T08:21:26.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:25 smithi086 bash[24678]: cluster 2024-09-18T08:21:25.543574+0000 mon.a (mon.0) 358 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-18T08:21:26.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:25 smithi086 bash[24678]: cluster 2024-09-18T08:21:25.543574+0000 mon.a (mon.0) 358 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-18T08:21:26.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:25 smithi086 bash[24678]: audit 2024-09-18T08:21:25.543865+0000 mon.a (mon.0) 359 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:26.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:25 smithi086 bash[24678]: audit 2024-09-18T08:21:25.543865+0000 mon.a (mon.0) 359 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:27.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:26 smithi070 bash[22844]: audit 2024-09-18T08:21:26.181640+0000 mon.a (mon.0) 360 : audit [DBG] from='client.? 172.21.15.70:0/348244216' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:21:27.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:26 smithi070 bash[22844]: audit 2024-09-18T08:21:26.181640+0000 mon.a (mon.0) 360 : audit [DBG] from='client.? 172.21.15.70:0/348244216' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:21:27.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:26 smithi070 bash[22844]: cluster 2024-09-18T08:21:26.868126+0000 mgr.a (mgr.14152) 142 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:27.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:26 smithi070 bash[22844]: cluster 2024-09-18T08:21:26.868126+0000 mgr.a (mgr.14152) 142 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:27.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:26 smithi172 bash[24990]: audit 2024-09-18T08:21:26.181640+0000 mon.a (mon.0) 360 : audit [DBG] from='client.? 172.21.15.70:0/348244216' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:21:27.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:26 smithi172 bash[24990]: audit 2024-09-18T08:21:26.181640+0000 mon.a (mon.0) 360 : audit [DBG] from='client.? 172.21.15.70:0/348244216' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:21:27.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:26 smithi172 bash[24990]: cluster 2024-09-18T08:21:26.868126+0000 mgr.a (mgr.14152) 142 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:27.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:26 smithi172 bash[24990]: cluster 2024-09-18T08:21:26.868126+0000 mgr.a (mgr.14152) 142 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:27.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:26 smithi086 bash[24678]: audit 2024-09-18T08:21:26.181640+0000 mon.a (mon.0) 360 : audit [DBG] from='client.? 172.21.15.70:0/348244216' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:21:27.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:26 smithi086 bash[24678]: audit 2024-09-18T08:21:26.181640+0000 mon.a (mon.0) 360 : audit [DBG] from='client.? 172.21.15.70:0/348244216' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:21:27.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:26 smithi086 bash[24678]: cluster 2024-09-18T08:21:26.868126+0000 mgr.a (mgr.14152) 142 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:27.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:26 smithi086 bash[24678]: cluster 2024-09-18T08:21:26.868126+0000 mgr.a (mgr.14152) 142 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:29.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:28 smithi070 bash[22844]: cluster 2024-09-18T08:21:28.868597+0000 mgr.a (mgr.14152) 143 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:29.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:28 smithi070 bash[22844]: cluster 2024-09-18T08:21:28.868597+0000 mgr.a (mgr.14152) 143 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:29.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:28 smithi172 bash[24990]: cluster 2024-09-18T08:21:28.868597+0000 mgr.a (mgr.14152) 143 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:29.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:28 smithi172 bash[24990]: cluster 2024-09-18T08:21:28.868597+0000 mgr.a (mgr.14152) 143 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:29.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:28 smithi086 bash[24678]: cluster 2024-09-18T08:21:28.868597+0000 mgr.a (mgr.14152) 143 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:29.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:28 smithi086 bash[24678]: cluster 2024-09-18T08:21:28.868597+0000 mgr.a (mgr.14152) 143 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:31.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:30 smithi070 bash[22844]: cluster 2024-09-18T08:21:30.869025+0000 mgr.a (mgr.14152) 144 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:31.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:30 smithi070 bash[22844]: cluster 2024-09-18T08:21:30.869025+0000 mgr.a (mgr.14152) 144 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:31.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:30 smithi172 bash[24990]: cluster 2024-09-18T08:21:30.869025+0000 mgr.a (mgr.14152) 144 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:31.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:30 smithi172 bash[24990]: cluster 2024-09-18T08:21:30.869025+0000 mgr.a (mgr.14152) 144 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:31.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:30 smithi086 bash[24678]: cluster 2024-09-18T08:21:30.869025+0000 mgr.a (mgr.14152) 144 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:31.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:30 smithi086 bash[24678]: cluster 2024-09-18T08:21:30.869025+0000 mgr.a (mgr.14152) 144 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:33.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:32 smithi070 bash[22844]: cluster 2024-09-18T08:21:32.869478+0000 mgr.a (mgr.14152) 145 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:33.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:32 smithi070 bash[22844]: cluster 2024-09-18T08:21:32.869478+0000 mgr.a (mgr.14152) 145 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:33.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:32 smithi172 bash[24990]: cluster 2024-09-18T08:21:32.869478+0000 mgr.a (mgr.14152) 145 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:33.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:32 smithi172 bash[24990]: cluster 2024-09-18T08:21:32.869478+0000 mgr.a (mgr.14152) 145 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:33.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:32 smithi086 bash[24678]: cluster 2024-09-18T08:21:32.869478+0000 mgr.a (mgr.14152) 145 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:33.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:32 smithi086 bash[24678]: cluster 2024-09-18T08:21:32.869478+0000 mgr.a (mgr.14152) 145 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:35.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:34 smithi070 bash[22844]: cluster 2024-09-18T08:21:34.869944+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-18T08:21:35.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:34 smithi070 bash[22844]: cluster 2024-09-18T08:21:34.869944+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-18T08:21:35.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:34 smithi172 bash[24990]: cluster 2024-09-18T08:21:34.869944+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-18T08:21:35.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:34 smithi172 bash[24990]: cluster 2024-09-18T08:21:34.869944+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-18T08:21:35.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:34 smithi086 bash[24678]: cluster 2024-09-18T08:21:34.869944+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-18T08:21:35.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:34 smithi086 bash[24678]: cluster 2024-09-18T08:21:34.869944+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-18T08:21:37.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:36 smithi070 bash[22844]: cluster 2024-09-18T08:21:36.870409+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-18T08:21:37.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:36 smithi070 bash[22844]: cluster 2024-09-18T08:21:36.870409+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-18T08:21:37.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:36 smithi172 bash[24990]: cluster 2024-09-18T08:21:36.870409+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-18T08:21:37.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:36 smithi172 bash[24990]: cluster 2024-09-18T08:21:36.870409+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-18T08:21:37.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:36 smithi086 bash[24678]: cluster 2024-09-18T08:21:36.870409+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-18T08:21:37.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:36 smithi086 bash[24678]: cluster 2024-09-18T08:21:36.870409+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-18T08:21:38.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:38 smithi086 bash[24678]: audit 2024-09-18T08:21:38.527715+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-18T08:21:38.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:38 smithi086 bash[24678]: audit 2024-09-18T08:21:38.527715+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-18T08:21:38.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:38 smithi086 bash[24678]: audit 2024-09-18T08:21:38.529359+0000 mon.a (mon.0) 362 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:38.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:38 smithi086 bash[24678]: audit 2024-09-18T08:21:38.529359+0000 mon.a (mon.0) 362 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:38.982 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:38 smithi070 bash[22844]: audit 2024-09-18T08:21:38.527715+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-18T08:21:38.982 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:38 smithi070 bash[22844]: audit 2024-09-18T08:21:38.527715+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-18T08:21:38.982 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:38 smithi070 bash[22844]: audit 2024-09-18T08:21:38.529359+0000 mon.a (mon.0) 362 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:38.982 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:38 smithi070 bash[22844]: audit 2024-09-18T08:21:38.529359+0000 mon.a (mon.0) 362 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:38.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:38 smithi172 bash[24990]: audit 2024-09-18T08:21:38.527715+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-18T08:21:38.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:38 smithi172 bash[24990]: audit 2024-09-18T08:21:38.527715+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-18T08:21:38.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:38 smithi172 bash[24990]: audit 2024-09-18T08:21:38.529359+0000 mon.a (mon.0) 362 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:38.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:38 smithi172 bash[24990]: audit 2024-09-18T08:21:38.529359+0000 mon.a (mon.0) 362 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:39.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:39 smithi086 bash[24678]: cephadm 2024-09-18T08:21:38.530823+0000 mgr.a (mgr.14152) 148 : cephadm [INF] Deploying daemon osd.1 on smithi070 2024-09-18T08:21:39.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:39 smithi086 bash[24678]: cephadm 2024-09-18T08:21:38.530823+0000 mgr.a (mgr.14152) 148 : cephadm [INF] Deploying daemon osd.1 on smithi070 2024-09-18T08:21:39.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:39 smithi086 bash[24678]: cluster 2024-09-18T08:21:38.870949+0000 mgr.a (mgr.14152) 149 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:39.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:39 smithi086 bash[24678]: cluster 2024-09-18T08:21:38.870949+0000 mgr.a (mgr.14152) 149 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:39.957 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:39 smithi070 bash[22844]: cephadm 2024-09-18T08:21:38.530823+0000 mgr.a (mgr.14152) 148 : cephadm [INF] Deploying daemon osd.1 on smithi070 2024-09-18T08:21:39.957 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:39 smithi070 bash[22844]: cephadm 2024-09-18T08:21:38.530823+0000 mgr.a (mgr.14152) 148 : cephadm [INF] Deploying daemon osd.1 on smithi070 2024-09-18T08:21:39.957 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:39 smithi070 bash[22844]: cluster 2024-09-18T08:21:38.870949+0000 mgr.a (mgr.14152) 149 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:39.958 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:39 smithi070 bash[22844]: cluster 2024-09-18T08:21:38.870949+0000 mgr.a (mgr.14152) 149 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:39.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:39 smithi172 bash[24990]: cephadm 2024-09-18T08:21:38.530823+0000 mgr.a (mgr.14152) 148 : cephadm [INF] Deploying daemon osd.1 on smithi070 2024-09-18T08:21:39.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:39 smithi172 bash[24990]: cephadm 2024-09-18T08:21:38.530823+0000 mgr.a (mgr.14152) 148 : cephadm [INF] Deploying daemon osd.1 on smithi070 2024-09-18T08:21:39.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:39 smithi172 bash[24990]: cluster 2024-09-18T08:21:38.870949+0000 mgr.a (mgr.14152) 149 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:39.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:39 smithi172 bash[24990]: cluster 2024-09-18T08:21:38.870949+0000 mgr.a (mgr.14152) 149 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:41.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:40 smithi070 bash[22844]: cluster 2024-09-18T08:21:40.871551+0000 mgr.a (mgr.14152) 150 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:41.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:40 smithi070 bash[22844]: cluster 2024-09-18T08:21:40.871551+0000 mgr.a (mgr.14152) 150 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:41.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:40 smithi172 bash[24990]: cluster 2024-09-18T08:21:40.871551+0000 mgr.a (mgr.14152) 150 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:41.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:40 smithi172 bash[24990]: cluster 2024-09-18T08:21:40.871551+0000 mgr.a (mgr.14152) 150 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:41.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:40 smithi086 bash[24678]: cluster 2024-09-18T08:21:40.871551+0000 mgr.a (mgr.14152) 150 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:41.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:40 smithi086 bash[24678]: cluster 2024-09-18T08:21:40.871551+0000 mgr.a (mgr.14152) 150 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:42.834 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:42 smithi070 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:21:42.835 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:21:42 smithi070 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:21:42.835 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 18 08:21:42 smithi070 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:21:43.176 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 18 08:21:42 smithi070 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:21:43.176 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:21:42 smithi070 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:21:43.176 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:42 smithi070 bash[22844]: cluster 2024-09-18T08:21:42.872007+0000 mgr.a (mgr.14152) 151 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:43.177 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:42 smithi070 bash[22844]: cluster 2024-09-18T08:21:42.872007+0000 mgr.a (mgr.14152) 151 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:43.177 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:42 smithi070 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:21:43.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:42 smithi172 bash[24990]: cluster 2024-09-18T08:21:42.872007+0000 mgr.a (mgr.14152) 151 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:43.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:42 smithi172 bash[24990]: cluster 2024-09-18T08:21:42.872007+0000 mgr.a (mgr.14152) 151 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:43.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:42 smithi086 bash[24678]: cluster 2024-09-18T08:21:42.872007+0000 mgr.a (mgr.14152) 151 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:43.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:42 smithi086 bash[24678]: cluster 2024-09-18T08:21:42.872007+0000 mgr.a (mgr.14152) 151 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:44.189 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:43 smithi070 bash[22844]: audit 2024-09-18T08:21:43.104388+0000 mon.a (mon.0) 363 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:21:44.190 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:43 smithi070 bash[22844]: audit 2024-09-18T08:21:43.104388+0000 mon.a (mon.0) 363 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:21:44.190 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:43 smithi070 bash[22844]: audit 2024-09-18T08:21:43.108048+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:44.190 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:43 smithi070 bash[22844]: audit 2024-09-18T08:21:43.108048+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:44.190 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:43 smithi070 bash[22844]: audit 2024-09-18T08:21:43.112971+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:44.190 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:43 smithi070 bash[22844]: audit 2024-09-18T08:21:43.112971+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:44.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:43 smithi172 bash[24990]: audit 2024-09-18T08:21:43.104388+0000 mon.a (mon.0) 363 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:21:44.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:43 smithi172 bash[24990]: audit 2024-09-18T08:21:43.104388+0000 mon.a (mon.0) 363 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:21:44.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:43 smithi172 bash[24990]: audit 2024-09-18T08:21:43.108048+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:44.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:43 smithi172 bash[24990]: audit 2024-09-18T08:21:43.108048+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:44.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:43 smithi172 bash[24990]: audit 2024-09-18T08:21:43.112971+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:44.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:43 smithi172 bash[24990]: audit 2024-09-18T08:21:43.112971+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:44.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:43 smithi086 bash[24678]: audit 2024-09-18T08:21:43.104388+0000 mon.a (mon.0) 363 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:21:44.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:43 smithi086 bash[24678]: audit 2024-09-18T08:21:43.104388+0000 mon.a (mon.0) 363 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:21:44.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:43 smithi086 bash[24678]: audit 2024-09-18T08:21:43.108048+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:44.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:43 smithi086 bash[24678]: audit 2024-09-18T08:21:43.108048+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:44.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:43 smithi086 bash[24678]: audit 2024-09-18T08:21:43.112971+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:44.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:43 smithi086 bash[24678]: audit 2024-09-18T08:21:43.112971+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:45.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:44 smithi070 bash[22844]: cluster 2024-09-18T08:21:44.872328+0000 mgr.a (mgr.14152) 152 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:45.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:44 smithi070 bash[22844]: cluster 2024-09-18T08:21:44.872328+0000 mgr.a (mgr.14152) 152 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:45.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:44 smithi172 bash[24990]: cluster 2024-09-18T08:21:44.872328+0000 mgr.a (mgr.14152) 152 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:45.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:44 smithi172 bash[24990]: cluster 2024-09-18T08:21:44.872328+0000 mgr.a (mgr.14152) 152 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:45.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:44 smithi086 bash[24678]: cluster 2024-09-18T08:21:44.872328+0000 mgr.a (mgr.14152) 152 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:45.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:44 smithi086 bash[24678]: cluster 2024-09-18T08:21:44.872328+0000 mgr.a (mgr.14152) 152 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:47.045 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:46 smithi070 bash[22844]: cluster 2024-09-18T08:21:46.872767+0000 mgr.a (mgr.14152) 153 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:47.046 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:46 smithi070 bash[22844]: cluster 2024-09-18T08:21:46.872767+0000 mgr.a (mgr.14152) 153 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:47.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:46 smithi172 bash[24990]: cluster 2024-09-18T08:21:46.872767+0000 mgr.a (mgr.14152) 153 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:47.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:46 smithi172 bash[24990]: cluster 2024-09-18T08:21:46.872767+0000 mgr.a (mgr.14152) 153 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:47.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:46 smithi086 bash[24678]: cluster 2024-09-18T08:21:46.872767+0000 mgr.a (mgr.14152) 153 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:47.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:46 smithi086 bash[24678]: cluster 2024-09-18T08:21:46.872767+0000 mgr.a (mgr.14152) 153 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:49.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:48 smithi070 bash[22844]: cluster 2024-09-18T08:21:48.873113+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-18T08:21:49.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:48 smithi070 bash[22844]: cluster 2024-09-18T08:21:48.873113+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-18T08:21:49.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:48 smithi172 bash[24990]: cluster 2024-09-18T08:21:48.873113+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-18T08:21:49.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:48 smithi172 bash[24990]: cluster 2024-09-18T08:21:48.873113+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-18T08:21:49.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:48 smithi086 bash[24678]: cluster 2024-09-18T08:21:48.873113+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-18T08:21:49.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:48 smithi086 bash[24678]: cluster 2024-09-18T08:21:48.873113+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-18T08:21:50.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:50 smithi086 bash[24678]: audit 2024-09-18T08:21:49.039097+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:50.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:50 smithi086 bash[24678]: audit 2024-09-18T08:21:49.039097+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:50.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:50 smithi086 bash[24678]: audit 2024-09-18T08:21:49.047467+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:50.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:50 smithi086 bash[24678]: audit 2024-09-18T08:21:49.047467+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:50.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:50 smithi086 bash[24678]: audit 2024-09-18T08:21:49.049338+0000 mon.a (mon.0) 368 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:50.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:50 smithi086 bash[24678]: audit 2024-09-18T08:21:49.049338+0000 mon.a (mon.0) 368 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:50.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:50 smithi086 bash[24678]: audit 2024-09-18T08:21:49.051096+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:21:50.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:50 smithi086 bash[24678]: audit 2024-09-18T08:21:49.051096+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:21:50.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:50 smithi086 bash[24678]: audit 2024-09-18T08:21:49.060460+0000 mon.a (mon.0) 370 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:50.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:50 smithi086 bash[24678]: audit 2024-09-18T08:21:49.060460+0000 mon.a (mon.0) 370 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:50.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:50 smithi070 bash[22844]: audit 2024-09-18T08:21:49.039097+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:50.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:50 smithi070 bash[22844]: audit 2024-09-18T08:21:49.039097+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:50.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:50 smithi070 bash[22844]: audit 2024-09-18T08:21:49.047467+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:50.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:50 smithi070 bash[22844]: audit 2024-09-18T08:21:49.047467+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:50.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:50 smithi070 bash[22844]: audit 2024-09-18T08:21:49.049338+0000 mon.a (mon.0) 368 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:50.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:50 smithi070 bash[22844]: audit 2024-09-18T08:21:49.049338+0000 mon.a (mon.0) 368 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:50.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:50 smithi070 bash[22844]: audit 2024-09-18T08:21:49.051096+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:21:50.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:50 smithi070 bash[22844]: audit 2024-09-18T08:21:49.051096+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:21:50.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:50 smithi070 bash[22844]: audit 2024-09-18T08:21:49.060460+0000 mon.a (mon.0) 370 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:50.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:50 smithi070 bash[22844]: audit 2024-09-18T08:21:49.060460+0000 mon.a (mon.0) 370 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:50.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:50 smithi172 bash[24990]: audit 2024-09-18T08:21:49.039097+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:50.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:50 smithi172 bash[24990]: audit 2024-09-18T08:21:49.039097+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:50.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:50 smithi172 bash[24990]: audit 2024-09-18T08:21:49.047467+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:50.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:50 smithi172 bash[24990]: audit 2024-09-18T08:21:49.047467+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:50.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:50 smithi172 bash[24990]: audit 2024-09-18T08:21:49.049338+0000 mon.a (mon.0) 368 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:50.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:50 smithi172 bash[24990]: audit 2024-09-18T08:21:49.049338+0000 mon.a (mon.0) 368 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:21:50.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:50 smithi172 bash[24990]: audit 2024-09-18T08:21:49.051096+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:21:50.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:50 smithi172 bash[24990]: audit 2024-09-18T08:21:49.051096+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:21:50.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:50 smithi172 bash[24990]: audit 2024-09-18T08:21:49.060460+0000 mon.a (mon.0) 370 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:50.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:50 smithi172 bash[24990]: audit 2024-09-18T08:21:49.060460+0000 mon.a (mon.0) 370 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:51.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:51 smithi070 bash[22844]: cluster 2024-09-18T08:21:50.873502+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-18T08:21:51.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:51 smithi070 bash[22844]: cluster 2024-09-18T08:21:50.873502+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-18T08:21:51.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:51 smithi086 bash[24678]: cluster 2024-09-18T08:21:50.873502+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-18T08:21:51.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:51 smithi086 bash[24678]: cluster 2024-09-18T08:21:50.873502+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-18T08:21:51.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:51 smithi172 bash[24990]: cluster 2024-09-18T08:21:50.873502+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-18T08:21:51.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:51 smithi172 bash[24990]: cluster 2024-09-18T08:21:50.873502+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-18T08:21:53.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:52 smithi070 bash[22844]: cluster 2024-09-18T08:21:52.873837+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-18T08:21:53.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:52 smithi070 bash[22844]: cluster 2024-09-18T08:21:52.873837+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-18T08:21:53.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:52 smithi172 bash[24990]: cluster 2024-09-18T08:21:52.873837+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-18T08:21:53.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:52 smithi172 bash[24990]: cluster 2024-09-18T08:21:52.873837+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-18T08:21:53.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:52 smithi086 bash[24678]: cluster 2024-09-18T08:21:52.873837+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-18T08:21:53.412 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:52 smithi086 bash[24678]: cluster 2024-09-18T08:21:52.873837+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-18T08:21:53.982 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:53 smithi070 bash[22844]: audit 2024-09-18T08:21:53.818091+0000 mon.a (mon.0) 371 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-18T08:21:53.982 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:53 smithi070 bash[22844]: audit 2024-09-18T08:21:53.818091+0000 mon.a (mon.0) 371 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-18T08:21:54.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:53 smithi172 bash[24990]: audit 2024-09-18T08:21:53.818091+0000 mon.a (mon.0) 371 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-18T08:21:54.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:53 smithi172 bash[24990]: audit 2024-09-18T08:21:53.818091+0000 mon.a (mon.0) 371 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-18T08:21:54.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:53 smithi086 bash[24678]: audit 2024-09-18T08:21:53.818091+0000 mon.a (mon.0) 371 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-18T08:21:54.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:53 smithi086 bash[24678]: audit 2024-09-18T08:21:53.818091+0000 mon.a (mon.0) 371 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-18T08:21:54.422 INFO:teuthology.orchestra.run.smithi070.stdout:Created osd(s) 1 on host 'smithi070' 2024-09-18T08:21:54.969 DEBUG:teuthology.orchestra.run.smithi070:osd.1> sudo journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@osd.1.service 2024-09-18T08:21:54.972 INFO:tasks.cephadm:Deploying osd.2 on smithi086 with /dev/vg_nvme/lv_4... 2024-09-18T08:21:54.972 DEBUG:teuthology.orchestra.run.smithi086:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-18T08:21:55.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:54 smithi070 bash[22844]: audit 2024-09-18T08:21:53.941065+0000 mon.a (mon.0) 372 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-18T08:21:55.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:54 smithi070 bash[22844]: audit 2024-09-18T08:21:53.941065+0000 mon.a (mon.0) 372 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-18T08:21:55.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:54 smithi070 bash[22844]: cluster 2024-09-18T08:21:53.945957+0000 mon.a (mon.0) 373 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-18T08:21:55.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:54 smithi070 bash[22844]: cluster 2024-09-18T08:21:53.945957+0000 mon.a (mon.0) 373 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-18T08:21:55.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:54 smithi070 bash[22844]: audit 2024-09-18T08:21:53.946375+0000 mon.a (mon.0) 374 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi070", "root=default"]} : dispatch 2024-09-18T08:21:55.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:54 smithi070 bash[22844]: audit 2024-09-18T08:21:53.946375+0000 mon.a (mon.0) 374 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi070", "root=default"]} : dispatch 2024-09-18T08:21:55.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:54 smithi070 bash[22844]: audit 2024-09-18T08:21:53.946856+0000 mon.a (mon.0) 375 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:55.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:54 smithi070 bash[22844]: audit 2024-09-18T08:21:53.946856+0000 mon.a (mon.0) 375 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:55.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:54 smithi070 bash[22844]: audit 2024-09-18T08:21:54.403576+0000 mon.a (mon.0) 376 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:21:55.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:54 smithi070 bash[22844]: audit 2024-09-18T08:21:54.403576+0000 mon.a (mon.0) 376 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:21:55.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:54 smithi070 bash[22844]: audit 2024-09-18T08:21:54.409843+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:55.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:54 smithi070 bash[22844]: audit 2024-09-18T08:21:54.409843+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:55.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:54 smithi070 bash[22844]: audit 2024-09-18T08:21:54.416398+0000 mon.a (mon.0) 378 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:55.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:54 smithi070 bash[22844]: audit 2024-09-18T08:21:54.416398+0000 mon.a (mon.0) 378 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:55.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:54 smithi070 bash[22844]: cluster 2024-09-18T08:21:54.874321+0000 mgr.a (mgr.14152) 157 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:55.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:54 smithi070 bash[22844]: cluster 2024-09-18T08:21:54.874321+0000 mgr.a (mgr.14152) 157 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:55.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:54 smithi172 bash[24990]: audit 2024-09-18T08:21:53.941065+0000 mon.a (mon.0) 372 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-18T08:21:55.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:54 smithi172 bash[24990]: audit 2024-09-18T08:21:53.941065+0000 mon.a (mon.0) 372 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-18T08:21:55.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:54 smithi172 bash[24990]: cluster 2024-09-18T08:21:53.945957+0000 mon.a (mon.0) 373 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-18T08:21:55.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:54 smithi172 bash[24990]: cluster 2024-09-18T08:21:53.945957+0000 mon.a (mon.0) 373 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-18T08:21:55.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:54 smithi172 bash[24990]: audit 2024-09-18T08:21:53.946375+0000 mon.a (mon.0) 374 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi070", "root=default"]} : dispatch 2024-09-18T08:21:55.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:54 smithi172 bash[24990]: audit 2024-09-18T08:21:53.946375+0000 mon.a (mon.0) 374 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi070", "root=default"]} : dispatch 2024-09-18T08:21:55.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:54 smithi172 bash[24990]: audit 2024-09-18T08:21:53.946856+0000 mon.a (mon.0) 375 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:54 smithi172 bash[24990]: audit 2024-09-18T08:21:53.946856+0000 mon.a (mon.0) 375 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:54 smithi172 bash[24990]: audit 2024-09-18T08:21:54.403576+0000 mon.a (mon.0) 376 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:21:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:54 smithi172 bash[24990]: audit 2024-09-18T08:21:54.403576+0000 mon.a (mon.0) 376 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:21:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:54 smithi172 bash[24990]: audit 2024-09-18T08:21:54.409843+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:54 smithi172 bash[24990]: audit 2024-09-18T08:21:54.409843+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:54 smithi172 bash[24990]: audit 2024-09-18T08:21:54.416398+0000 mon.a (mon.0) 378 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:54 smithi172 bash[24990]: audit 2024-09-18T08:21:54.416398+0000 mon.a (mon.0) 378 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:54 smithi172 bash[24990]: cluster 2024-09-18T08:21:54.874321+0000 mgr.a (mgr.14152) 157 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:55.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:54 smithi172 bash[24990]: cluster 2024-09-18T08:21:54.874321+0000 mgr.a (mgr.14152) 157 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:55.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:54 smithi086 bash[24678]: audit 2024-09-18T08:21:53.941065+0000 mon.a (mon.0) 372 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-18T08:21:55.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:54 smithi086 bash[24678]: audit 2024-09-18T08:21:53.941065+0000 mon.a (mon.0) 372 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-18T08:21:55.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:54 smithi086 bash[24678]: cluster 2024-09-18T08:21:53.945957+0000 mon.a (mon.0) 373 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-18T08:21:55.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:54 smithi086 bash[24678]: cluster 2024-09-18T08:21:53.945957+0000 mon.a (mon.0) 373 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-18T08:21:55.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:54 smithi086 bash[24678]: audit 2024-09-18T08:21:53.946375+0000 mon.a (mon.0) 374 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi070", "root=default"]} : dispatch 2024-09-18T08:21:55.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:54 smithi086 bash[24678]: audit 2024-09-18T08:21:53.946375+0000 mon.a (mon.0) 374 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi070", "root=default"]} : dispatch 2024-09-18T08:21:55.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:54 smithi086 bash[24678]: audit 2024-09-18T08:21:53.946856+0000 mon.a (mon.0) 375 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:55.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:54 smithi086 bash[24678]: audit 2024-09-18T08:21:53.946856+0000 mon.a (mon.0) 375 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:55.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:54 smithi086 bash[24678]: audit 2024-09-18T08:21:54.403576+0000 mon.a (mon.0) 376 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:21:55.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:54 smithi086 bash[24678]: audit 2024-09-18T08:21:54.403576+0000 mon.a (mon.0) 376 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:21:55.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:54 smithi086 bash[24678]: audit 2024-09-18T08:21:54.409843+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:55.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:54 smithi086 bash[24678]: audit 2024-09-18T08:21:54.409843+0000 mon.a (mon.0) 377 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:55.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:54 smithi086 bash[24678]: audit 2024-09-18T08:21:54.416398+0000 mon.a (mon.0) 378 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:55.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:54 smithi086 bash[24678]: audit 2024-09-18T08:21:54.416398+0000 mon.a (mon.0) 378 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:21:55.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:54 smithi086 bash[24678]: cluster 2024-09-18T08:21:54.874321+0000 mgr.a (mgr.14152) 157 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:55.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:54 smithi086 bash[24678]: cluster 2024-09-18T08:21:54.874321+0000 mgr.a (mgr.14152) 157 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:56.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:55 smithi070 bash[22844]: audit 2024-09-18T08:21:54.942515+0000 mon.a (mon.0) 379 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi070", "root=default"]}]': finished 2024-09-18T08:21:56.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:55 smithi070 bash[22844]: audit 2024-09-18T08:21:54.942515+0000 mon.a (mon.0) 379 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi070", "root=default"]}]': finished 2024-09-18T08:21:56.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:55 smithi070 bash[22844]: cluster 2024-09-18T08:21:54.945739+0000 mon.a (mon.0) 380 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-18T08:21:56.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:55 smithi070 bash[22844]: cluster 2024-09-18T08:21:54.945739+0000 mon.a (mon.0) 380 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-18T08:21:56.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:55 smithi070 bash[22844]: audit 2024-09-18T08:21:54.946561+0000 mon.a (mon.0) 381 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:56.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:55 smithi070 bash[22844]: audit 2024-09-18T08:21:54.946561+0000 mon.a (mon.0) 381 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:56.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:55 smithi070 bash[22844]: audit 2024-09-18T08:21:54.984836+0000 mon.a (mon.0) 382 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:56.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:55 smithi070 bash[22844]: audit 2024-09-18T08:21:54.984836+0000 mon.a (mon.0) 382 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:56.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:55 smithi172 bash[24990]: audit 2024-09-18T08:21:54.942515+0000 mon.a (mon.0) 379 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi070", "root=default"]}]': finished 2024-09-18T08:21:56.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:55 smithi172 bash[24990]: audit 2024-09-18T08:21:54.942515+0000 mon.a (mon.0) 379 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi070", "root=default"]}]': finished 2024-09-18T08:21:56.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:55 smithi172 bash[24990]: cluster 2024-09-18T08:21:54.945739+0000 mon.a (mon.0) 380 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-18T08:21:56.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:55 smithi172 bash[24990]: cluster 2024-09-18T08:21:54.945739+0000 mon.a (mon.0) 380 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-18T08:21:56.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:55 smithi172 bash[24990]: audit 2024-09-18T08:21:54.946561+0000 mon.a (mon.0) 381 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:56.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:55 smithi172 bash[24990]: audit 2024-09-18T08:21:54.946561+0000 mon.a (mon.0) 381 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:56.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:55 smithi172 bash[24990]: audit 2024-09-18T08:21:54.984836+0000 mon.a (mon.0) 382 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:56.235 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:55 smithi172 bash[24990]: audit 2024-09-18T08:21:54.984836+0000 mon.a (mon.0) 382 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:56.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:55 smithi086 bash[24678]: audit 2024-09-18T08:21:54.942515+0000 mon.a (mon.0) 379 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi070", "root=default"]}]': finished 2024-09-18T08:21:56.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:55 smithi086 bash[24678]: audit 2024-09-18T08:21:54.942515+0000 mon.a (mon.0) 379 : audit [INF] from='osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi070", "root=default"]}]': finished 2024-09-18T08:21:56.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:55 smithi086 bash[24678]: cluster 2024-09-18T08:21:54.945739+0000 mon.a (mon.0) 380 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-18T08:21:56.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:55 smithi086 bash[24678]: cluster 2024-09-18T08:21:54.945739+0000 mon.a (mon.0) 380 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-18T08:21:56.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:55 smithi086 bash[24678]: audit 2024-09-18T08:21:54.946561+0000 mon.a (mon.0) 381 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:56.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:55 smithi086 bash[24678]: audit 2024-09-18T08:21:54.946561+0000 mon.a (mon.0) 381 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:56.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:55 smithi086 bash[24678]: audit 2024-09-18T08:21:54.984836+0000 mon.a (mon.0) 382 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:56.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:55 smithi086 bash[24678]: audit 2024-09-18T08:21:54.984836+0000 mon.a (mon.0) 382 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:57.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:56 smithi070 bash[22844]: cluster 2024-09-18T08:21:54.800811+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:21:57.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:56 smithi070 bash[22844]: cluster 2024-09-18T08:21:54.800811+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:21:57.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:56 smithi070 bash[22844]: cluster 2024-09-18T08:21:54.800901+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:21:57.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:56 smithi070 bash[22844]: cluster 2024-09-18T08:21:54.800901+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:21:57.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:56 smithi070 bash[22844]: cluster 2024-09-18T08:21:55.955653+0000 mon.a (mon.0) 383 : cluster [INF] osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322] boot 2024-09-18T08:21:57.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:56 smithi070 bash[22844]: cluster 2024-09-18T08:21:55.955653+0000 mon.a (mon.0) 383 : cluster [INF] osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322] boot 2024-09-18T08:21:57.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:56 smithi070 bash[22844]: cluster 2024-09-18T08:21:55.955708+0000 mon.a (mon.0) 384 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-18T08:21:57.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:56 smithi070 bash[22844]: cluster 2024-09-18T08:21:55.955708+0000 mon.a (mon.0) 384 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-18T08:21:57.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:56 smithi070 bash[22844]: audit 2024-09-18T08:21:55.956231+0000 mon.a (mon.0) 385 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:57.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:56 smithi070 bash[22844]: audit 2024-09-18T08:21:55.956231+0000 mon.a (mon.0) 385 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:57.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:56 smithi070 bash[22844]: cluster 2024-09-18T08:21:56.874805+0000 mgr.a (mgr.14152) 158 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:57.233 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:56 smithi070 bash[22844]: cluster 2024-09-18T08:21:56.874805+0000 mgr.a (mgr.14152) 158 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:57.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:56 smithi172 bash[24990]: cluster 2024-09-18T08:21:54.800811+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:21:57.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:56 smithi172 bash[24990]: cluster 2024-09-18T08:21:54.800811+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:21:57.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:56 smithi172 bash[24990]: cluster 2024-09-18T08:21:54.800901+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:21:57.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:56 smithi172 bash[24990]: cluster 2024-09-18T08:21:54.800901+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:21:57.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:56 smithi172 bash[24990]: cluster 2024-09-18T08:21:55.955653+0000 mon.a (mon.0) 383 : cluster [INF] osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322] boot 2024-09-18T08:21:57.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:56 smithi172 bash[24990]: cluster 2024-09-18T08:21:55.955653+0000 mon.a (mon.0) 383 : cluster [INF] osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322] boot 2024-09-18T08:21:57.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:56 smithi172 bash[24990]: cluster 2024-09-18T08:21:55.955708+0000 mon.a (mon.0) 384 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-18T08:21:57.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:56 smithi172 bash[24990]: cluster 2024-09-18T08:21:55.955708+0000 mon.a (mon.0) 384 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-18T08:21:57.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:56 smithi172 bash[24990]: audit 2024-09-18T08:21:55.956231+0000 mon.a (mon.0) 385 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:57.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:56 smithi172 bash[24990]: audit 2024-09-18T08:21:55.956231+0000 mon.a (mon.0) 385 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:57.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:56 smithi172 bash[24990]: cluster 2024-09-18T08:21:56.874805+0000 mgr.a (mgr.14152) 158 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:57.234 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:56 smithi172 bash[24990]: cluster 2024-09-18T08:21:56.874805+0000 mgr.a (mgr.14152) 158 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:57.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:56 smithi086 bash[24678]: cluster 2024-09-18T08:21:54.800811+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:21:57.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:56 smithi086 bash[24678]: cluster 2024-09-18T08:21:54.800811+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:21:57.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:56 smithi086 bash[24678]: cluster 2024-09-18T08:21:54.800901+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:21:57.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:56 smithi086 bash[24678]: cluster 2024-09-18T08:21:54.800901+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:21:57.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:56 smithi086 bash[24678]: cluster 2024-09-18T08:21:55.955653+0000 mon.a (mon.0) 383 : cluster [INF] osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322] boot 2024-09-18T08:21:57.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:56 smithi086 bash[24678]: cluster 2024-09-18T08:21:55.955653+0000 mon.a (mon.0) 383 : cluster [INF] osd.1 [v2:172.21.15.70:6810/354058322,v1:172.21.15.70:6811/354058322] boot 2024-09-18T08:21:57.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:56 smithi086 bash[24678]: cluster 2024-09-18T08:21:55.955708+0000 mon.a (mon.0) 384 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-18T08:21:57.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:56 smithi086 bash[24678]: cluster 2024-09-18T08:21:55.955708+0000 mon.a (mon.0) 384 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-18T08:21:57.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:56 smithi086 bash[24678]: audit 2024-09-18T08:21:55.956231+0000 mon.a (mon.0) 385 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:57.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:56 smithi086 bash[24678]: audit 2024-09-18T08:21:55.956231+0000 mon.a (mon.0) 385 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-18T08:21:57.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:56 smithi086 bash[24678]: cluster 2024-09-18T08:21:56.874805+0000 mgr.a (mgr.14152) 158 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:57.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:56 smithi086 bash[24678]: cluster 2024-09-18T08:21:56.874805+0000 mgr.a (mgr.14152) 158 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-18T08:21:58.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:57 smithi070 bash[22844]: cluster 2024-09-18T08:21:56.972796+0000 mon.a (mon.0) 386 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-18T08:21:58.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:57 smithi070 bash[22844]: cluster 2024-09-18T08:21:56.972796+0000 mon.a (mon.0) 386 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-18T08:21:58.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:57 smithi172 bash[24990]: cluster 2024-09-18T08:21:56.972796+0000 mon.a (mon.0) 386 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-18T08:21:58.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:57 smithi172 bash[24990]: cluster 2024-09-18T08:21:56.972796+0000 mon.a (mon.0) 386 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-18T08:21:58.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:57 smithi086 bash[24678]: cluster 2024-09-18T08:21:56.972796+0000 mon.a (mon.0) 386 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-18T08:21:58.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:57 smithi086 bash[24678]: cluster 2024-09-18T08:21:56.972796+0000 mon.a (mon.0) 386 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-18T08:21:59.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:58 smithi070 bash[22844]: cluster 2024-09-18T08:21:58.875261+0000 mgr.a (mgr.14152) 159 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:21:59.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:21:58 smithi070 bash[22844]: cluster 2024-09-18T08:21:58.875261+0000 mgr.a (mgr.14152) 159 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:21:59.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:58 smithi172 bash[24990]: cluster 2024-09-18T08:21:58.875261+0000 mgr.a (mgr.14152) 159 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:21:59.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:21:58 smithi172 bash[24990]: cluster 2024-09-18T08:21:58.875261+0000 mgr.a (mgr.14152) 159 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:21:59.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:58 smithi086 bash[24678]: cluster 2024-09-18T08:21:58.875261+0000 mgr.a (mgr.14152) 159 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:21:59.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:21:58 smithi086 bash[24678]: cluster 2024-09-18T08:21:58.875261+0000 mgr.a (mgr.14152) 159 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:21:59.701 INFO:teuthology.orchestra.run.smithi086.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.b/config 2024-09-18T08:22:02.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:01 smithi070 bash[22844]: cluster 2024-09-18T08:22:00.875825+0000 mgr.a (mgr.14152) 160 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:02.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:01 smithi070 bash[22844]: cluster 2024-09-18T08:22:00.875825+0000 mgr.a (mgr.14152) 160 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:02.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:01 smithi172 bash[24990]: cluster 2024-09-18T08:22:00.875825+0000 mgr.a (mgr.14152) 160 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:02.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:01 smithi172 bash[24990]: cluster 2024-09-18T08:22:00.875825+0000 mgr.a (mgr.14152) 160 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:02.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:01 smithi086 bash[24678]: cluster 2024-09-18T08:22:00.875825+0000 mgr.a (mgr.14152) 160 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:02.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:01 smithi086 bash[24678]: cluster 2024-09-18T08:22:00.875825+0000 mgr.a (mgr.14152) 160 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:03.918 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-18T08:22:03.963 DEBUG:teuthology.orchestra.run.smithi086:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi086:vg_nvme/lv_4 2024-09-18T08:22:04.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:03 smithi070 bash[22844]: cluster 2024-09-18T08:22:02.876167+0000 mgr.a (mgr.14152) 161 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:04.232 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:03 smithi070 bash[22844]: cluster 2024-09-18T08:22:02.876167+0000 mgr.a (mgr.14152) 161 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:04.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:03 smithi172 bash[24990]: cluster 2024-09-18T08:22:02.876167+0000 mgr.a (mgr.14152) 161 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:04.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:03 smithi172 bash[24990]: cluster 2024-09-18T08:22:02.876167+0000 mgr.a (mgr.14152) 161 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:04.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:03 smithi086 bash[24678]: cluster 2024-09-18T08:22:02.876167+0000 mgr.a (mgr.14152) 161 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:04.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:03 smithi086 bash[24678]: cluster 2024-09-18T08:22:02.876167+0000 mgr.a (mgr.14152) 161 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:05.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:05 smithi086 bash[24678]: cephadm 2024-09-18T08:22:04.244244+0000 mgr.a (mgr.14152) 162 : cephadm [INF] Detected new or changed devices on smithi070 2024-09-18T08:22:05.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:05 smithi086 bash[24678]: cephadm 2024-09-18T08:22:04.244244+0000 mgr.a (mgr.14152) 162 : cephadm [INF] Detected new or changed devices on smithi070 2024-09-18T08:22:05.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:05 smithi086 bash[24678]: audit 2024-09-18T08:22:04.251295+0000 mon.a (mon.0) 387 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:05 smithi086 bash[24678]: audit 2024-09-18T08:22:04.251295+0000 mon.a (mon.0) 387 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:05 smithi086 bash[24678]: audit 2024-09-18T08:22:04.258146+0000 mon.a (mon.0) 388 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:05 smithi086 bash[24678]: audit 2024-09-18T08:22:04.258146+0000 mon.a (mon.0) 388 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:05 smithi086 bash[24678]: audit 2024-09-18T08:22:04.260072+0000 mon.a (mon.0) 389 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-18T08:22:05.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:05 smithi086 bash[24678]: audit 2024-09-18T08:22:04.260072+0000 mon.a (mon.0) 389 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-18T08:22:05.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:05 smithi086 bash[24678]: audit 2024-09-18T08:22:04.261740+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-18T08:22:05.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:05 smithi086 bash[24678]: audit 2024-09-18T08:22:04.261740+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-18T08:22:05.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:05 smithi086 bash[24678]: cephadm 2024-09-18T08:22:04.262792+0000 mgr.a (mgr.14152) 163 : cephadm [INF] Adjusting osd_memory_target on smithi070 to 8632M 2024-09-18T08:22:05.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:05 smithi086 bash[24678]: cephadm 2024-09-18T08:22:04.262792+0000 mgr.a (mgr.14152) 163 : cephadm [INF] Adjusting osd_memory_target on smithi070 to 8632M 2024-09-18T08:22:05.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:05 smithi086 bash[24678]: audit 2024-09-18T08:22:04.269037+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:05 smithi086 bash[24678]: audit 2024-09-18T08:22:04.269037+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:05 smithi086 bash[24678]: audit 2024-09-18T08:22:04.272920+0000 mon.a (mon.0) 392 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:05.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:05 smithi086 bash[24678]: audit 2024-09-18T08:22:04.272920+0000 mon.a (mon.0) 392 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:05.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:05 smithi086 bash[24678]: audit 2024-09-18T08:22:04.274427+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:22:05.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:05 smithi086 bash[24678]: audit 2024-09-18T08:22:04.274427+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:22:05.592 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:05 smithi086 bash[24678]: audit 2024-09-18T08:22:04.284181+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.593 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:05 smithi086 bash[24678]: audit 2024-09-18T08:22:04.284181+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:05 smithi070 bash[22844]: cephadm 2024-09-18T08:22:04.244244+0000 mgr.a (mgr.14152) 162 : cephadm [INF] Detected new or changed devices on smithi070 2024-09-18T08:22:05.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:05 smithi070 bash[22844]: cephadm 2024-09-18T08:22:04.244244+0000 mgr.a (mgr.14152) 162 : cephadm [INF] Detected new or changed devices on smithi070 2024-09-18T08:22:05.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:05 smithi070 bash[22844]: audit 2024-09-18T08:22:04.251295+0000 mon.a (mon.0) 387 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:05 smithi070 bash[22844]: audit 2024-09-18T08:22:04.251295+0000 mon.a (mon.0) 387 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:05 smithi070 bash[22844]: audit 2024-09-18T08:22:04.258146+0000 mon.a (mon.0) 388 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:05 smithi070 bash[22844]: audit 2024-09-18T08:22:04.258146+0000 mon.a (mon.0) 388 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:05 smithi070 bash[22844]: audit 2024-09-18T08:22:04.260072+0000 mon.a (mon.0) 389 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-18T08:22:05.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:05 smithi070 bash[22844]: audit 2024-09-18T08:22:04.260072+0000 mon.a (mon.0) 389 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-18T08:22:05.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:05 smithi070 bash[22844]: audit 2024-09-18T08:22:04.261740+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-18T08:22:05.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:05 smithi070 bash[22844]: audit 2024-09-18T08:22:04.261740+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-18T08:22:05.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:05 smithi070 bash[22844]: cephadm 2024-09-18T08:22:04.262792+0000 mgr.a (mgr.14152) 163 : cephadm [INF] Adjusting osd_memory_target on smithi070 to 8632M 2024-09-18T08:22:05.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:05 smithi070 bash[22844]: cephadm 2024-09-18T08:22:04.262792+0000 mgr.a (mgr.14152) 163 : cephadm [INF] Adjusting osd_memory_target on smithi070 to 8632M 2024-09-18T08:22:05.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:05 smithi070 bash[22844]: audit 2024-09-18T08:22:04.269037+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:05 smithi070 bash[22844]: audit 2024-09-18T08:22:04.269037+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:05 smithi070 bash[22844]: audit 2024-09-18T08:22:04.272920+0000 mon.a (mon.0) 392 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:05.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:05 smithi070 bash[22844]: audit 2024-09-18T08:22:04.272920+0000 mon.a (mon.0) 392 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:05.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:05 smithi070 bash[22844]: audit 2024-09-18T08:22:04.274427+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:22:05.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:05 smithi070 bash[22844]: audit 2024-09-18T08:22:04.274427+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:22:05.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:05 smithi070 bash[22844]: audit 2024-09-18T08:22:04.284181+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:05 smithi070 bash[22844]: audit 2024-09-18T08:22:04.284181+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:05 smithi172 bash[24990]: cephadm 2024-09-18T08:22:04.244244+0000 mgr.a (mgr.14152) 162 : cephadm [INF] Detected new or changed devices on smithi070 2024-09-18T08:22:05.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:05 smithi172 bash[24990]: cephadm 2024-09-18T08:22:04.244244+0000 mgr.a (mgr.14152) 162 : cephadm [INF] Detected new or changed devices on smithi070 2024-09-18T08:22:05.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:05 smithi172 bash[24990]: audit 2024-09-18T08:22:04.251295+0000 mon.a (mon.0) 387 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:05 smithi172 bash[24990]: audit 2024-09-18T08:22:04.251295+0000 mon.a (mon.0) 387 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:05 smithi172 bash[24990]: audit 2024-09-18T08:22:04.258146+0000 mon.a (mon.0) 388 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:05 smithi172 bash[24990]: audit 2024-09-18T08:22:04.258146+0000 mon.a (mon.0) 388 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:05 smithi172 bash[24990]: audit 2024-09-18T08:22:04.260072+0000 mon.a (mon.0) 389 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-18T08:22:05.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:05 smithi172 bash[24990]: audit 2024-09-18T08:22:04.260072+0000 mon.a (mon.0) 389 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-18T08:22:05.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:05 smithi172 bash[24990]: audit 2024-09-18T08:22:04.261740+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-18T08:22:05.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:05 smithi172 bash[24990]: audit 2024-09-18T08:22:04.261740+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-18T08:22:05.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:05 smithi172 bash[24990]: cephadm 2024-09-18T08:22:04.262792+0000 mgr.a (mgr.14152) 163 : cephadm [INF] Adjusting osd_memory_target on smithi070 to 8632M 2024-09-18T08:22:05.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:05 smithi172 bash[24990]: cephadm 2024-09-18T08:22:04.262792+0000 mgr.a (mgr.14152) 163 : cephadm [INF] Adjusting osd_memory_target on smithi070 to 8632M 2024-09-18T08:22:05.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:05 smithi172 bash[24990]: audit 2024-09-18T08:22:04.269037+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:05 smithi172 bash[24990]: audit 2024-09-18T08:22:04.269037+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:05 smithi172 bash[24990]: audit 2024-09-18T08:22:04.272920+0000 mon.a (mon.0) 392 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:05.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:05 smithi172 bash[24990]: audit 2024-09-18T08:22:04.272920+0000 mon.a (mon.0) 392 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:05.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:05 smithi172 bash[24990]: audit 2024-09-18T08:22:04.274427+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:22:05.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:05 smithi172 bash[24990]: audit 2024-09-18T08:22:04.274427+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:22:05.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:05 smithi172 bash[24990]: audit 2024-09-18T08:22:04.284181+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:05.735 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:05 smithi172 bash[24990]: audit 2024-09-18T08:22:04.284181+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:06.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:06 smithi086 bash[24678]: cluster 2024-09-18T08:22:04.876642+0000 mgr.a (mgr.14152) 164 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:06.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:06 smithi086 bash[24678]: cluster 2024-09-18T08:22:04.876642+0000 mgr.a (mgr.14152) 164 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:06.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:06 smithi070 bash[22844]: cluster 2024-09-18T08:22:04.876642+0000 mgr.a (mgr.14152) 164 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:06.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:06 smithi070 bash[22844]: cluster 2024-09-18T08:22:04.876642+0000 mgr.a (mgr.14152) 164 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:06.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:06 smithi172 bash[24990]: cluster 2024-09-18T08:22:04.876642+0000 mgr.a (mgr.14152) 164 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:06.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:06 smithi172 bash[24990]: cluster 2024-09-18T08:22:04.876642+0000 mgr.a (mgr.14152) 164 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:08.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:08 smithi086 bash[24678]: cluster 2024-09-18T08:22:06.877078+0000 mgr.a (mgr.14152) 165 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:08.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:08 smithi086 bash[24678]: cluster 2024-09-18T08:22:06.877078+0000 mgr.a (mgr.14152) 165 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:08.691 INFO:teuthology.orchestra.run.smithi086.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.b/config 2024-09-18T08:22:08.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:08 smithi070 bash[22844]: cluster 2024-09-18T08:22:06.877078+0000 mgr.a (mgr.14152) 165 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:08.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:08 smithi070 bash[22844]: cluster 2024-09-18T08:22:06.877078+0000 mgr.a (mgr.14152) 165 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:08.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:08 smithi172 bash[24990]: cluster 2024-09-18T08:22:06.877078+0000 mgr.a (mgr.14152) 165 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:08.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:08 smithi172 bash[24990]: cluster 2024-09-18T08:22:06.877078+0000 mgr.a (mgr.14152) 165 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:10.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:10 smithi086 bash[24678]: cluster 2024-09-18T08:22:08.877539+0000 mgr.a (mgr.14152) 166 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:10.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:10 smithi086 bash[24678]: cluster 2024-09-18T08:22:08.877539+0000 mgr.a (mgr.14152) 166 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:10.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:10 smithi086 bash[24678]: audit 2024-09-18T08:22:10.077237+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:22:10.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:10 smithi086 bash[24678]: audit 2024-09-18T08:22:10.077237+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:22:10.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:10 smithi086 bash[24678]: audit 2024-09-18T08:22:10.083274+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:22:10.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:10 smithi086 bash[24678]: audit 2024-09-18T08:22:10.083274+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:22:10.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:10 smithi086 bash[24678]: audit 2024-09-18T08:22:10.085104+0000 mon.a (mon.0) 397 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:10.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:10 smithi086 bash[24678]: audit 2024-09-18T08:22:10.085104+0000 mon.a (mon.0) 397 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:10.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:10 smithi070 bash[22844]: cluster 2024-09-18T08:22:08.877539+0000 mgr.a (mgr.14152) 166 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:10.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:10 smithi070 bash[22844]: cluster 2024-09-18T08:22:08.877539+0000 mgr.a (mgr.14152) 166 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:10.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:10 smithi070 bash[22844]: audit 2024-09-18T08:22:10.077237+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:22:10.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:10 smithi070 bash[22844]: audit 2024-09-18T08:22:10.077237+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:22:10.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:10 smithi070 bash[22844]: audit 2024-09-18T08:22:10.083274+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:22:10.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:10 smithi070 bash[22844]: audit 2024-09-18T08:22:10.083274+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:22:10.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:10 smithi070 bash[22844]: audit 2024-09-18T08:22:10.085104+0000 mon.a (mon.0) 397 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:10.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:10 smithi070 bash[22844]: audit 2024-09-18T08:22:10.085104+0000 mon.a (mon.0) 397 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:10.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:10 smithi172 bash[24990]: cluster 2024-09-18T08:22:08.877539+0000 mgr.a (mgr.14152) 166 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:10.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:10 smithi172 bash[24990]: cluster 2024-09-18T08:22:08.877539+0000 mgr.a (mgr.14152) 166 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:10.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:10 smithi172 bash[24990]: audit 2024-09-18T08:22:10.077237+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:22:10.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:10 smithi172 bash[24990]: audit 2024-09-18T08:22:10.077237+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:22:10.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:10 smithi172 bash[24990]: audit 2024-09-18T08:22:10.083274+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:22:10.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:10 smithi172 bash[24990]: audit 2024-09-18T08:22:10.083274+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:22:10.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:10 smithi172 bash[24990]: audit 2024-09-18T08:22:10.085104+0000 mon.a (mon.0) 397 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:10.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:10 smithi172 bash[24990]: audit 2024-09-18T08:22:10.085104+0000 mon.a (mon.0) 397 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:11.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:11 smithi086 bash[24678]: audit 2024-09-18T08:22:10.070479+0000 mgr.a (mgr.14152) 167 : audit [DBG] from='client.24140 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi086:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:22:11.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:11 smithi086 bash[24678]: audit 2024-09-18T08:22:10.070479+0000 mgr.a (mgr.14152) 167 : audit [DBG] from='client.24140 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi086:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:22:11.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:11 smithi070 bash[22844]: audit 2024-09-18T08:22:10.070479+0000 mgr.a (mgr.14152) 167 : audit [DBG] from='client.24140 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi086:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:22:11.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:11 smithi070 bash[22844]: audit 2024-09-18T08:22:10.070479+0000 mgr.a (mgr.14152) 167 : audit [DBG] from='client.24140 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi086:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:22:11.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:11 smithi172 bash[24990]: audit 2024-09-18T08:22:10.070479+0000 mgr.a (mgr.14152) 167 : audit [DBG] from='client.24140 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi086:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:22:11.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:11 smithi172 bash[24990]: audit 2024-09-18T08:22:10.070479+0000 mgr.a (mgr.14152) 167 : audit [DBG] from='client.24140 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi086:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:22:12.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:12 smithi086 bash[24678]: cluster 2024-09-18T08:22:10.878000+0000 mgr.a (mgr.14152) 168 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:12.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:12 smithi086 bash[24678]: cluster 2024-09-18T08:22:10.878000+0000 mgr.a (mgr.14152) 168 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:12.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:12 smithi070 bash[22844]: cluster 2024-09-18T08:22:10.878000+0000 mgr.a (mgr.14152) 168 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:12.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:12 smithi070 bash[22844]: cluster 2024-09-18T08:22:10.878000+0000 mgr.a (mgr.14152) 168 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:12.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:12 smithi172 bash[24990]: cluster 2024-09-18T08:22:10.878000+0000 mgr.a (mgr.14152) 168 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:12.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:12 smithi172 bash[24990]: cluster 2024-09-18T08:22:10.878000+0000 mgr.a (mgr.14152) 168 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:14.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:14 smithi086 bash[24678]: cluster 2024-09-18T08:22:12.878436+0000 mgr.a (mgr.14152) 169 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:14.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:14 smithi086 bash[24678]: cluster 2024-09-18T08:22:12.878436+0000 mgr.a (mgr.14152) 169 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:14.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:14 smithi070 bash[22844]: cluster 2024-09-18T08:22:12.878436+0000 mgr.a (mgr.14152) 169 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:14.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:14 smithi070 bash[22844]: cluster 2024-09-18T08:22:12.878436+0000 mgr.a (mgr.14152) 169 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:14.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:14 smithi172 bash[24990]: cluster 2024-09-18T08:22:12.878436+0000 mgr.a (mgr.14152) 169 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:14.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:14 smithi172 bash[24990]: cluster 2024-09-18T08:22:12.878436+0000 mgr.a (mgr.14152) 169 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:16.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:16 smithi086 bash[24678]: cluster 2024-09-18T08:22:14.878886+0000 mgr.a (mgr.14152) 170 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:16.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:16 smithi086 bash[24678]: cluster 2024-09-18T08:22:14.878886+0000 mgr.a (mgr.14152) 170 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:16.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:16 smithi070 bash[22844]: cluster 2024-09-18T08:22:14.878886+0000 mgr.a (mgr.14152) 170 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:16.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:16 smithi070 bash[22844]: cluster 2024-09-18T08:22:14.878886+0000 mgr.a (mgr.14152) 170 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:16.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:16 smithi172 bash[24990]: cluster 2024-09-18T08:22:14.878886+0000 mgr.a (mgr.14152) 170 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:16.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:16 smithi172 bash[24990]: cluster 2024-09-18T08:22:14.878886+0000 mgr.a (mgr.14152) 170 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:18.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:18 smithi086 bash[24678]: cluster 2024-09-18T08:22:16.879351+0000 mgr.a (mgr.14152) 171 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:18.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:18 smithi086 bash[24678]: cluster 2024-09-18T08:22:16.879351+0000 mgr.a (mgr.14152) 171 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:18.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:18 smithi070 bash[22844]: cluster 2024-09-18T08:22:16.879351+0000 mgr.a (mgr.14152) 171 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:18.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:18 smithi070 bash[22844]: cluster 2024-09-18T08:22:16.879351+0000 mgr.a (mgr.14152) 171 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:18.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:18 smithi172 bash[24990]: cluster 2024-09-18T08:22:16.879351+0000 mgr.a (mgr.14152) 171 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:18.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:18 smithi172 bash[24990]: cluster 2024-09-18T08:22:16.879351+0000 mgr.a (mgr.14152) 171 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:19.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:19 smithi086 bash[24678]: audit 2024-09-18T08:22:18.539328+0000 mon.b (mon.2) 7 : audit [INF] from='client.? 172.21.15.86:0/2761866749' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "85fbd205-5341-40ec-a37c-e4097a161944"} : dispatch 2024-09-18T08:22:19.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:19 smithi086 bash[24678]: audit 2024-09-18T08:22:18.539328+0000 mon.b (mon.2) 7 : audit [INF] from='client.? 172.21.15.86:0/2761866749' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "85fbd205-5341-40ec-a37c-e4097a161944"} : dispatch 2024-09-18T08:22:19.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:19 smithi086 bash[24678]: audit 2024-09-18T08:22:18.540300+0000 mon.a (mon.0) 398 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "85fbd205-5341-40ec-a37c-e4097a161944"} : dispatch 2024-09-18T08:22:19.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:19 smithi086 bash[24678]: audit 2024-09-18T08:22:18.540300+0000 mon.a (mon.0) 398 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "85fbd205-5341-40ec-a37c-e4097a161944"} : dispatch 2024-09-18T08:22:19.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:19 smithi086 bash[24678]: audit 2024-09-18T08:22:18.543504+0000 mon.a (mon.0) 399 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "85fbd205-5341-40ec-a37c-e4097a161944"}]': finished 2024-09-18T08:22:19.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:19 smithi086 bash[24678]: audit 2024-09-18T08:22:18.543504+0000 mon.a (mon.0) 399 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "85fbd205-5341-40ec-a37c-e4097a161944"}]': finished 2024-09-18T08:22:19.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:19 smithi086 bash[24678]: cluster 2024-09-18T08:22:18.548854+0000 mon.a (mon.0) 400 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-18T08:22:19.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:19 smithi086 bash[24678]: cluster 2024-09-18T08:22:18.548854+0000 mon.a (mon.0) 400 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-18T08:22:19.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:19 smithi086 bash[24678]: audit 2024-09-18T08:22:18.549309+0000 mon.a (mon.0) 401 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:19.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:19 smithi086 bash[24678]: audit 2024-09-18T08:22:18.549309+0000 mon.a (mon.0) 401 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:19.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:19 smithi086 bash[24678]: audit 2024-09-18T08:22:19.179298+0000 mon.b (mon.2) 8 : audit [DBG] from='client.? 172.21.15.86:0/860865152' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:22:19.591 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:19 smithi086 bash[24678]: audit 2024-09-18T08:22:19.179298+0000 mon.b (mon.2) 8 : audit [DBG] from='client.? 172.21.15.86:0/860865152' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:22:19.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:19 smithi070 bash[22844]: audit 2024-09-18T08:22:18.539328+0000 mon.b (mon.2) 7 : audit [INF] from='client.? 172.21.15.86:0/2761866749' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "85fbd205-5341-40ec-a37c-e4097a161944"} : dispatch 2024-09-18T08:22:19.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:19 smithi070 bash[22844]: audit 2024-09-18T08:22:18.539328+0000 mon.b (mon.2) 7 : audit [INF] from='client.? 172.21.15.86:0/2761866749' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "85fbd205-5341-40ec-a37c-e4097a161944"} : dispatch 2024-09-18T08:22:19.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:19 smithi070 bash[22844]: audit 2024-09-18T08:22:18.540300+0000 mon.a (mon.0) 398 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "85fbd205-5341-40ec-a37c-e4097a161944"} : dispatch 2024-09-18T08:22:19.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:19 smithi070 bash[22844]: audit 2024-09-18T08:22:18.540300+0000 mon.a (mon.0) 398 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "85fbd205-5341-40ec-a37c-e4097a161944"} : dispatch 2024-09-18T08:22:19.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:19 smithi070 bash[22844]: audit 2024-09-18T08:22:18.543504+0000 mon.a (mon.0) 399 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "85fbd205-5341-40ec-a37c-e4097a161944"}]': finished 2024-09-18T08:22:19.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:19 smithi070 bash[22844]: audit 2024-09-18T08:22:18.543504+0000 mon.a (mon.0) 399 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "85fbd205-5341-40ec-a37c-e4097a161944"}]': finished 2024-09-18T08:22:19.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:19 smithi070 bash[22844]: cluster 2024-09-18T08:22:18.548854+0000 mon.a (mon.0) 400 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-18T08:22:19.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:19 smithi070 bash[22844]: cluster 2024-09-18T08:22:18.548854+0000 mon.a (mon.0) 400 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-18T08:22:19.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:19 smithi070 bash[22844]: audit 2024-09-18T08:22:18.549309+0000 mon.a (mon.0) 401 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:19.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:19 smithi070 bash[22844]: audit 2024-09-18T08:22:18.549309+0000 mon.a (mon.0) 401 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:19.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:19 smithi070 bash[22844]: audit 2024-09-18T08:22:19.179298+0000 mon.b (mon.2) 8 : audit [DBG] from='client.? 172.21.15.86:0/860865152' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:22:19.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:19 smithi070 bash[22844]: audit 2024-09-18T08:22:19.179298+0000 mon.b (mon.2) 8 : audit [DBG] from='client.? 172.21.15.86:0/860865152' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:22:19.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:19 smithi172 bash[24990]: audit 2024-09-18T08:22:18.539328+0000 mon.b (mon.2) 7 : audit [INF] from='client.? 172.21.15.86:0/2761866749' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "85fbd205-5341-40ec-a37c-e4097a161944"} : dispatch 2024-09-18T08:22:19.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:19 smithi172 bash[24990]: audit 2024-09-18T08:22:18.539328+0000 mon.b (mon.2) 7 : audit [INF] from='client.? 172.21.15.86:0/2761866749' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "85fbd205-5341-40ec-a37c-e4097a161944"} : dispatch 2024-09-18T08:22:19.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:19 smithi172 bash[24990]: audit 2024-09-18T08:22:18.540300+0000 mon.a (mon.0) 398 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "85fbd205-5341-40ec-a37c-e4097a161944"} : dispatch 2024-09-18T08:22:19.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:19 smithi172 bash[24990]: audit 2024-09-18T08:22:18.540300+0000 mon.a (mon.0) 398 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "85fbd205-5341-40ec-a37c-e4097a161944"} : dispatch 2024-09-18T08:22:19.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:19 smithi172 bash[24990]: audit 2024-09-18T08:22:18.543504+0000 mon.a (mon.0) 399 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "85fbd205-5341-40ec-a37c-e4097a161944"}]': finished 2024-09-18T08:22:19.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:19 smithi172 bash[24990]: audit 2024-09-18T08:22:18.543504+0000 mon.a (mon.0) 399 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "85fbd205-5341-40ec-a37c-e4097a161944"}]': finished 2024-09-18T08:22:19.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:19 smithi172 bash[24990]: cluster 2024-09-18T08:22:18.548854+0000 mon.a (mon.0) 400 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-18T08:22:19.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:19 smithi172 bash[24990]: cluster 2024-09-18T08:22:18.548854+0000 mon.a (mon.0) 400 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-18T08:22:19.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:19 smithi172 bash[24990]: audit 2024-09-18T08:22:18.549309+0000 mon.a (mon.0) 401 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:19.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:19 smithi172 bash[24990]: audit 2024-09-18T08:22:18.549309+0000 mon.a (mon.0) 401 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:19.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:19 smithi172 bash[24990]: audit 2024-09-18T08:22:19.179298+0000 mon.b (mon.2) 8 : audit [DBG] from='client.? 172.21.15.86:0/860865152' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:22:19.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:19 smithi172 bash[24990]: audit 2024-09-18T08:22:19.179298+0000 mon.b (mon.2) 8 : audit [DBG] from='client.? 172.21.15.86:0/860865152' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:22:20.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:20 smithi086 bash[24678]: cluster 2024-09-18T08:22:18.879826+0000 mgr.a (mgr.14152) 172 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:20.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:20 smithi086 bash[24678]: cluster 2024-09-18T08:22:18.879826+0000 mgr.a (mgr.14152) 172 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:20.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:20 smithi070 bash[22844]: cluster 2024-09-18T08:22:18.879826+0000 mgr.a (mgr.14152) 172 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:20.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:20 smithi070 bash[22844]: cluster 2024-09-18T08:22:18.879826+0000 mgr.a (mgr.14152) 172 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:20.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:20 smithi172 bash[24990]: cluster 2024-09-18T08:22:18.879826+0000 mgr.a (mgr.14152) 172 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:20.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:20 smithi172 bash[24990]: cluster 2024-09-18T08:22:18.879826+0000 mgr.a (mgr.14152) 172 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:22.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:22 smithi086 bash[24678]: cluster 2024-09-18T08:22:20.880292+0000 mgr.a (mgr.14152) 173 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:22.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:22 smithi086 bash[24678]: cluster 2024-09-18T08:22:20.880292+0000 mgr.a (mgr.14152) 173 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:22.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:22 smithi070 bash[22844]: cluster 2024-09-18T08:22:20.880292+0000 mgr.a (mgr.14152) 173 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:22.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:22 smithi070 bash[22844]: cluster 2024-09-18T08:22:20.880292+0000 mgr.a (mgr.14152) 173 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:22.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:22 smithi172 bash[24990]: cluster 2024-09-18T08:22:20.880292+0000 mgr.a (mgr.14152) 173 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:22.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:22 smithi172 bash[24990]: cluster 2024-09-18T08:22:20.880292+0000 mgr.a (mgr.14152) 173 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:24.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:24 smithi086 bash[24678]: cluster 2024-09-18T08:22:22.880780+0000 mgr.a (mgr.14152) 174 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:24.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:24 smithi086 bash[24678]: cluster 2024-09-18T08:22:22.880780+0000 mgr.a (mgr.14152) 174 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:24.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:24 smithi070 bash[22844]: cluster 2024-09-18T08:22:22.880780+0000 mgr.a (mgr.14152) 174 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:24.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:24 smithi070 bash[22844]: cluster 2024-09-18T08:22:22.880780+0000 mgr.a (mgr.14152) 174 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:24.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:24 smithi172 bash[24990]: cluster 2024-09-18T08:22:22.880780+0000 mgr.a (mgr.14152) 174 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:24.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:24 smithi172 bash[24990]: cluster 2024-09-18T08:22:22.880780+0000 mgr.a (mgr.14152) 174 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:26.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:26 smithi086 bash[24678]: cluster 2024-09-18T08:22:24.881307+0000 mgr.a (mgr.14152) 175 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:26.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:26 smithi086 bash[24678]: cluster 2024-09-18T08:22:24.881307+0000 mgr.a (mgr.14152) 175 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:26.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:26 smithi070 bash[22844]: cluster 2024-09-18T08:22:24.881307+0000 mgr.a (mgr.14152) 175 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:26.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:26 smithi070 bash[22844]: cluster 2024-09-18T08:22:24.881307+0000 mgr.a (mgr.14152) 175 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:26.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:26 smithi172 bash[24990]: cluster 2024-09-18T08:22:24.881307+0000 mgr.a (mgr.14152) 175 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:26.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:26 smithi172 bash[24990]: cluster 2024-09-18T08:22:24.881307+0000 mgr.a (mgr.14152) 175 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:28.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:28 smithi086 bash[24678]: cluster 2024-09-18T08:22:26.881732+0000 mgr.a (mgr.14152) 176 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:28.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:28 smithi086 bash[24678]: cluster 2024-09-18T08:22:26.881732+0000 mgr.a (mgr.14152) 176 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:28.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:28 smithi070 bash[22844]: cluster 2024-09-18T08:22:26.881732+0000 mgr.a (mgr.14152) 176 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:28.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:28 smithi070 bash[22844]: cluster 2024-09-18T08:22:26.881732+0000 mgr.a (mgr.14152) 176 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:28.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:28 smithi172 bash[24990]: cluster 2024-09-18T08:22:26.881732+0000 mgr.a (mgr.14152) 176 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:28.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:28 smithi172 bash[24990]: cluster 2024-09-18T08:22:26.881732+0000 mgr.a (mgr.14152) 176 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:30.835 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:30 smithi086 bash[24678]: cluster 2024-09-18T08:22:28.882178+0000 mgr.a (mgr.14152) 177 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:30.835 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:30 smithi086 bash[24678]: cluster 2024-09-18T08:22:28.882178+0000 mgr.a (mgr.14152) 177 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:30.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:30 smithi070 bash[22844]: cluster 2024-09-18T08:22:28.882178+0000 mgr.a (mgr.14152) 177 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:30.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:30 smithi070 bash[22844]: cluster 2024-09-18T08:22:28.882178+0000 mgr.a (mgr.14152) 177 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:30.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:30 smithi172 bash[24990]: cluster 2024-09-18T08:22:28.882178+0000 mgr.a (mgr.14152) 177 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:30.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:30 smithi172 bash[24990]: cluster 2024-09-18T08:22:28.882178+0000 mgr.a (mgr.14152) 177 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:32.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:32 smithi086 bash[24678]: cluster 2024-09-18T08:22:30.882643+0000 mgr.a (mgr.14152) 178 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:32.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:32 smithi086 bash[24678]: cluster 2024-09-18T08:22:30.882643+0000 mgr.a (mgr.14152) 178 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:32.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:32 smithi086 bash[24678]: audit 2024-09-18T08:22:31.878028+0000 mon.a (mon.0) 402 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-18T08:22:32.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:32 smithi086 bash[24678]: audit 2024-09-18T08:22:31.878028+0000 mon.a (mon.0) 402 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-18T08:22:32.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:32 smithi086 bash[24678]: audit 2024-09-18T08:22:31.879837+0000 mon.a (mon.0) 403 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:32.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:32 smithi086 bash[24678]: audit 2024-09-18T08:22:31.879837+0000 mon.a (mon.0) 403 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:32.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:32 smithi070 bash[22844]: cluster 2024-09-18T08:22:30.882643+0000 mgr.a (mgr.14152) 178 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:32.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:32 smithi070 bash[22844]: cluster 2024-09-18T08:22:30.882643+0000 mgr.a (mgr.14152) 178 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:32.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:32 smithi070 bash[22844]: audit 2024-09-18T08:22:31.878028+0000 mon.a (mon.0) 402 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-18T08:22:32.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:32 smithi070 bash[22844]: audit 2024-09-18T08:22:31.878028+0000 mon.a (mon.0) 402 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-18T08:22:32.982 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:32 smithi070 bash[22844]: audit 2024-09-18T08:22:31.879837+0000 mon.a (mon.0) 403 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:32.982 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:32 smithi070 bash[22844]: audit 2024-09-18T08:22:31.879837+0000 mon.a (mon.0) 403 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:32.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:32 smithi172 bash[24990]: cluster 2024-09-18T08:22:30.882643+0000 mgr.a (mgr.14152) 178 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:32.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:32 smithi172 bash[24990]: cluster 2024-09-18T08:22:30.882643+0000 mgr.a (mgr.14152) 178 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:32.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:32 smithi172 bash[24990]: audit 2024-09-18T08:22:31.878028+0000 mon.a (mon.0) 402 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-18T08:22:32.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:32 smithi172 bash[24990]: audit 2024-09-18T08:22:31.878028+0000 mon.a (mon.0) 402 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-18T08:22:32.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:32 smithi172 bash[24990]: audit 2024-09-18T08:22:31.879837+0000 mon.a (mon.0) 403 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:32.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:32 smithi172 bash[24990]: audit 2024-09-18T08:22:31.879837+0000 mon.a (mon.0) 403 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:33.764 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:33 smithi086 bash[24678]: cephadm 2024-09-18T08:22:31.881479+0000 mgr.a (mgr.14152) 179 : cephadm [INF] Deploying daemon osd.2 on smithi086 2024-09-18T08:22:33.764 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:33 smithi086 bash[24678]: cephadm 2024-09-18T08:22:31.881479+0000 mgr.a (mgr.14152) 179 : cephadm [INF] Deploying daemon osd.2 on smithi086 2024-09-18T08:22:33.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:33 smithi070 bash[22844]: cephadm 2024-09-18T08:22:31.881479+0000 mgr.a (mgr.14152) 179 : cephadm [INF] Deploying daemon osd.2 on smithi086 2024-09-18T08:22:33.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:33 smithi070 bash[22844]: cephadm 2024-09-18T08:22:31.881479+0000 mgr.a (mgr.14152) 179 : cephadm [INF] Deploying daemon osd.2 on smithi086 2024-09-18T08:22:33.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:33 smithi172 bash[24990]: cephadm 2024-09-18T08:22:31.881479+0000 mgr.a (mgr.14152) 179 : cephadm [INF] Deploying daemon osd.2 on smithi086 2024-09-18T08:22:33.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:33 smithi172 bash[24990]: cephadm 2024-09-18T08:22:31.881479+0000 mgr.a (mgr.14152) 179 : cephadm [INF] Deploying daemon osd.2 on smithi086 2024-09-18T08:22:34.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:34 smithi086 bash[24678]: cluster 2024-09-18T08:22:32.883124+0000 mgr.a (mgr.14152) 180 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:34.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:34 smithi086 bash[24678]: cluster 2024-09-18T08:22:32.883124+0000 mgr.a (mgr.14152) 180 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:34.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:34 smithi070 bash[22844]: cluster 2024-09-18T08:22:32.883124+0000 mgr.a (mgr.14152) 180 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:34.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:34 smithi070 bash[22844]: cluster 2024-09-18T08:22:32.883124+0000 mgr.a (mgr.14152) 180 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:34.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:34 smithi172 bash[24990]: cluster 2024-09-18T08:22:32.883124+0000 mgr.a (mgr.14152) 180 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:34.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:34 smithi172 bash[24990]: cluster 2024-09-18T08:22:32.883124+0000 mgr.a (mgr.14152) 180 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:36.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:36 smithi086 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:22:36.340 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 18 08:22:36 smithi086 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:22:36.840 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 18 08:22:36 smithi086 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:22:36.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:36 smithi086 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:22:36.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:36 smithi086 bash[24678]: cluster 2024-09-18T08:22:34.883631+0000 mgr.a (mgr.14152) 181 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:36.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:36 smithi086 bash[24678]: cluster 2024-09-18T08:22:34.883631+0000 mgr.a (mgr.14152) 181 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:36.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:36 smithi086 bash[24678]: audit 2024-09-18T08:22:36.559075+0000 mon.a (mon.0) 404 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:22:36.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:36 smithi086 bash[24678]: audit 2024-09-18T08:22:36.559075+0000 mon.a (mon.0) 404 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:22:36.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:36 smithi086 bash[24678]: audit 2024-09-18T08:22:36.565868+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:36.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:36 smithi086 bash[24678]: audit 2024-09-18T08:22:36.565868+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:36.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:36 smithi086 bash[24678]: audit 2024-09-18T08:22:36.573835+0000 mon.a (mon.0) 406 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:36.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:36 smithi086 bash[24678]: audit 2024-09-18T08:22:36.573835+0000 mon.a (mon.0) 406 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:36.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:36 smithi070 bash[22844]: cluster 2024-09-18T08:22:34.883631+0000 mgr.a (mgr.14152) 181 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:36.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:36 smithi070 bash[22844]: cluster 2024-09-18T08:22:34.883631+0000 mgr.a (mgr.14152) 181 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:36.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:36 smithi070 bash[22844]: audit 2024-09-18T08:22:36.559075+0000 mon.a (mon.0) 404 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:22:36.982 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:36 smithi070 bash[22844]: audit 2024-09-18T08:22:36.559075+0000 mon.a (mon.0) 404 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:22:36.982 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:36 smithi070 bash[22844]: audit 2024-09-18T08:22:36.565868+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:36.982 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:36 smithi070 bash[22844]: audit 2024-09-18T08:22:36.565868+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:36.982 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:36 smithi070 bash[22844]: audit 2024-09-18T08:22:36.573835+0000 mon.a (mon.0) 406 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:36.982 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:36 smithi070 bash[22844]: audit 2024-09-18T08:22:36.573835+0000 mon.a (mon.0) 406 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:36.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:36 smithi172 bash[24990]: cluster 2024-09-18T08:22:34.883631+0000 mgr.a (mgr.14152) 181 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:36.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:36 smithi172 bash[24990]: cluster 2024-09-18T08:22:34.883631+0000 mgr.a (mgr.14152) 181 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:36.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:36 smithi172 bash[24990]: audit 2024-09-18T08:22:36.559075+0000 mon.a (mon.0) 404 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:22:36.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:36 smithi172 bash[24990]: audit 2024-09-18T08:22:36.559075+0000 mon.a (mon.0) 404 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:22:36.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:36 smithi172 bash[24990]: audit 2024-09-18T08:22:36.565868+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:36.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:36 smithi172 bash[24990]: audit 2024-09-18T08:22:36.565868+0000 mon.a (mon.0) 405 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:36.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:36 smithi172 bash[24990]: audit 2024-09-18T08:22:36.573835+0000 mon.a (mon.0) 406 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:36.983 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:36 smithi172 bash[24990]: audit 2024-09-18T08:22:36.573835+0000 mon.a (mon.0) 406 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:38.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:38 smithi086 bash[24678]: cluster 2024-09-18T08:22:36.884081+0000 mgr.a (mgr.14152) 182 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:38.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:38 smithi086 bash[24678]: cluster 2024-09-18T08:22:36.884081+0000 mgr.a (mgr.14152) 182 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:38.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:38 smithi070 bash[22844]: cluster 2024-09-18T08:22:36.884081+0000 mgr.a (mgr.14152) 182 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:38.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:38 smithi070 bash[22844]: cluster 2024-09-18T08:22:36.884081+0000 mgr.a (mgr.14152) 182 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:38.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:38 smithi172 bash[24990]: cluster 2024-09-18T08:22:36.884081+0000 mgr.a (mgr.14152) 182 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:38.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:38 smithi172 bash[24990]: cluster 2024-09-18T08:22:36.884081+0000 mgr.a (mgr.14152) 182 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:40.699 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:40 smithi086 bash[24678]: cluster 2024-09-18T08:22:38.884583+0000 mgr.a (mgr.14152) 183 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:40.699 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:40 smithi086 bash[24678]: cluster 2024-09-18T08:22:38.884583+0000 mgr.a (mgr.14152) 183 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:40.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:40 smithi070 bash[22844]: cluster 2024-09-18T08:22:38.884583+0000 mgr.a (mgr.14152) 183 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:40.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:40 smithi070 bash[22844]: cluster 2024-09-18T08:22:38.884583+0000 mgr.a (mgr.14152) 183 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:40.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:40 smithi172 bash[24990]: cluster 2024-09-18T08:22:38.884583+0000 mgr.a (mgr.14152) 183 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:40.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:40 smithi172 bash[24990]: cluster 2024-09-18T08:22:38.884583+0000 mgr.a (mgr.14152) 183 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:42.863 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:42 smithi086 bash[24678]: cluster 2024-09-18T08:22:40.885091+0000 mgr.a (mgr.14152) 184 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:42.863 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:42 smithi086 bash[24678]: cluster 2024-09-18T08:22:40.885091+0000 mgr.a (mgr.14152) 184 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:42.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:42 smithi070 bash[22844]: cluster 2024-09-18T08:22:40.885091+0000 mgr.a (mgr.14152) 184 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:42.981 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:42 smithi070 bash[22844]: cluster 2024-09-18T08:22:40.885091+0000 mgr.a (mgr.14152) 184 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:42.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:42 smithi172 bash[24990]: cluster 2024-09-18T08:22:40.885091+0000 mgr.a (mgr.14152) 184 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:42.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:42 smithi172 bash[24990]: cluster 2024-09-18T08:22:40.885091+0000 mgr.a (mgr.14152) 184 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:44.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:44 smithi086 bash[24678]: cluster 2024-09-18T08:22:42.885536+0000 mgr.a (mgr.14152) 185 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:44.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:44 smithi086 bash[24678]: cluster 2024-09-18T08:22:42.885536+0000 mgr.a (mgr.14152) 185 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:44.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:44 smithi086 bash[24678]: audit 2024-09-18T08:22:43.011660+0000 mon.a (mon.0) 407 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:44.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:44 smithi086 bash[24678]: audit 2024-09-18T08:22:43.011660+0000 mon.a (mon.0) 407 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:44.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:44 smithi086 bash[24678]: audit 2024-09-18T08:22:43.019560+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:44.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:44 smithi086 bash[24678]: audit 2024-09-18T08:22:43.019560+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:44.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:44 smithi086 bash[24678]: audit 2024-09-18T08:22:43.021435+0000 mon.a (mon.0) 409 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:44.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:44 smithi086 bash[24678]: audit 2024-09-18T08:22:43.021435+0000 mon.a (mon.0) 409 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:44.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:44 smithi086 bash[24678]: audit 2024-09-18T08:22:43.023261+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:22:44.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:44 smithi086 bash[24678]: audit 2024-09-18T08:22:43.023261+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:22:44.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:44 smithi086 bash[24678]: audit 2024-09-18T08:22:43.032785+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:44.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:44 smithi086 bash[24678]: audit 2024-09-18T08:22:43.032785+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:44.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:44 smithi070 bash[22844]: cluster 2024-09-18T08:22:42.885536+0000 mgr.a (mgr.14152) 185 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:44.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:44 smithi070 bash[22844]: cluster 2024-09-18T08:22:42.885536+0000 mgr.a (mgr.14152) 185 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:44.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:44 smithi070 bash[22844]: audit 2024-09-18T08:22:43.011660+0000 mon.a (mon.0) 407 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:44.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:44 smithi070 bash[22844]: audit 2024-09-18T08:22:43.011660+0000 mon.a (mon.0) 407 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:44.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:44 smithi070 bash[22844]: audit 2024-09-18T08:22:43.019560+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:44.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:44 smithi070 bash[22844]: audit 2024-09-18T08:22:43.019560+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:44.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:44 smithi070 bash[22844]: audit 2024-09-18T08:22:43.021435+0000 mon.a (mon.0) 409 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:44.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:44 smithi070 bash[22844]: audit 2024-09-18T08:22:43.021435+0000 mon.a (mon.0) 409 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:44.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:44 smithi070 bash[22844]: audit 2024-09-18T08:22:43.023261+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:22:44.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:44 smithi070 bash[22844]: audit 2024-09-18T08:22:43.023261+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:22:44.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:44 smithi070 bash[22844]: audit 2024-09-18T08:22:43.032785+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:44.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:44 smithi070 bash[22844]: audit 2024-09-18T08:22:43.032785+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:44.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:44 smithi172 bash[24990]: cluster 2024-09-18T08:22:42.885536+0000 mgr.a (mgr.14152) 185 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:44.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:44 smithi172 bash[24990]: cluster 2024-09-18T08:22:42.885536+0000 mgr.a (mgr.14152) 185 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:44.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:44 smithi172 bash[24990]: audit 2024-09-18T08:22:43.011660+0000 mon.a (mon.0) 407 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:44.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:44 smithi172 bash[24990]: audit 2024-09-18T08:22:43.011660+0000 mon.a (mon.0) 407 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:44.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:44 smithi172 bash[24990]: audit 2024-09-18T08:22:43.019560+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:44.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:44 smithi172 bash[24990]: audit 2024-09-18T08:22:43.019560+0000 mon.a (mon.0) 408 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:44.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:44 smithi172 bash[24990]: audit 2024-09-18T08:22:43.021435+0000 mon.a (mon.0) 409 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:44.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:44 smithi172 bash[24990]: audit 2024-09-18T08:22:43.021435+0000 mon.a (mon.0) 409 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:22:44.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:44 smithi172 bash[24990]: audit 2024-09-18T08:22:43.023261+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:22:44.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:44 smithi172 bash[24990]: audit 2024-09-18T08:22:43.023261+0000 mon.a (mon.0) 410 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:22:44.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:44 smithi172 bash[24990]: audit 2024-09-18T08:22:43.032785+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:44.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:44 smithi172 bash[24990]: audit 2024-09-18T08:22:43.032785+0000 mon.a (mon.0) 411 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:46.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:46 smithi086 bash[24678]: cluster 2024-09-18T08:22:44.886037+0000 mgr.a (mgr.14152) 186 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:46.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:46 smithi086 bash[24678]: cluster 2024-09-18T08:22:44.886037+0000 mgr.a (mgr.14152) 186 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:46.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:46 smithi070 bash[22844]: cluster 2024-09-18T08:22:44.886037+0000 mgr.a (mgr.14152) 186 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:46.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:46 smithi070 bash[22844]: cluster 2024-09-18T08:22:44.886037+0000 mgr.a (mgr.14152) 186 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:46.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:46 smithi172 bash[24990]: cluster 2024-09-18T08:22:44.886037+0000 mgr.a (mgr.14152) 186 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:46.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:46 smithi172 bash[24990]: cluster 2024-09-18T08:22:44.886037+0000 mgr.a (mgr.14152) 186 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:48.153 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:48 smithi086 bash[24678]: cluster 2024-09-18T08:22:46.886516+0000 mgr.a (mgr.14152) 187 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:48.154 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:48 smithi086 bash[24678]: cluster 2024-09-18T08:22:46.886516+0000 mgr.a (mgr.14152) 187 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:48.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:48 smithi070 bash[22844]: cluster 2024-09-18T08:22:46.886516+0000 mgr.a (mgr.14152) 187 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:48.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:48 smithi070 bash[22844]: cluster 2024-09-18T08:22:46.886516+0000 mgr.a (mgr.14152) 187 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:48.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:48 smithi172 bash[24990]: cluster 2024-09-18T08:22:46.886516+0000 mgr.a (mgr.14152) 187 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:48.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:48 smithi172 bash[24990]: cluster 2024-09-18T08:22:46.886516+0000 mgr.a (mgr.14152) 187 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:48.594 INFO:teuthology.orchestra.run.smithi086.stdout:Created osd(s) 2 on host 'smithi086' 2024-09-18T08:22:49.194 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:49 smithi086 bash[24678]: audit 2024-09-18T08:22:48.069797+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.86:6800/2009091660,v1:172.21.15.86:6801/2009091660]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-18T08:22:49.194 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:49 smithi086 bash[24678]: audit 2024-09-18T08:22:48.069797+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.86:6800/2009091660,v1:172.21.15.86:6801/2009091660]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-18T08:22:49.195 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:49 smithi086 bash[24678]: audit 2024-09-18T08:22:48.070760+0000 mon.a (mon.0) 412 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-18T08:22:49.195 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:49 smithi086 bash[24678]: audit 2024-09-18T08:22:48.070760+0000 mon.a (mon.0) 412 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-18T08:22:49.195 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:49 smithi086 bash[24678]: audit 2024-09-18T08:22:48.576875+0000 mon.a (mon.0) 413 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:22:49.195 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:49 smithi086 bash[24678]: audit 2024-09-18T08:22:48.576875+0000 mon.a (mon.0) 413 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:22:49.195 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:49 smithi086 bash[24678]: audit 2024-09-18T08:22:48.584048+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:49.195 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:49 smithi086 bash[24678]: audit 2024-09-18T08:22:48.584048+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:49.195 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:49 smithi086 bash[24678]: audit 2024-09-18T08:22:48.592291+0000 mon.a (mon.0) 415 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:49.195 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:49 smithi086 bash[24678]: audit 2024-09-18T08:22:48.592291+0000 mon.a (mon.0) 415 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:49.197 DEBUG:teuthology.orchestra.run.smithi086:osd.2> sudo journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@osd.2.service 2024-09-18T08:22:49.199 INFO:tasks.cephadm:Deploying osd.3 on smithi086 with /dev/vg_nvme/lv_3... 2024-09-18T08:22:49.199 DEBUG:teuthology.orchestra.run.smithi086:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-18T08:22:49.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:49 smithi070 bash[22844]: audit 2024-09-18T08:22:48.069797+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.86:6800/2009091660,v1:172.21.15.86:6801/2009091660]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-18T08:22:49.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:49 smithi070 bash[22844]: audit 2024-09-18T08:22:48.069797+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.86:6800/2009091660,v1:172.21.15.86:6801/2009091660]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-18T08:22:49.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:49 smithi070 bash[22844]: audit 2024-09-18T08:22:48.070760+0000 mon.a (mon.0) 412 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-18T08:22:49.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:49 smithi070 bash[22844]: audit 2024-09-18T08:22:48.070760+0000 mon.a (mon.0) 412 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-18T08:22:49.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:49 smithi070 bash[22844]: audit 2024-09-18T08:22:48.576875+0000 mon.a (mon.0) 413 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:22:49.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:49 smithi070 bash[22844]: audit 2024-09-18T08:22:48.576875+0000 mon.a (mon.0) 413 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:22:49.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:49 smithi070 bash[22844]: audit 2024-09-18T08:22:48.584048+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:49.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:49 smithi070 bash[22844]: audit 2024-09-18T08:22:48.584048+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:49.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:49 smithi070 bash[22844]: audit 2024-09-18T08:22:48.592291+0000 mon.a (mon.0) 415 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:49.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:49 smithi070 bash[22844]: audit 2024-09-18T08:22:48.592291+0000 mon.a (mon.0) 415 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:49.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:49 smithi172 bash[24990]: audit 2024-09-18T08:22:48.069797+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.86:6800/2009091660,v1:172.21.15.86:6801/2009091660]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-18T08:22:49.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:49 smithi172 bash[24990]: audit 2024-09-18T08:22:48.069797+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.86:6800/2009091660,v1:172.21.15.86:6801/2009091660]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-18T08:22:49.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:49 smithi172 bash[24990]: audit 2024-09-18T08:22:48.070760+0000 mon.a (mon.0) 412 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-18T08:22:49.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:49 smithi172 bash[24990]: audit 2024-09-18T08:22:48.070760+0000 mon.a (mon.0) 412 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-18T08:22:49.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:49 smithi172 bash[24990]: audit 2024-09-18T08:22:48.576875+0000 mon.a (mon.0) 413 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:22:49.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:49 smithi172 bash[24990]: audit 2024-09-18T08:22:48.576875+0000 mon.a (mon.0) 413 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:22:49.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:49 smithi172 bash[24990]: audit 2024-09-18T08:22:48.584048+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:49.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:49 smithi172 bash[24990]: audit 2024-09-18T08:22:48.584048+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:49.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:49 smithi172 bash[24990]: audit 2024-09-18T08:22:48.592291+0000 mon.a (mon.0) 415 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:49.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:49 smithi172 bash[24990]: audit 2024-09-18T08:22:48.592291+0000 mon.a (mon.0) 415 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:50.340 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 18 08:22:50 smithi086 bash[27636]: debug 2024-09-18T08:22:50.054+0000 7fec5e3b9640 -1 osd.2 0 waiting for initial osdmap 2024-09-18T08:22:50.341 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 18 08:22:50 smithi086 bash[27636]: debug 2024-09-18T08:22:50.058+0000 7fec5a1e0640 -1 osd.2 17 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-18T08:22:50.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:50 smithi086 bash[24678]: cluster 2024-09-18T08:22:48.886987+0000 mgr.a (mgr.14152) 188 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:50.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:50 smithi086 bash[24678]: cluster 2024-09-18T08:22:48.886987+0000 mgr.a (mgr.14152) 188 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:50.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:50 smithi086 bash[24678]: audit 2024-09-18T08:22:49.028069+0000 mon.a (mon.0) 416 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-18T08:22:50.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:50 smithi086 bash[24678]: audit 2024-09-18T08:22:49.028069+0000 mon.a (mon.0) 416 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-18T08:22:50.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:50 smithi086 bash[24678]: cluster 2024-09-18T08:22:49.032409+0000 mon.a (mon.0) 417 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-18T08:22:50.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:50 smithi086 bash[24678]: cluster 2024-09-18T08:22:49.032409+0000 mon.a (mon.0) 417 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-18T08:22:50.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:50 smithi086 bash[24678]: audit 2024-09-18T08:22:49.032853+0000 mon.a (mon.0) 418 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:50.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:50 smithi086 bash[24678]: audit 2024-09-18T08:22:49.032853+0000 mon.a (mon.0) 418 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:50.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:50 smithi086 bash[24678]: audit 2024-09-18T08:22:49.033364+0000 mon.b (mon.2) 10 : audit [INF] from='osd.2 [v2:172.21.15.86:6800/2009091660,v1:172.21.15.86:6801/2009091660]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-18T08:22:50.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:50 smithi086 bash[24678]: audit 2024-09-18T08:22:49.033364+0000 mon.b (mon.2) 10 : audit [INF] from='osd.2 [v2:172.21.15.86:6800/2009091660,v1:172.21.15.86:6801/2009091660]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-18T08:22:50.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:50 smithi086 bash[24678]: audit 2024-09-18T08:22:49.034321+0000 mon.a (mon.0) 419 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-18T08:22:50.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:50 smithi086 bash[24678]: audit 2024-09-18T08:22:49.034321+0000 mon.a (mon.0) 419 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-18T08:22:50.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:50 smithi070 bash[22844]: cluster 2024-09-18T08:22:48.886987+0000 mgr.a (mgr.14152) 188 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:50.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:50 smithi070 bash[22844]: cluster 2024-09-18T08:22:48.886987+0000 mgr.a (mgr.14152) 188 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:50.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:50 smithi070 bash[22844]: audit 2024-09-18T08:22:49.028069+0000 mon.a (mon.0) 416 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-18T08:22:50.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:50 smithi070 bash[22844]: audit 2024-09-18T08:22:49.028069+0000 mon.a (mon.0) 416 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-18T08:22:50.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:50 smithi070 bash[22844]: cluster 2024-09-18T08:22:49.032409+0000 mon.a (mon.0) 417 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-18T08:22:50.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:50 smithi070 bash[22844]: cluster 2024-09-18T08:22:49.032409+0000 mon.a (mon.0) 417 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-18T08:22:50.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:50 smithi070 bash[22844]: audit 2024-09-18T08:22:49.032853+0000 mon.a (mon.0) 418 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:50.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:50 smithi070 bash[22844]: audit 2024-09-18T08:22:49.032853+0000 mon.a (mon.0) 418 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:50.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:50 smithi070 bash[22844]: audit 2024-09-18T08:22:49.033364+0000 mon.b (mon.2) 10 : audit [INF] from='osd.2 [v2:172.21.15.86:6800/2009091660,v1:172.21.15.86:6801/2009091660]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-18T08:22:50.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:50 smithi070 bash[22844]: audit 2024-09-18T08:22:49.033364+0000 mon.b (mon.2) 10 : audit [INF] from='osd.2 [v2:172.21.15.86:6800/2009091660,v1:172.21.15.86:6801/2009091660]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-18T08:22:50.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:50 smithi070 bash[22844]: audit 2024-09-18T08:22:49.034321+0000 mon.a (mon.0) 419 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-18T08:22:50.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:50 smithi070 bash[22844]: audit 2024-09-18T08:22:49.034321+0000 mon.a (mon.0) 419 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-18T08:22:50.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:50 smithi172 bash[24990]: cluster 2024-09-18T08:22:48.886987+0000 mgr.a (mgr.14152) 188 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:50.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:50 smithi172 bash[24990]: cluster 2024-09-18T08:22:48.886987+0000 mgr.a (mgr.14152) 188 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:50.485 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:50 smithi172 bash[24990]: audit 2024-09-18T08:22:49.028069+0000 mon.a (mon.0) 416 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-18T08:22:50.485 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:50 smithi172 bash[24990]: audit 2024-09-18T08:22:49.028069+0000 mon.a (mon.0) 416 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-18T08:22:50.485 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:50 smithi172 bash[24990]: cluster 2024-09-18T08:22:49.032409+0000 mon.a (mon.0) 417 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-18T08:22:50.485 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:50 smithi172 bash[24990]: cluster 2024-09-18T08:22:49.032409+0000 mon.a (mon.0) 417 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-18T08:22:50.485 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:50 smithi172 bash[24990]: audit 2024-09-18T08:22:49.032853+0000 mon.a (mon.0) 418 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:50.486 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:50 smithi172 bash[24990]: audit 2024-09-18T08:22:49.032853+0000 mon.a (mon.0) 418 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:50.486 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:50 smithi172 bash[24990]: audit 2024-09-18T08:22:49.033364+0000 mon.b (mon.2) 10 : audit [INF] from='osd.2 [v2:172.21.15.86:6800/2009091660,v1:172.21.15.86:6801/2009091660]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-18T08:22:50.486 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:50 smithi172 bash[24990]: audit 2024-09-18T08:22:49.033364+0000 mon.b (mon.2) 10 : audit [INF] from='osd.2 [v2:172.21.15.86:6800/2009091660,v1:172.21.15.86:6801/2009091660]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-18T08:22:50.486 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:50 smithi172 bash[24990]: audit 2024-09-18T08:22:49.034321+0000 mon.a (mon.0) 419 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-18T08:22:50.486 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:50 smithi172 bash[24990]: audit 2024-09-18T08:22:49.034321+0000 mon.a (mon.0) 419 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-18T08:22:51.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:51 smithi086 bash[24678]: audit 2024-09-18T08:22:50.030498+0000 mon.a (mon.0) 420 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]}]': finished 2024-09-18T08:22:51.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:51 smithi086 bash[24678]: audit 2024-09-18T08:22:50.030498+0000 mon.a (mon.0) 420 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]}]': finished 2024-09-18T08:22:51.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:51 smithi086 bash[24678]: cluster 2024-09-18T08:22:50.035832+0000 mon.a (mon.0) 421 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-18T08:22:51.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:51 smithi086 bash[24678]: cluster 2024-09-18T08:22:50.035832+0000 mon.a (mon.0) 421 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-18T08:22:51.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:51 smithi086 bash[24678]: audit 2024-09-18T08:22:50.036578+0000 mon.a (mon.0) 422 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:51.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:51 smithi086 bash[24678]: audit 2024-09-18T08:22:50.036578+0000 mon.a (mon.0) 422 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:51.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:51 smithi086 bash[24678]: audit 2024-09-18T08:22:50.046260+0000 mon.a (mon.0) 423 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:51.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:51 smithi086 bash[24678]: audit 2024-09-18T08:22:50.046260+0000 mon.a (mon.0) 423 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:51.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:51 smithi070 bash[22844]: audit 2024-09-18T08:22:50.030498+0000 mon.a (mon.0) 420 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]}]': finished 2024-09-18T08:22:51.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:51 smithi070 bash[22844]: audit 2024-09-18T08:22:50.030498+0000 mon.a (mon.0) 420 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]}]': finished 2024-09-18T08:22:51.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:51 smithi070 bash[22844]: cluster 2024-09-18T08:22:50.035832+0000 mon.a (mon.0) 421 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-18T08:22:51.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:51 smithi070 bash[22844]: cluster 2024-09-18T08:22:50.035832+0000 mon.a (mon.0) 421 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-18T08:22:51.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:51 smithi070 bash[22844]: audit 2024-09-18T08:22:50.036578+0000 mon.a (mon.0) 422 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:51.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:51 smithi070 bash[22844]: audit 2024-09-18T08:22:50.036578+0000 mon.a (mon.0) 422 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:51.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:51 smithi070 bash[22844]: audit 2024-09-18T08:22:50.046260+0000 mon.a (mon.0) 423 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:51.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:51 smithi070 bash[22844]: audit 2024-09-18T08:22:50.046260+0000 mon.a (mon.0) 423 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:51.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:51 smithi172 bash[24990]: audit 2024-09-18T08:22:50.030498+0000 mon.a (mon.0) 420 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]}]': finished 2024-09-18T08:22:51.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:51 smithi172 bash[24990]: audit 2024-09-18T08:22:50.030498+0000 mon.a (mon.0) 420 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]}]': finished 2024-09-18T08:22:51.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:51 smithi172 bash[24990]: cluster 2024-09-18T08:22:50.035832+0000 mon.a (mon.0) 421 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-18T08:22:51.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:51 smithi172 bash[24990]: cluster 2024-09-18T08:22:50.035832+0000 mon.a (mon.0) 421 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-18T08:22:51.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:51 smithi172 bash[24990]: audit 2024-09-18T08:22:50.036578+0000 mon.a (mon.0) 422 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:51.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:51 smithi172 bash[24990]: audit 2024-09-18T08:22:50.036578+0000 mon.a (mon.0) 422 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:51.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:51 smithi172 bash[24990]: audit 2024-09-18T08:22:50.046260+0000 mon.a (mon.0) 423 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:51.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:51 smithi172 bash[24990]: audit 2024-09-18T08:22:50.046260+0000 mon.a (mon.0) 423 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:52.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:52 smithi086 bash[24678]: cluster 2024-09-18T08:22:49.053327+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:22:52.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:52 smithi086 bash[24678]: cluster 2024-09-18T08:22:49.053327+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:22:52.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:52 smithi086 bash[24678]: cluster 2024-09-18T08:22:49.053412+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:22:52.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:52 smithi086 bash[24678]: cluster 2024-09-18T08:22:49.053412+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:22:52.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:52 smithi086 bash[24678]: cluster 2024-09-18T08:22:50.887447+0000 mgr.a (mgr.14152) 189 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:52.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:52 smithi086 bash[24678]: cluster 2024-09-18T08:22:50.887447+0000 mgr.a (mgr.14152) 189 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:52.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:52 smithi086 bash[24678]: audit 2024-09-18T08:22:51.045338+0000 mon.a (mon.0) 424 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:52.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:52 smithi086 bash[24678]: audit 2024-09-18T08:22:51.045338+0000 mon.a (mon.0) 424 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:52.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:52 smithi086 bash[24678]: cluster 2024-09-18T08:22:51.053995+0000 mon.a (mon.0) 425 : cluster [INF] osd.2 [v2:172.21.15.86:6800/2009091660,v1:172.21.15.86:6801/2009091660] boot 2024-09-18T08:22:52.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:52 smithi086 bash[24678]: cluster 2024-09-18T08:22:51.053995+0000 mon.a (mon.0) 425 : cluster [INF] osd.2 [v2:172.21.15.86:6800/2009091660,v1:172.21.15.86:6801/2009091660] boot 2024-09-18T08:22:52.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:52 smithi086 bash[24678]: cluster 2024-09-18T08:22:51.054059+0000 mon.a (mon.0) 426 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-18T08:22:52.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:52 smithi086 bash[24678]: cluster 2024-09-18T08:22:51.054059+0000 mon.a (mon.0) 426 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-18T08:22:52.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:52 smithi086 bash[24678]: audit 2024-09-18T08:22:51.054504+0000 mon.a (mon.0) 427 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:52.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:52 smithi086 bash[24678]: audit 2024-09-18T08:22:51.054504+0000 mon.a (mon.0) 427 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:52.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:52 smithi086 bash[24678]: audit 2024-09-18T08:22:51.260127+0000 mon.a (mon.0) 428 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' 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-18T08:22:52.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:52 smithi086 bash[24678]: audit 2024-09-18T08:22:51.260127+0000 mon.a (mon.0) 428 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' 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-18T08:22:52.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:52 smithi070 bash[22844]: cluster 2024-09-18T08:22:49.053327+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:22:52.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:52 smithi070 bash[22844]: cluster 2024-09-18T08:22:49.053327+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:22:52.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:52 smithi070 bash[22844]: cluster 2024-09-18T08:22:49.053412+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:22:52.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:52 smithi070 bash[22844]: cluster 2024-09-18T08:22:49.053412+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:22:52.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:52 smithi070 bash[22844]: cluster 2024-09-18T08:22:50.887447+0000 mgr.a (mgr.14152) 189 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:52.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:52 smithi070 bash[22844]: cluster 2024-09-18T08:22:50.887447+0000 mgr.a (mgr.14152) 189 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:52.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:52 smithi070 bash[22844]: audit 2024-09-18T08:22:51.045338+0000 mon.a (mon.0) 424 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:52.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:52 smithi070 bash[22844]: audit 2024-09-18T08:22:51.045338+0000 mon.a (mon.0) 424 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:52.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:52 smithi070 bash[22844]: cluster 2024-09-18T08:22:51.053995+0000 mon.a (mon.0) 425 : cluster [INF] osd.2 [v2:172.21.15.86:6800/2009091660,v1:172.21.15.86:6801/2009091660] boot 2024-09-18T08:22:52.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:52 smithi070 bash[22844]: cluster 2024-09-18T08:22:51.053995+0000 mon.a (mon.0) 425 : cluster [INF] osd.2 [v2:172.21.15.86:6800/2009091660,v1:172.21.15.86:6801/2009091660] boot 2024-09-18T08:22:52.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:52 smithi070 bash[22844]: cluster 2024-09-18T08:22:51.054059+0000 mon.a (mon.0) 426 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-18T08:22:52.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:52 smithi070 bash[22844]: cluster 2024-09-18T08:22:51.054059+0000 mon.a (mon.0) 426 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-18T08:22:52.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:52 smithi070 bash[22844]: audit 2024-09-18T08:22:51.054504+0000 mon.a (mon.0) 427 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:52.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:52 smithi070 bash[22844]: audit 2024-09-18T08:22:51.054504+0000 mon.a (mon.0) 427 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:52.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:52 smithi070 bash[22844]: audit 2024-09-18T08:22:51.260127+0000 mon.a (mon.0) 428 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' 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-18T08:22:52.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:52 smithi070 bash[22844]: audit 2024-09-18T08:22:51.260127+0000 mon.a (mon.0) 428 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' 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-18T08:22:52.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:52 smithi172 bash[24990]: cluster 2024-09-18T08:22:49.053327+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:22:52.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:52 smithi172 bash[24990]: cluster 2024-09-18T08:22:49.053327+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:22:52.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:52 smithi172 bash[24990]: cluster 2024-09-18T08:22:49.053412+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:22:52.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:52 smithi172 bash[24990]: cluster 2024-09-18T08:22:49.053412+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:22:52.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:52 smithi172 bash[24990]: cluster 2024-09-18T08:22:50.887447+0000 mgr.a (mgr.14152) 189 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:52.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:52 smithi172 bash[24990]: cluster 2024-09-18T08:22:50.887447+0000 mgr.a (mgr.14152) 189 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-18T08:22:52.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:52 smithi172 bash[24990]: audit 2024-09-18T08:22:51.045338+0000 mon.a (mon.0) 424 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:52.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:52 smithi172 bash[24990]: audit 2024-09-18T08:22:51.045338+0000 mon.a (mon.0) 424 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:52.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:52 smithi172 bash[24990]: cluster 2024-09-18T08:22:51.053995+0000 mon.a (mon.0) 425 : cluster [INF] osd.2 [v2:172.21.15.86:6800/2009091660,v1:172.21.15.86:6801/2009091660] boot 2024-09-18T08:22:52.483 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:52 smithi172 bash[24990]: cluster 2024-09-18T08:22:51.053995+0000 mon.a (mon.0) 425 : cluster [INF] osd.2 [v2:172.21.15.86:6800/2009091660,v1:172.21.15.86:6801/2009091660] boot 2024-09-18T08:22:52.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:52 smithi172 bash[24990]: cluster 2024-09-18T08:22:51.054059+0000 mon.a (mon.0) 426 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-18T08:22:52.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:52 smithi172 bash[24990]: cluster 2024-09-18T08:22:51.054059+0000 mon.a (mon.0) 426 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-18T08:22:52.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:52 smithi172 bash[24990]: audit 2024-09-18T08:22:51.054504+0000 mon.a (mon.0) 427 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:52.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:52 smithi172 bash[24990]: audit 2024-09-18T08:22:51.054504+0000 mon.a (mon.0) 427 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-18T08:22:52.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:52 smithi172 bash[24990]: audit 2024-09-18T08:22:51.260127+0000 mon.a (mon.0) 428 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' 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-18T08:22:52.484 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:52 smithi172 bash[24990]: audit 2024-09-18T08:22:51.260127+0000 mon.a (mon.0) 428 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' 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-18T08:22:53.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:53 smithi086 bash[24678]: audit 2024-09-18T08:22:52.059589+0000 mon.a (mon.0) 429 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' 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-18T08:22:53.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:53 smithi086 bash[24678]: audit 2024-09-18T08:22:52.059589+0000 mon.a (mon.0) 429 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' 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-18T08:22:53.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:53 smithi086 bash[24678]: cluster 2024-09-18T08:22:52.064687+0000 mon.a (mon.0) 430 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-18T08:22:53.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:53 smithi086 bash[24678]: cluster 2024-09-18T08:22:52.064687+0000 mon.a (mon.0) 430 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-18T08:22:53.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:53 smithi086 bash[24678]: audit 2024-09-18T08:22:52.067881+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-18T08:22:53.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:53 smithi086 bash[24678]: audit 2024-09-18T08:22:52.067881+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-18T08:22:53.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:53 smithi070 bash[22844]: audit 2024-09-18T08:22:52.059589+0000 mon.a (mon.0) 429 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' 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-18T08:22:53.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:53 smithi070 bash[22844]: audit 2024-09-18T08:22:52.059589+0000 mon.a (mon.0) 429 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' 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-18T08:22:53.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:53 smithi070 bash[22844]: cluster 2024-09-18T08:22:52.064687+0000 mon.a (mon.0) 430 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-18T08:22:53.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:53 smithi070 bash[22844]: cluster 2024-09-18T08:22:52.064687+0000 mon.a (mon.0) 430 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-18T08:22:53.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:53 smithi070 bash[22844]: audit 2024-09-18T08:22:52.067881+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-18T08:22:53.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:53 smithi070 bash[22844]: audit 2024-09-18T08:22:52.067881+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-18T08:22:53.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:53 smithi172 bash[24990]: audit 2024-09-18T08:22:52.059589+0000 mon.a (mon.0) 429 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' 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-18T08:22:53.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:53 smithi172 bash[24990]: audit 2024-09-18T08:22:52.059589+0000 mon.a (mon.0) 429 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' 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-18T08:22:53.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:53 smithi172 bash[24990]: cluster 2024-09-18T08:22:52.064687+0000 mon.a (mon.0) 430 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-18T08:22:53.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:53 smithi172 bash[24990]: cluster 2024-09-18T08:22:52.064687+0000 mon.a (mon.0) 430 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-18T08:22:53.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:53 smithi172 bash[24990]: audit 2024-09-18T08:22:52.067881+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-18T08:22:53.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:53 smithi172 bash[24990]: audit 2024-09-18T08:22:52.067881+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-18T08:22:53.972 INFO:teuthology.orchestra.run.smithi086.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.b/config 2024-09-18T08:22:54.325 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: cluster 2024-09-18T08:22:52.888049+0000 mgr.a (mgr.14152) 190 : cluster [DBG] pgmap v145: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:22:54.326 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: cluster 2024-09-18T08:22:52.888049+0000 mgr.a (mgr.14152) 190 : cluster [DBG] pgmap v145: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:22:54.326 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: cluster 2024-09-18T08:22:53.060314+0000 mon.a (mon.0) 432 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-18T08:22:54.326 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: cluster 2024-09-18T08:22:53.060314+0000 mon.a (mon.0) 432 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-18T08:22:54.326 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.062011+0000 mon.a (mon.0) 433 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-18T08:22:54.326 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.062011+0000 mon.a (mon.0) 433 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-18T08:22:54.326 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: cluster 2024-09-18T08:22:53.067449+0000 mon.a (mon.0) 434 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-18T08:22:54.326 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: cluster 2024-09-18T08:22:53.067449+0000 mon.a (mon.0) 434 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-18T08:22:54.326 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.325042+0000 mon.a (mon.0) 435 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:54.326 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.325042+0000 mon.a (mon.0) 435 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:54.326 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.467829+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:54.326 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.467829+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:54.326 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.470549+0000 mon.a (mon.0) 437 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T08:22:54.327 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.470549+0000 mon.a (mon.0) 437 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T08:22:54.327 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.524433+0000 mon.a (mon.0) 438 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T08:22:54.327 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.524433+0000 mon.a (mon.0) 438 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T08:22:54.327 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.524860+0000 mon.a (mon.0) 439 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:22:54.327 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.524860+0000 mon.a (mon.0) 439 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:22:54.327 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.525141+0000 mon.a (mon.0) 440 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:22:54.327 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.525141+0000 mon.a (mon.0) 440 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:22:54.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.525364+0000 mon.a (mon.0) 441 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:22:54.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.525364+0000 mon.a (mon.0) 441 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:22:54.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.526469+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T08:22:54.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.526469+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T08:22:54.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.527944+0000 mon.a (mon.0) 442 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:22:54.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.527944+0000 mon.a (mon.0) 442 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:22:54.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.528159+0000 mon.a (mon.0) 443 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:22:54.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.528159+0000 mon.a (mon.0) 443 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:22:54.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.528378+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:22:54.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.528378+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:22:54.329 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.583827+0000 mon.c (mon.1) 5 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T08:22:54.329 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.583827+0000 mon.c (mon.1) 5 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T08:22:54.329 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.630222+0000 mon.a (mon.0) 445 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:54.329 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.630222+0000 mon.a (mon.0) 445 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:54.329 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.632912+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T08:22:54.329 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.632912+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T08:22:54.329 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.633669+0000 mon.a (mon.0) 446 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:22:54.329 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.633669+0000 mon.a (mon.0) 446 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:22:54.329 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.634067+0000 mon.a (mon.0) 447 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:22:54.329 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.634067+0000 mon.a (mon.0) 447 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:22:54.329 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.634421+0000 mon.a (mon.0) 448 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:22:54.330 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.634421+0000 mon.a (mon.0) 448 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:22:54.330 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.686708+0000 mon.b (mon.2) 12 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T08:22:54.330 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:54 smithi086 bash[24678]: audit 2024-09-18T08:22:53.686708+0000 mon.b (mon.2) 12 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T08:22:54.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: cluster 2024-09-18T08:22:52.888049+0000 mgr.a (mgr.14152) 190 : cluster [DBG] pgmap v145: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:22:54.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: cluster 2024-09-18T08:22:52.888049+0000 mgr.a (mgr.14152) 190 : cluster [DBG] pgmap v145: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:22:54.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: cluster 2024-09-18T08:22:53.060314+0000 mon.a (mon.0) 432 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-18T08:22:54.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: cluster 2024-09-18T08:22:53.060314+0000 mon.a (mon.0) 432 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-18T08:22:54.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.062011+0000 mon.a (mon.0) 433 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-18T08:22:54.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.062011+0000 mon.a (mon.0) 433 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-18T08:22:54.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: cluster 2024-09-18T08:22:53.067449+0000 mon.a (mon.0) 434 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-18T08:22:54.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: cluster 2024-09-18T08:22:53.067449+0000 mon.a (mon.0) 434 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-18T08:22:54.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.325042+0000 mon.a (mon.0) 435 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:54.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.325042+0000 mon.a (mon.0) 435 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:54.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.467829+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:54.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.467829+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:54.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.470549+0000 mon.a (mon.0) 437 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T08:22:54.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.470549+0000 mon.a (mon.0) 437 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T08:22:54.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.524433+0000 mon.a (mon.0) 438 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T08:22:54.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.524433+0000 mon.a (mon.0) 438 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T08:22:54.482 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.524860+0000 mon.a (mon.0) 439 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:22:54.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.524860+0000 mon.a (mon.0) 439 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:22:54.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.525141+0000 mon.a (mon.0) 440 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:22:54.483 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.525141+0000 mon.a (mon.0) 440 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:22:54.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.525364+0000 mon.a (mon.0) 441 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:22:54.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.525364+0000 mon.a (mon.0) 441 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:22:54.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.526469+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T08:22:54.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.526469+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T08:22:54.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.527944+0000 mon.a (mon.0) 442 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:22:54.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.527944+0000 mon.a (mon.0) 442 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:22:54.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.528159+0000 mon.a (mon.0) 443 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:22:54.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.528159+0000 mon.a (mon.0) 443 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:22:54.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.528378+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:22:54.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.528378+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:22:54.484 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.583827+0000 mon.c (mon.1) 5 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T08:22:54.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.583827+0000 mon.c (mon.1) 5 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T08:22:54.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.630222+0000 mon.a (mon.0) 445 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:54.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.630222+0000 mon.a (mon.0) 445 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:54.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.632912+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T08:22:54.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.632912+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T08:22:54.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.633669+0000 mon.a (mon.0) 446 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:22:54.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.633669+0000 mon.a (mon.0) 446 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:22:54.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.634067+0000 mon.a (mon.0) 447 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:22:54.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.634067+0000 mon.a (mon.0) 447 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:22:54.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.634421+0000 mon.a (mon.0) 448 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:22:54.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.634421+0000 mon.a (mon.0) 448 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:22:54.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.686708+0000 mon.b (mon.2) 12 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T08:22:54.485 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:54 smithi070 bash[22844]: audit 2024-09-18T08:22:53.686708+0000 mon.b (mon.2) 12 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T08:22:54.486 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: cluster 2024-09-18T08:22:52.888049+0000 mgr.a (mgr.14152) 190 : cluster [DBG] pgmap v145: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:22:54.486 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: cluster 2024-09-18T08:22:52.888049+0000 mgr.a (mgr.14152) 190 : cluster [DBG] pgmap v145: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:22:54.486 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: cluster 2024-09-18T08:22:53.060314+0000 mon.a (mon.0) 432 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-18T08:22:54.486 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: cluster 2024-09-18T08:22:53.060314+0000 mon.a (mon.0) 432 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-18T08:22:54.486 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.062011+0000 mon.a (mon.0) 433 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-18T08:22:54.486 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.062011+0000 mon.a (mon.0) 433 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-18T08:22:54.486 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: cluster 2024-09-18T08:22:53.067449+0000 mon.a (mon.0) 434 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-18T08:22:54.486 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: cluster 2024-09-18T08:22:53.067449+0000 mon.a (mon.0) 434 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-18T08:22:54.486 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.325042+0000 mon.a (mon.0) 435 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:54.486 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.325042+0000 mon.a (mon.0) 435 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:54.486 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.467829+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:54.486 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.467829+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:54.487 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.470549+0000 mon.a (mon.0) 437 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T08:22:54.487 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.470549+0000 mon.a (mon.0) 437 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T08:22:54.487 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.524433+0000 mon.a (mon.0) 438 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T08:22:54.487 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.524433+0000 mon.a (mon.0) 438 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T08:22:54.487 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.524860+0000 mon.a (mon.0) 439 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:22:54.487 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.524860+0000 mon.a (mon.0) 439 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:22:54.487 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.525141+0000 mon.a (mon.0) 440 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:22:54.487 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.525141+0000 mon.a (mon.0) 440 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:22:54.487 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.525364+0000 mon.a (mon.0) 441 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:22:54.487 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.525364+0000 mon.a (mon.0) 441 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:22:54.488 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.526469+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T08:22:54.488 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.526469+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T08:22:54.488 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.527944+0000 mon.a (mon.0) 442 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:22:54.488 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.527944+0000 mon.a (mon.0) 442 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:22:54.488 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.528159+0000 mon.a (mon.0) 443 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:22:54.488 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.528159+0000 mon.a (mon.0) 443 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:22:54.488 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.528378+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:22:54.488 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.528378+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:22:54.488 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.583827+0000 mon.c (mon.1) 5 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T08:22:54.488 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.583827+0000 mon.c (mon.1) 5 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T08:22:54.488 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.630222+0000 mon.a (mon.0) 445 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:54.488 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.630222+0000 mon.a (mon.0) 445 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:22:54.489 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.632912+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T08:22:54.489 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.632912+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-18T08:22:54.489 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.633669+0000 mon.a (mon.0) 446 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:22:54.489 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.633669+0000 mon.a (mon.0) 446 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:22:54.489 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.634067+0000 mon.a (mon.0) 447 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:22:54.489 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.634067+0000 mon.a (mon.0) 447 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:22:54.489 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.634421+0000 mon.a (mon.0) 448 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:22:54.489 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.634421+0000 mon.a (mon.0) 448 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-18T08:22:54.489 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.686708+0000 mon.b (mon.2) 12 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T08:22:54.489 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:54 smithi172 bash[24990]: audit 2024-09-18T08:22:53.686708+0000 mon.b (mon.2) 12 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-18T08:22:55.480 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:55 smithi070 bash[22844]: cluster 2024-09-18T08:22:54.104214+0000 mon.a (mon.0) 449 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-18T08:22:55.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:55 smithi070 bash[22844]: cluster 2024-09-18T08:22:54.104214+0000 mon.a (mon.0) 449 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-18T08:22:55.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:55 smithi070 bash[22844]: cluster 2024-09-18T08:22:54.104315+0000 mon.a (mon.0) 450 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-18T08:22:55.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:55 smithi070 bash[22844]: cluster 2024-09-18T08:22:54.104315+0000 mon.a (mon.0) 450 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-18T08:22:55.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:55 smithi172 bash[24990]: cluster 2024-09-18T08:22:54.104214+0000 mon.a (mon.0) 449 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-18T08:22:55.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:55 smithi172 bash[24990]: cluster 2024-09-18T08:22:54.104214+0000 mon.a (mon.0) 449 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-18T08:22:55.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:55 smithi172 bash[24990]: cluster 2024-09-18T08:22:54.104315+0000 mon.a (mon.0) 450 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-18T08:22:55.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:55 smithi172 bash[24990]: cluster 2024-09-18T08:22:54.104315+0000 mon.a (mon.0) 450 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-18T08:22:55.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:55 smithi086 bash[24678]: cluster 2024-09-18T08:22:54.104214+0000 mon.a (mon.0) 449 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-18T08:22:55.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:55 smithi086 bash[24678]: cluster 2024-09-18T08:22:54.104214+0000 mon.a (mon.0) 449 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-18T08:22:55.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:55 smithi086 bash[24678]: cluster 2024-09-18T08:22:54.104315+0000 mon.a (mon.0) 450 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-18T08:22:55.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:55 smithi086 bash[24678]: cluster 2024-09-18T08:22:54.104315+0000 mon.a (mon.0) 450 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-18T08:22:56.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:56 smithi070 bash[22844]: cluster 2024-09-18T08:22:54.888549+0000 mgr.a (mgr.14152) 191 : cluster [DBG] pgmap v148: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:22:56.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:56 smithi070 bash[22844]: cluster 2024-09-18T08:22:54.888549+0000 mgr.a (mgr.14152) 191 : cluster [DBG] pgmap v148: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:22:56.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:56 smithi070 bash[22844]: cluster 2024-09-18T08:22:55.089749+0000 mon.a (mon.0) 451 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-18T08:22:56.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:56 smithi070 bash[22844]: cluster 2024-09-18T08:22:55.089749+0000 mon.a (mon.0) 451 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-18T08:22:56.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:56 smithi070 bash[22844]: cluster 2024-09-18T08:22:55.089792+0000 mon.a (mon.0) 452 : cluster [INF] Cluster is now healthy 2024-09-18T08:22:56.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:56 smithi070 bash[22844]: cluster 2024-09-18T08:22:55.089792+0000 mon.a (mon.0) 452 : cluster [INF] Cluster is now healthy 2024-09-18T08:22:56.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:56 smithi172 bash[24990]: cluster 2024-09-18T08:22:54.888549+0000 mgr.a (mgr.14152) 191 : cluster [DBG] pgmap v148: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:22:56.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:56 smithi172 bash[24990]: cluster 2024-09-18T08:22:54.888549+0000 mgr.a (mgr.14152) 191 : cluster [DBG] pgmap v148: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:22:56.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:56 smithi172 bash[24990]: cluster 2024-09-18T08:22:55.089749+0000 mon.a (mon.0) 451 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-18T08:22:56.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:56 smithi172 bash[24990]: cluster 2024-09-18T08:22:55.089749+0000 mon.a (mon.0) 451 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-18T08:22:56.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:56 smithi172 bash[24990]: cluster 2024-09-18T08:22:55.089792+0000 mon.a (mon.0) 452 : cluster [INF] Cluster is now healthy 2024-09-18T08:22:56.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:56 smithi172 bash[24990]: cluster 2024-09-18T08:22:55.089792+0000 mon.a (mon.0) 452 : cluster [INF] Cluster is now healthy 2024-09-18T08:22:56.496 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:56 smithi086 bash[24678]: cluster 2024-09-18T08:22:54.888549+0000 mgr.a (mgr.14152) 191 : cluster [DBG] pgmap v148: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:22:56.497 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:56 smithi086 bash[24678]: cluster 2024-09-18T08:22:54.888549+0000 mgr.a (mgr.14152) 191 : cluster [DBG] pgmap v148: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:22:56.497 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:56 smithi086 bash[24678]: cluster 2024-09-18T08:22:55.089749+0000 mon.a (mon.0) 451 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-18T08:22:56.497 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:56 smithi086 bash[24678]: cluster 2024-09-18T08:22:55.089749+0000 mon.a (mon.0) 451 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-18T08:22:56.497 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:56 smithi086 bash[24678]: cluster 2024-09-18T08:22:55.089792+0000 mon.a (mon.0) 452 : cluster [INF] Cluster is now healthy 2024-09-18T08:22:56.497 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:56 smithi086 bash[24678]: cluster 2024-09-18T08:22:55.089792+0000 mon.a (mon.0) 452 : cluster [INF] Cluster is now healthy 2024-09-18T08:22:58.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:58 smithi086 bash[24678]: cluster 2024-09-18T08:22:56.889073+0000 mgr.a (mgr.14152) 192 : cluster [DBG] pgmap v149: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:22:58.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:22:58 smithi086 bash[24678]: cluster 2024-09-18T08:22:56.889073+0000 mgr.a (mgr.14152) 192 : cluster [DBG] pgmap v149: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:22:58.480 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:58 smithi070 bash[22844]: cluster 2024-09-18T08:22:56.889073+0000 mgr.a (mgr.14152) 192 : cluster [DBG] pgmap v149: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:22:58.481 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:22:58 smithi070 bash[22844]: cluster 2024-09-18T08:22:56.889073+0000 mgr.a (mgr.14152) 192 : cluster [DBG] pgmap v149: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:22:58.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:58 smithi172 bash[24990]: cluster 2024-09-18T08:22:56.889073+0000 mgr.a (mgr.14152) 192 : cluster [DBG] pgmap v149: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:22:58.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:22:58 smithi172 bash[24990]: cluster 2024-09-18T08:22:56.889073+0000 mgr.a (mgr.14152) 192 : cluster [DBG] pgmap v149: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:00.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:00 smithi070 bash[22844]: cluster 2024-09-18T08:22:58.889726+0000 mgr.a (mgr.14152) 193 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:00.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:00 smithi070 bash[22844]: cluster 2024-09-18T08:22:58.889726+0000 mgr.a (mgr.14152) 193 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:00.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:00 smithi070 bash[22844]: cephadm 2024-09-18T08:22:59.722906+0000 mgr.a (mgr.14152) 194 : cephadm [INF] Detected new or changed devices on smithi086 2024-09-18T08:23:00.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:00 smithi070 bash[22844]: cephadm 2024-09-18T08:22:59.722906+0000 mgr.a (mgr.14152) 194 : cephadm [INF] Detected new or changed devices on smithi086 2024-09-18T08:23:00.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:00 smithi070 bash[22844]: audit 2024-09-18T08:22:59.731416+0000 mon.a (mon.0) 453 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:00.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:00 smithi070 bash[22844]: audit 2024-09-18T08:22:59.731416+0000 mon.a (mon.0) 453 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:00.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:00 smithi070 bash[22844]: audit 2024-09-18T08:22:59.739283+0000 mon.a (mon.0) 454 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:00.985 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:00 smithi070 bash[22844]: audit 2024-09-18T08:22:59.739283+0000 mon.a (mon.0) 454 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:00.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:00 smithi070 bash[22844]: audit 2024-09-18T08:22:59.742024+0000 mon.a (mon.0) 455 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-18T08:23:00.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:00 smithi070 bash[22844]: audit 2024-09-18T08:22:59.742024+0000 mon.a (mon.0) 455 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-18T08:23:00.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:00 smithi070 bash[22844]: cephadm 2024-09-18T08:22:59.743645+0000 mgr.a (mgr.14152) 195 : cephadm [INF] Adjusting osd_memory_target on smithi086 to 17265M 2024-09-18T08:23:00.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:00 smithi070 bash[22844]: cephadm 2024-09-18T08:22:59.743645+0000 mgr.a (mgr.14152) 195 : cephadm [INF] Adjusting osd_memory_target on smithi086 to 17265M 2024-09-18T08:23:00.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:00 smithi070 bash[22844]: audit 2024-09-18T08:22:59.749739+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:00.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:00 smithi070 bash[22844]: audit 2024-09-18T08:22:59.749739+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:00.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:00 smithi070 bash[22844]: audit 2024-09-18T08:22:59.754078+0000 mon.a (mon.0) 457 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:00.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:00 smithi070 bash[22844]: audit 2024-09-18T08:22:59.754078+0000 mon.a (mon.0) 457 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:00.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:00 smithi070 bash[22844]: audit 2024-09-18T08:22:59.755950+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:23:00.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:00 smithi070 bash[22844]: audit 2024-09-18T08:22:59.755950+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:23:00.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:00 smithi070 bash[22844]: audit 2024-09-18T08:22:59.766114+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:00.986 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:00 smithi070 bash[22844]: audit 2024-09-18T08:22:59.766114+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:00.987 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:00 smithi172 bash[24990]: cluster 2024-09-18T08:22:58.889726+0000 mgr.a (mgr.14152) 193 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:00.987 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:00 smithi172 bash[24990]: cluster 2024-09-18T08:22:58.889726+0000 mgr.a (mgr.14152) 193 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:00.987 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:00 smithi172 bash[24990]: cephadm 2024-09-18T08:22:59.722906+0000 mgr.a (mgr.14152) 194 : cephadm [INF] Detected new or changed devices on smithi086 2024-09-18T08:23:00.987 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:00 smithi172 bash[24990]: cephadm 2024-09-18T08:22:59.722906+0000 mgr.a (mgr.14152) 194 : cephadm [INF] Detected new or changed devices on smithi086 2024-09-18T08:23:00.987 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:00 smithi172 bash[24990]: audit 2024-09-18T08:22:59.731416+0000 mon.a (mon.0) 453 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:00.987 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:00 smithi172 bash[24990]: audit 2024-09-18T08:22:59.731416+0000 mon.a (mon.0) 453 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:00.987 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:00 smithi172 bash[24990]: audit 2024-09-18T08:22:59.739283+0000 mon.a (mon.0) 454 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:00.988 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:00 smithi172 bash[24990]: audit 2024-09-18T08:22:59.739283+0000 mon.a (mon.0) 454 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:00.988 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:00 smithi172 bash[24990]: audit 2024-09-18T08:22:59.742024+0000 mon.a (mon.0) 455 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-18T08:23:00.988 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:00 smithi172 bash[24990]: audit 2024-09-18T08:22:59.742024+0000 mon.a (mon.0) 455 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-18T08:23:00.988 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:00 smithi172 bash[24990]: cephadm 2024-09-18T08:22:59.743645+0000 mgr.a (mgr.14152) 195 : cephadm [INF] Adjusting osd_memory_target on smithi086 to 17265M 2024-09-18T08:23:00.988 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:00 smithi172 bash[24990]: cephadm 2024-09-18T08:22:59.743645+0000 mgr.a (mgr.14152) 195 : cephadm [INF] Adjusting osd_memory_target on smithi086 to 17265M 2024-09-18T08:23:00.988 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:00 smithi172 bash[24990]: audit 2024-09-18T08:22:59.749739+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:00.988 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:00 smithi172 bash[24990]: audit 2024-09-18T08:22:59.749739+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:00.988 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:00 smithi172 bash[24990]: audit 2024-09-18T08:22:59.754078+0000 mon.a (mon.0) 457 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:00.988 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:00 smithi172 bash[24990]: audit 2024-09-18T08:22:59.754078+0000 mon.a (mon.0) 457 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:00.988 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:00 smithi172 bash[24990]: audit 2024-09-18T08:22:59.755950+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:23:00.988 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:00 smithi172 bash[24990]: audit 2024-09-18T08:22:59.755950+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:23:00.988 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:00 smithi172 bash[24990]: audit 2024-09-18T08:22:59.766114+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:00.988 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:00 smithi172 bash[24990]: audit 2024-09-18T08:22:59.766114+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:01.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:00 smithi086 bash[24678]: cluster 2024-09-18T08:22:58.889726+0000 mgr.a (mgr.14152) 193 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:01.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:00 smithi086 bash[24678]: cluster 2024-09-18T08:22:58.889726+0000 mgr.a (mgr.14152) 193 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:01.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:00 smithi086 bash[24678]: cephadm 2024-09-18T08:22:59.722906+0000 mgr.a (mgr.14152) 194 : cephadm [INF] Detected new or changed devices on smithi086 2024-09-18T08:23:01.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:00 smithi086 bash[24678]: cephadm 2024-09-18T08:22:59.722906+0000 mgr.a (mgr.14152) 194 : cephadm [INF] Detected new or changed devices on smithi086 2024-09-18T08:23:01.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:00 smithi086 bash[24678]: audit 2024-09-18T08:22:59.731416+0000 mon.a (mon.0) 453 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:01.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:00 smithi086 bash[24678]: audit 2024-09-18T08:22:59.731416+0000 mon.a (mon.0) 453 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:01.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:00 smithi086 bash[24678]: audit 2024-09-18T08:22:59.739283+0000 mon.a (mon.0) 454 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:01.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:00 smithi086 bash[24678]: audit 2024-09-18T08:22:59.739283+0000 mon.a (mon.0) 454 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:01.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:00 smithi086 bash[24678]: audit 2024-09-18T08:22:59.742024+0000 mon.a (mon.0) 455 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-18T08:23:01.091 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:00 smithi086 bash[24678]: audit 2024-09-18T08:22:59.742024+0000 mon.a (mon.0) 455 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-18T08:23:01.091 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:00 smithi086 bash[24678]: cephadm 2024-09-18T08:22:59.743645+0000 mgr.a (mgr.14152) 195 : cephadm [INF] Adjusting osd_memory_target on smithi086 to 17265M 2024-09-18T08:23:01.091 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:00 smithi086 bash[24678]: cephadm 2024-09-18T08:22:59.743645+0000 mgr.a (mgr.14152) 195 : cephadm [INF] Adjusting osd_memory_target on smithi086 to 17265M 2024-09-18T08:23:01.091 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:00 smithi086 bash[24678]: audit 2024-09-18T08:22:59.749739+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:01.091 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:00 smithi086 bash[24678]: audit 2024-09-18T08:22:59.749739+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:01.091 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:00 smithi086 bash[24678]: audit 2024-09-18T08:22:59.754078+0000 mon.a (mon.0) 457 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:01.091 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:00 smithi086 bash[24678]: audit 2024-09-18T08:22:59.754078+0000 mon.a (mon.0) 457 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:01.091 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:00 smithi086 bash[24678]: audit 2024-09-18T08:22:59.755950+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:23:01.091 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:00 smithi086 bash[24678]: audit 2024-09-18T08:22:59.755950+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:23:01.091 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:00 smithi086 bash[24678]: audit 2024-09-18T08:22:59.766114+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:01.091 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:00 smithi086 bash[24678]: audit 2024-09-18T08:22:59.766114+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:02.285 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-18T08:23:02.335 DEBUG:teuthology.orchestra.run.smithi086:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi086:vg_nvme/lv_3 2024-09-18T08:23:02.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:02 smithi172 bash[24990]: cluster 2024-09-18T08:23:00.890376+0000 mgr.a (mgr.14152) 196 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:02.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:02 smithi172 bash[24990]: cluster 2024-09-18T08:23:00.890376+0000 mgr.a (mgr.14152) 196 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:03.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:02 smithi086 bash[24678]: cluster 2024-09-18T08:23:00.890376+0000 mgr.a (mgr.14152) 196 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:03.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:02 smithi086 bash[24678]: cluster 2024-09-18T08:23:00.890376+0000 mgr.a (mgr.14152) 196 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:03.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:02 smithi070 bash[22844]: cluster 2024-09-18T08:23:00.890376+0000 mgr.a (mgr.14152) 196 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:03.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:02 smithi070 bash[22844]: cluster 2024-09-18T08:23:00.890376+0000 mgr.a (mgr.14152) 196 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:05.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:04 smithi086 bash[24678]: cluster 2024-09-18T08:23:02.891026+0000 mgr.a (mgr.14152) 197 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:05.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:04 smithi086 bash[24678]: cluster 2024-09-18T08:23:02.891026+0000 mgr.a (mgr.14152) 197 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:05.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:04 smithi070 bash[22844]: cluster 2024-09-18T08:23:02.891026+0000 mgr.a (mgr.14152) 197 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:05.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:04 smithi070 bash[22844]: cluster 2024-09-18T08:23:02.891026+0000 mgr.a (mgr.14152) 197 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:05.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:04 smithi172 bash[24990]: cluster 2024-09-18T08:23:02.891026+0000 mgr.a (mgr.14152) 197 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:05.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:04 smithi172 bash[24990]: cluster 2024-09-18T08:23:02.891026+0000 mgr.a (mgr.14152) 197 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:07.074 INFO:teuthology.orchestra.run.smithi086.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.b/config 2024-09-18T08:23:07.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:06 smithi086 bash[24678]: cluster 2024-09-18T08:23:04.891705+0000 mgr.a (mgr.14152) 198 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:07.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:06 smithi086 bash[24678]: cluster 2024-09-18T08:23:04.891705+0000 mgr.a (mgr.14152) 198 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:07.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:06 smithi070 bash[22844]: cluster 2024-09-18T08:23:04.891705+0000 mgr.a (mgr.14152) 198 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:07.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:06 smithi070 bash[22844]: cluster 2024-09-18T08:23:04.891705+0000 mgr.a (mgr.14152) 198 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:07.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:06 smithi172 bash[24990]: cluster 2024-09-18T08:23:04.891705+0000 mgr.a (mgr.14152) 198 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:07.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:06 smithi172 bash[24990]: cluster 2024-09-18T08:23:04.891705+0000 mgr.a (mgr.14152) 198 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:09.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:08 smithi086 bash[24678]: cluster 2024-09-18T08:23:06.892318+0000 mgr.a (mgr.14152) 199 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:09.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:08 smithi086 bash[24678]: cluster 2024-09-18T08:23:06.892318+0000 mgr.a (mgr.14152) 199 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:09.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:08 smithi086 bash[24678]: audit 2024-09-18T08:23:08.427264+0000 mon.a (mon.0) 460 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:23:09.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:08 smithi086 bash[24678]: audit 2024-09-18T08:23:08.427264+0000 mon.a (mon.0) 460 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:23:09.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:08 smithi086 bash[24678]: audit 2024-09-18T08:23:08.433256+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:23:09.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:08 smithi086 bash[24678]: audit 2024-09-18T08:23:08.433256+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:23:09.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:08 smithi086 bash[24678]: audit 2024-09-18T08:23:08.434961+0000 mon.a (mon.0) 462 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:09.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:08 smithi086 bash[24678]: audit 2024-09-18T08:23:08.434961+0000 mon.a (mon.0) 462 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:09.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:08 smithi070 bash[22844]: cluster 2024-09-18T08:23:06.892318+0000 mgr.a (mgr.14152) 199 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:09.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:08 smithi070 bash[22844]: cluster 2024-09-18T08:23:06.892318+0000 mgr.a (mgr.14152) 199 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:09.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:08 smithi070 bash[22844]: audit 2024-09-18T08:23:08.427264+0000 mon.a (mon.0) 460 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:23:09.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:08 smithi070 bash[22844]: audit 2024-09-18T08:23:08.427264+0000 mon.a (mon.0) 460 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:23:09.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:08 smithi070 bash[22844]: audit 2024-09-18T08:23:08.433256+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:23:09.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:08 smithi070 bash[22844]: audit 2024-09-18T08:23:08.433256+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:23:09.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:08 smithi070 bash[22844]: audit 2024-09-18T08:23:08.434961+0000 mon.a (mon.0) 462 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:09.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:08 smithi070 bash[22844]: audit 2024-09-18T08:23:08.434961+0000 mon.a (mon.0) 462 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:09.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:08 smithi172 bash[24990]: cluster 2024-09-18T08:23:06.892318+0000 mgr.a (mgr.14152) 199 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:09.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:08 smithi172 bash[24990]: cluster 2024-09-18T08:23:06.892318+0000 mgr.a (mgr.14152) 199 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:09.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:08 smithi172 bash[24990]: audit 2024-09-18T08:23:08.427264+0000 mon.a (mon.0) 460 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:23:09.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:08 smithi172 bash[24990]: audit 2024-09-18T08:23:08.427264+0000 mon.a (mon.0) 460 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:23:09.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:08 smithi172 bash[24990]: audit 2024-09-18T08:23:08.433256+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:23:09.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:08 smithi172 bash[24990]: audit 2024-09-18T08:23:08.433256+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:23:09.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:08 smithi172 bash[24990]: audit 2024-09-18T08:23:08.434961+0000 mon.a (mon.0) 462 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:09.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:08 smithi172 bash[24990]: audit 2024-09-18T08:23:08.434961+0000 mon.a (mon.0) 462 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:10.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:09 smithi086 bash[24678]: audit 2024-09-18T08:23:08.420822+0000 mgr.a (mgr.14152) 200 : audit [DBG] from='client.24173 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi086:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:23:10.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:09 smithi086 bash[24678]: audit 2024-09-18T08:23:08.420822+0000 mgr.a (mgr.14152) 200 : audit [DBG] from='client.24173 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi086:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:23:10.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:09 smithi070 bash[22844]: audit 2024-09-18T08:23:08.420822+0000 mgr.a (mgr.14152) 200 : audit [DBG] from='client.24173 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi086:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:23:10.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:09 smithi070 bash[22844]: audit 2024-09-18T08:23:08.420822+0000 mgr.a (mgr.14152) 200 : audit [DBG] from='client.24173 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi086:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:23:10.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:09 smithi172 bash[24990]: audit 2024-09-18T08:23:08.420822+0000 mgr.a (mgr.14152) 200 : audit [DBG] from='client.24173 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi086:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:23:10.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:09 smithi172 bash[24990]: audit 2024-09-18T08:23:08.420822+0000 mgr.a (mgr.14152) 200 : audit [DBG] from='client.24173 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi086:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:23:11.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:10 smithi086 bash[24678]: cluster 2024-09-18T08:23:08.892867+0000 mgr.a (mgr.14152) 201 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:11.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:10 smithi086 bash[24678]: cluster 2024-09-18T08:23:08.892867+0000 mgr.a (mgr.14152) 201 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:11.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:10 smithi070 bash[22844]: cluster 2024-09-18T08:23:08.892867+0000 mgr.a (mgr.14152) 201 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:11.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:10 smithi070 bash[22844]: cluster 2024-09-18T08:23:08.892867+0000 mgr.a (mgr.14152) 201 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:11.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:10 smithi172 bash[24990]: cluster 2024-09-18T08:23:08.892867+0000 mgr.a (mgr.14152) 201 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:11.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:10 smithi172 bash[24990]: cluster 2024-09-18T08:23:08.892867+0000 mgr.a (mgr.14152) 201 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:13.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:12 smithi086 bash[24678]: cluster 2024-09-18T08:23:10.893379+0000 mgr.a (mgr.14152) 202 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:13.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:12 smithi086 bash[24678]: cluster 2024-09-18T08:23:10.893379+0000 mgr.a (mgr.14152) 202 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:13.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:12 smithi070 bash[22844]: cluster 2024-09-18T08:23:10.893379+0000 mgr.a (mgr.14152) 202 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:13.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:12 smithi070 bash[22844]: cluster 2024-09-18T08:23:10.893379+0000 mgr.a (mgr.14152) 202 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:13.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:12 smithi172 bash[24990]: cluster 2024-09-18T08:23:10.893379+0000 mgr.a (mgr.14152) 202 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:13.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:12 smithi172 bash[24990]: cluster 2024-09-18T08:23:10.893379+0000 mgr.a (mgr.14152) 202 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:15.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:14 smithi086 bash[24678]: cluster 2024-09-18T08:23:12.893942+0000 mgr.a (mgr.14152) 203 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:15.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:14 smithi086 bash[24678]: cluster 2024-09-18T08:23:12.893942+0000 mgr.a (mgr.14152) 203 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:15.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:14 smithi070 bash[22844]: cluster 2024-09-18T08:23:12.893942+0000 mgr.a (mgr.14152) 203 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:15.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:14 smithi070 bash[22844]: cluster 2024-09-18T08:23:12.893942+0000 mgr.a (mgr.14152) 203 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:15.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:14 smithi172 bash[24990]: cluster 2024-09-18T08:23:12.893942+0000 mgr.a (mgr.14152) 203 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:15.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:14 smithi172 bash[24990]: cluster 2024-09-18T08:23:12.893942+0000 mgr.a (mgr.14152) 203 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:17.026 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:16 smithi070 bash[22844]: cluster 2024-09-18T08:23:14.894491+0000 mgr.a (mgr.14152) 204 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:17.026 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:16 smithi070 bash[22844]: cluster 2024-09-18T08:23:14.894491+0000 mgr.a (mgr.14152) 204 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:17.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:16 smithi086 bash[24678]: cluster 2024-09-18T08:23:14.894491+0000 mgr.a (mgr.14152) 204 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:17.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:16 smithi086 bash[24678]: cluster 2024-09-18T08:23:14.894491+0000 mgr.a (mgr.14152) 204 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:17.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:16 smithi172 bash[24990]: cluster 2024-09-18T08:23:14.894491+0000 mgr.a (mgr.14152) 204 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:17.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:16 smithi172 bash[24990]: cluster 2024-09-18T08:23:14.894491+0000 mgr.a (mgr.14152) 204 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:18.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:17 smithi086 bash[24678]: audit 2024-09-18T08:23:16.953394+0000 mon.b (mon.2) 13 : audit [INF] from='client.? 172.21.15.86:0/1387551653' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8b4785a4-6dad-4b2a-8bf2-2485b46f55cf"} : dispatch 2024-09-18T08:23:18.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:17 smithi086 bash[24678]: audit 2024-09-18T08:23:16.953394+0000 mon.b (mon.2) 13 : audit [INF] from='client.? 172.21.15.86:0/1387551653' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8b4785a4-6dad-4b2a-8bf2-2485b46f55cf"} : dispatch 2024-09-18T08:23:18.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:17 smithi086 bash[24678]: audit 2024-09-18T08:23:16.954677+0000 mon.a (mon.0) 463 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8b4785a4-6dad-4b2a-8bf2-2485b46f55cf"} : dispatch 2024-09-18T08:23:18.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:17 smithi086 bash[24678]: audit 2024-09-18T08:23:16.954677+0000 mon.a (mon.0) 463 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8b4785a4-6dad-4b2a-8bf2-2485b46f55cf"} : dispatch 2024-09-18T08:23:18.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:17 smithi086 bash[24678]: audit 2024-09-18T08:23:16.958254+0000 mon.a (mon.0) 464 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8b4785a4-6dad-4b2a-8bf2-2485b46f55cf"}]': finished 2024-09-18T08:23:18.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:17 smithi086 bash[24678]: audit 2024-09-18T08:23:16.958254+0000 mon.a (mon.0) 464 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8b4785a4-6dad-4b2a-8bf2-2485b46f55cf"}]': finished 2024-09-18T08:23:18.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:17 smithi086 bash[24678]: cluster 2024-09-18T08:23:16.963523+0000 mon.a (mon.0) 465 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-18T08:23:18.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:17 smithi086 bash[24678]: cluster 2024-09-18T08:23:16.963523+0000 mon.a (mon.0) 465 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-18T08:23:18.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:17 smithi086 bash[24678]: audit 2024-09-18T08:23:16.963927+0000 mon.a (mon.0) 466 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:18.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:17 smithi086 bash[24678]: audit 2024-09-18T08:23:16.963927+0000 mon.a (mon.0) 466 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:18.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:17 smithi086 bash[24678]: audit 2024-09-18T08:23:17.593000+0000 mon.b (mon.2) 14 : audit [DBG] from='client.? 172.21.15.86:0/1611253528' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:23:18.091 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:17 smithi086 bash[24678]: audit 2024-09-18T08:23:17.593000+0000 mon.b (mon.2) 14 : audit [DBG] from='client.? 172.21.15.86:0/1611253528' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:23:18.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:17 smithi070 bash[22844]: audit 2024-09-18T08:23:16.953394+0000 mon.b (mon.2) 13 : audit [INF] from='client.? 172.21.15.86:0/1387551653' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8b4785a4-6dad-4b2a-8bf2-2485b46f55cf"} : dispatch 2024-09-18T08:23:18.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:17 smithi070 bash[22844]: audit 2024-09-18T08:23:16.953394+0000 mon.b (mon.2) 13 : audit [INF] from='client.? 172.21.15.86:0/1387551653' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8b4785a4-6dad-4b2a-8bf2-2485b46f55cf"} : dispatch 2024-09-18T08:23:18.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:17 smithi070 bash[22844]: audit 2024-09-18T08:23:16.954677+0000 mon.a (mon.0) 463 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8b4785a4-6dad-4b2a-8bf2-2485b46f55cf"} : dispatch 2024-09-18T08:23:18.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:17 smithi070 bash[22844]: audit 2024-09-18T08:23:16.954677+0000 mon.a (mon.0) 463 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8b4785a4-6dad-4b2a-8bf2-2485b46f55cf"} : dispatch 2024-09-18T08:23:18.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:17 smithi070 bash[22844]: audit 2024-09-18T08:23:16.958254+0000 mon.a (mon.0) 464 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8b4785a4-6dad-4b2a-8bf2-2485b46f55cf"}]': finished 2024-09-18T08:23:18.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:17 smithi070 bash[22844]: audit 2024-09-18T08:23:16.958254+0000 mon.a (mon.0) 464 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8b4785a4-6dad-4b2a-8bf2-2485b46f55cf"}]': finished 2024-09-18T08:23:18.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:17 smithi070 bash[22844]: cluster 2024-09-18T08:23:16.963523+0000 mon.a (mon.0) 465 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-18T08:23:18.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:17 smithi070 bash[22844]: cluster 2024-09-18T08:23:16.963523+0000 mon.a (mon.0) 465 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-18T08:23:18.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:17 smithi070 bash[22844]: audit 2024-09-18T08:23:16.963927+0000 mon.a (mon.0) 466 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:18.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:17 smithi070 bash[22844]: audit 2024-09-18T08:23:16.963927+0000 mon.a (mon.0) 466 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:18.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:17 smithi070 bash[22844]: audit 2024-09-18T08:23:17.593000+0000 mon.b (mon.2) 14 : audit [DBG] from='client.? 172.21.15.86:0/1611253528' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:23:18.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:17 smithi070 bash[22844]: audit 2024-09-18T08:23:17.593000+0000 mon.b (mon.2) 14 : audit [DBG] from='client.? 172.21.15.86:0/1611253528' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:23:18.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:17 smithi172 bash[24990]: audit 2024-09-18T08:23:16.953394+0000 mon.b (mon.2) 13 : audit [INF] from='client.? 172.21.15.86:0/1387551653' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8b4785a4-6dad-4b2a-8bf2-2485b46f55cf"} : dispatch 2024-09-18T08:23:18.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:17 smithi172 bash[24990]: audit 2024-09-18T08:23:16.953394+0000 mon.b (mon.2) 13 : audit [INF] from='client.? 172.21.15.86:0/1387551653' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8b4785a4-6dad-4b2a-8bf2-2485b46f55cf"} : dispatch 2024-09-18T08:23:18.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:17 smithi172 bash[24990]: audit 2024-09-18T08:23:16.954677+0000 mon.a (mon.0) 463 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8b4785a4-6dad-4b2a-8bf2-2485b46f55cf"} : dispatch 2024-09-18T08:23:18.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:17 smithi172 bash[24990]: audit 2024-09-18T08:23:16.954677+0000 mon.a (mon.0) 463 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8b4785a4-6dad-4b2a-8bf2-2485b46f55cf"} : dispatch 2024-09-18T08:23:18.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:17 smithi172 bash[24990]: audit 2024-09-18T08:23:16.958254+0000 mon.a (mon.0) 464 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8b4785a4-6dad-4b2a-8bf2-2485b46f55cf"}]': finished 2024-09-18T08:23:18.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:17 smithi172 bash[24990]: audit 2024-09-18T08:23:16.958254+0000 mon.a (mon.0) 464 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8b4785a4-6dad-4b2a-8bf2-2485b46f55cf"}]': finished 2024-09-18T08:23:18.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:17 smithi172 bash[24990]: cluster 2024-09-18T08:23:16.963523+0000 mon.a (mon.0) 465 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-18T08:23:18.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:17 smithi172 bash[24990]: cluster 2024-09-18T08:23:16.963523+0000 mon.a (mon.0) 465 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-18T08:23:18.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:17 smithi172 bash[24990]: audit 2024-09-18T08:23:16.963927+0000 mon.a (mon.0) 466 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:18.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:17 smithi172 bash[24990]: audit 2024-09-18T08:23:16.963927+0000 mon.a (mon.0) 466 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:18.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:17 smithi172 bash[24990]: audit 2024-09-18T08:23:17.593000+0000 mon.b (mon.2) 14 : audit [DBG] from='client.? 172.21.15.86:0/1611253528' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:23:18.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:17 smithi172 bash[24990]: audit 2024-09-18T08:23:17.593000+0000 mon.b (mon.2) 14 : audit [DBG] from='client.? 172.21.15.86:0/1611253528' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:23:19.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:18 smithi086 bash[24678]: cluster 2024-09-18T08:23:16.895069+0000 mgr.a (mgr.14152) 205 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:19.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:18 smithi086 bash[24678]: cluster 2024-09-18T08:23:16.895069+0000 mgr.a (mgr.14152) 205 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:19.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:18 smithi070 bash[22844]: cluster 2024-09-18T08:23:16.895069+0000 mgr.a (mgr.14152) 205 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:19.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:18 smithi070 bash[22844]: cluster 2024-09-18T08:23:16.895069+0000 mgr.a (mgr.14152) 205 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:19.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:18 smithi172 bash[24990]: cluster 2024-09-18T08:23:16.895069+0000 mgr.a (mgr.14152) 205 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:19.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:18 smithi172 bash[24990]: cluster 2024-09-18T08:23:16.895069+0000 mgr.a (mgr.14152) 205 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:21.036 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:20 smithi086 bash[24678]: cluster 2024-09-18T08:23:18.895752+0000 mgr.a (mgr.14152) 206 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:21.036 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:20 smithi086 bash[24678]: cluster 2024-09-18T08:23:18.895752+0000 mgr.a (mgr.14152) 206 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:21.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:20 smithi070 bash[22844]: cluster 2024-09-18T08:23:18.895752+0000 mgr.a (mgr.14152) 206 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:21.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:20 smithi070 bash[22844]: cluster 2024-09-18T08:23:18.895752+0000 mgr.a (mgr.14152) 206 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:21.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:20 smithi172 bash[24990]: cluster 2024-09-18T08:23:18.895752+0000 mgr.a (mgr.14152) 206 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:21.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:20 smithi172 bash[24990]: cluster 2024-09-18T08:23:18.895752+0000 mgr.a (mgr.14152) 206 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:23.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:22 smithi086 bash[24678]: cluster 2024-09-18T08:23:20.896344+0000 mgr.a (mgr.14152) 207 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:23.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:22 smithi086 bash[24678]: cluster 2024-09-18T08:23:20.896344+0000 mgr.a (mgr.14152) 207 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:23.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:22 smithi070 bash[22844]: cluster 2024-09-18T08:23:20.896344+0000 mgr.a (mgr.14152) 207 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:23.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:22 smithi070 bash[22844]: cluster 2024-09-18T08:23:20.896344+0000 mgr.a (mgr.14152) 207 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:23.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:22 smithi172 bash[24990]: cluster 2024-09-18T08:23:20.896344+0000 mgr.a (mgr.14152) 207 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:23.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:22 smithi172 bash[24990]: cluster 2024-09-18T08:23:20.896344+0000 mgr.a (mgr.14152) 207 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:25.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:24 smithi086 bash[24678]: cluster 2024-09-18T08:23:22.897023+0000 mgr.a (mgr.14152) 208 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:25.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:24 smithi086 bash[24678]: cluster 2024-09-18T08:23:22.897023+0000 mgr.a (mgr.14152) 208 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:25.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:24 smithi070 bash[22844]: cluster 2024-09-18T08:23:22.897023+0000 mgr.a (mgr.14152) 208 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:25.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:24 smithi070 bash[22844]: cluster 2024-09-18T08:23:22.897023+0000 mgr.a (mgr.14152) 208 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:25.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:24 smithi172 bash[24990]: cluster 2024-09-18T08:23:22.897023+0000 mgr.a (mgr.14152) 208 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:25.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:24 smithi172 bash[24990]: cluster 2024-09-18T08:23:22.897023+0000 mgr.a (mgr.14152) 208 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:27.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:26 smithi086 bash[24678]: cluster 2024-09-18T08:23:24.897717+0000 mgr.a (mgr.14152) 209 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:27.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:26 smithi086 bash[24678]: cluster 2024-09-18T08:23:24.897717+0000 mgr.a (mgr.14152) 209 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:27.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:26 smithi070 bash[22844]: cluster 2024-09-18T08:23:24.897717+0000 mgr.a (mgr.14152) 209 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:27.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:26 smithi070 bash[22844]: cluster 2024-09-18T08:23:24.897717+0000 mgr.a (mgr.14152) 209 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:27.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:26 smithi172 bash[24990]: cluster 2024-09-18T08:23:24.897717+0000 mgr.a (mgr.14152) 209 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:27.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:26 smithi172 bash[24990]: cluster 2024-09-18T08:23:24.897717+0000 mgr.a (mgr.14152) 209 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:29.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:28 smithi086 bash[24678]: cluster 2024-09-18T08:23:26.898361+0000 mgr.a (mgr.14152) 210 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:29.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:28 smithi086 bash[24678]: cluster 2024-09-18T08:23:26.898361+0000 mgr.a (mgr.14152) 210 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:29.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:28 smithi070 bash[22844]: cluster 2024-09-18T08:23:26.898361+0000 mgr.a (mgr.14152) 210 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:29.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:28 smithi070 bash[22844]: cluster 2024-09-18T08:23:26.898361+0000 mgr.a (mgr.14152) 210 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:29.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:28 smithi172 bash[24990]: cluster 2024-09-18T08:23:26.898361+0000 mgr.a (mgr.14152) 210 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:29.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:28 smithi172 bash[24990]: cluster 2024-09-18T08:23:26.898361+0000 mgr.a (mgr.14152) 210 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:31.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:30 smithi086 bash[24678]: cluster 2024-09-18T08:23:28.898938+0000 mgr.a (mgr.14152) 211 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:31.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:30 smithi086 bash[24678]: cluster 2024-09-18T08:23:28.898938+0000 mgr.a (mgr.14152) 211 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:31.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:30 smithi086 bash[24678]: audit 2024-09-18T08:23:30.538717+0000 mon.a (mon.0) 467 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-18T08:23:31.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:30 smithi086 bash[24678]: audit 2024-09-18T08:23:30.538717+0000 mon.a (mon.0) 467 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-18T08:23:31.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:30 smithi086 bash[24678]: audit 2024-09-18T08:23:30.540421+0000 mon.a (mon.0) 468 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:31.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:30 smithi086 bash[24678]: audit 2024-09-18T08:23:30.540421+0000 mon.a (mon.0) 468 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:31.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:30 smithi070 bash[22844]: cluster 2024-09-18T08:23:28.898938+0000 mgr.a (mgr.14152) 211 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:31.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:30 smithi070 bash[22844]: cluster 2024-09-18T08:23:28.898938+0000 mgr.a (mgr.14152) 211 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:31.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:30 smithi070 bash[22844]: audit 2024-09-18T08:23:30.538717+0000 mon.a (mon.0) 467 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-18T08:23:31.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:30 smithi070 bash[22844]: audit 2024-09-18T08:23:30.538717+0000 mon.a (mon.0) 467 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-18T08:23:31.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:30 smithi070 bash[22844]: audit 2024-09-18T08:23:30.540421+0000 mon.a (mon.0) 468 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:31.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:30 smithi070 bash[22844]: audit 2024-09-18T08:23:30.540421+0000 mon.a (mon.0) 468 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:31.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:30 smithi172 bash[24990]: cluster 2024-09-18T08:23:28.898938+0000 mgr.a (mgr.14152) 211 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:31.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:30 smithi172 bash[24990]: cluster 2024-09-18T08:23:28.898938+0000 mgr.a (mgr.14152) 211 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:31.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:30 smithi172 bash[24990]: audit 2024-09-18T08:23:30.538717+0000 mon.a (mon.0) 467 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-18T08:23:31.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:30 smithi172 bash[24990]: audit 2024-09-18T08:23:30.538717+0000 mon.a (mon.0) 467 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-18T08:23:31.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:30 smithi172 bash[24990]: audit 2024-09-18T08:23:30.540421+0000 mon.a (mon.0) 468 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:31.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:30 smithi172 bash[24990]: audit 2024-09-18T08:23:30.540421+0000 mon.a (mon.0) 468 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:32.070 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:31 smithi086 bash[24678]: cephadm 2024-09-18T08:23:30.541958+0000 mgr.a (mgr.14152) 212 : cephadm [INF] Deploying daemon osd.3 on smithi086 2024-09-18T08:23:32.071 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:31 smithi086 bash[24678]: cephadm 2024-09-18T08:23:30.541958+0000 mgr.a (mgr.14152) 212 : cephadm [INF] Deploying daemon osd.3 on smithi086 2024-09-18T08:23:32.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:31 smithi070 bash[22844]: cephadm 2024-09-18T08:23:30.541958+0000 mgr.a (mgr.14152) 212 : cephadm [INF] Deploying daemon osd.3 on smithi086 2024-09-18T08:23:32.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:31 smithi070 bash[22844]: cephadm 2024-09-18T08:23:30.541958+0000 mgr.a (mgr.14152) 212 : cephadm [INF] Deploying daemon osd.3 on smithi086 2024-09-18T08:23:32.231 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:31 smithi172 bash[24990]: cephadm 2024-09-18T08:23:30.541958+0000 mgr.a (mgr.14152) 212 : cephadm [INF] Deploying daemon osd.3 on smithi086 2024-09-18T08:23:32.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:31 smithi172 bash[24990]: cephadm 2024-09-18T08:23:30.541958+0000 mgr.a (mgr.14152) 212 : cephadm [INF] Deploying daemon osd.3 on smithi086 2024-09-18T08:23:33.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:32 smithi086 bash[24678]: cluster 2024-09-18T08:23:30.899595+0000 mgr.a (mgr.14152) 213 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:33.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:32 smithi086 bash[24678]: cluster 2024-09-18T08:23:30.899595+0000 mgr.a (mgr.14152) 213 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:33.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:32 smithi070 bash[22844]: cluster 2024-09-18T08:23:30.899595+0000 mgr.a (mgr.14152) 213 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:33.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:32 smithi070 bash[22844]: cluster 2024-09-18T08:23:30.899595+0000 mgr.a (mgr.14152) 213 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:33.231 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:32 smithi172 bash[24990]: cluster 2024-09-18T08:23:30.899595+0000 mgr.a (mgr.14152) 213 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:33.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:32 smithi172 bash[24990]: cluster 2024-09-18T08:23:30.899595+0000 mgr.a (mgr.14152) 213 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:35.089 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 18 08:23:34 smithi086 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:23:35.090 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 18 08:23:34 smithi086 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:23:35.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:34 smithi086 bash[24678]: cluster 2024-09-18T08:23:32.900171+0000 mgr.a (mgr.14152) 214 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:35.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:34 smithi086 bash[24678]: cluster 2024-09-18T08:23:32.900171+0000 mgr.a (mgr.14152) 214 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:35.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:34 smithi086 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:23:35.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:34 smithi070 bash[22844]: cluster 2024-09-18T08:23:32.900171+0000 mgr.a (mgr.14152) 214 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:35.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:34 smithi070 bash[22844]: cluster 2024-09-18T08:23:32.900171+0000 mgr.a (mgr.14152) 214 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:35.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:34 smithi172 bash[24990]: cluster 2024-09-18T08:23:32.900171+0000 mgr.a (mgr.14152) 214 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:35.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:34 smithi172 bash[24990]: cluster 2024-09-18T08:23:32.900171+0000 mgr.a (mgr.14152) 214 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:35.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:35 smithi086 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:23:35.590 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 18 08:23:35 smithi086 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:23:35.591 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 18 08:23:35 smithi086 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:23:36.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:35 smithi086 bash[24678]: audit 2024-09-18T08:23:35.383332+0000 mon.a (mon.0) 469 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:23:36.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:35 smithi086 bash[24678]: audit 2024-09-18T08:23:35.383332+0000 mon.a (mon.0) 469 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:23:36.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:35 smithi086 bash[24678]: audit 2024-09-18T08:23:35.388963+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:36.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:35 smithi086 bash[24678]: audit 2024-09-18T08:23:35.388963+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:36.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:35 smithi086 bash[24678]: audit 2024-09-18T08:23:35.397304+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:36.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:35 smithi086 bash[24678]: audit 2024-09-18T08:23:35.397304+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:36.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:35 smithi070 bash[22844]: audit 2024-09-18T08:23:35.383332+0000 mon.a (mon.0) 469 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:23:36.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:35 smithi070 bash[22844]: audit 2024-09-18T08:23:35.383332+0000 mon.a (mon.0) 469 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:23:36.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:35 smithi070 bash[22844]: audit 2024-09-18T08:23:35.388963+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:36.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:35 smithi070 bash[22844]: audit 2024-09-18T08:23:35.388963+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:36.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:35 smithi070 bash[22844]: audit 2024-09-18T08:23:35.397304+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:36.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:35 smithi070 bash[22844]: audit 2024-09-18T08:23:35.397304+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:36.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:35 smithi172 bash[24990]: audit 2024-09-18T08:23:35.383332+0000 mon.a (mon.0) 469 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:23:36.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:35 smithi172 bash[24990]: audit 2024-09-18T08:23:35.383332+0000 mon.a (mon.0) 469 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:23:36.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:35 smithi172 bash[24990]: audit 2024-09-18T08:23:35.388963+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:36.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:35 smithi172 bash[24990]: audit 2024-09-18T08:23:35.388963+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:36.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:35 smithi172 bash[24990]: audit 2024-09-18T08:23:35.397304+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:36.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:35 smithi172 bash[24990]: audit 2024-09-18T08:23:35.397304+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:37.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:36 smithi086 bash[24678]: cluster 2024-09-18T08:23:34.900724+0000 mgr.a (mgr.14152) 215 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:37.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:36 smithi086 bash[24678]: cluster 2024-09-18T08:23:34.900724+0000 mgr.a (mgr.14152) 215 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:37.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:36 smithi070 bash[22844]: cluster 2024-09-18T08:23:34.900724+0000 mgr.a (mgr.14152) 215 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:37.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:36 smithi070 bash[22844]: cluster 2024-09-18T08:23:34.900724+0000 mgr.a (mgr.14152) 215 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:37.231 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:36 smithi172 bash[24990]: cluster 2024-09-18T08:23:34.900724+0000 mgr.a (mgr.14152) 215 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:37.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:36 smithi172 bash[24990]: cluster 2024-09-18T08:23:34.900724+0000 mgr.a (mgr.14152) 215 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:39.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:38 smithi086 bash[24678]: cluster 2024-09-18T08:23:36.901231+0000 mgr.a (mgr.14152) 216 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:39.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:38 smithi086 bash[24678]: cluster 2024-09-18T08:23:36.901231+0000 mgr.a (mgr.14152) 216 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:39.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:38 smithi070 bash[22844]: cluster 2024-09-18T08:23:36.901231+0000 mgr.a (mgr.14152) 216 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:39.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:38 smithi070 bash[22844]: cluster 2024-09-18T08:23:36.901231+0000 mgr.a (mgr.14152) 216 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:39.231 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:38 smithi172 bash[24990]: cluster 2024-09-18T08:23:36.901231+0000 mgr.a (mgr.14152) 216 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:39.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:38 smithi172 bash[24990]: cluster 2024-09-18T08:23:36.901231+0000 mgr.a (mgr.14152) 216 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:41.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:40 smithi086 bash[24678]: cluster 2024-09-18T08:23:38.901832+0000 mgr.a (mgr.14152) 217 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:41.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:40 smithi086 bash[24678]: cluster 2024-09-18T08:23:38.901832+0000 mgr.a (mgr.14152) 217 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:41.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:40 smithi070 bash[22844]: cluster 2024-09-18T08:23:38.901832+0000 mgr.a (mgr.14152) 217 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:41.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:40 smithi070 bash[22844]: cluster 2024-09-18T08:23:38.901832+0000 mgr.a (mgr.14152) 217 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:41.231 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:40 smithi172 bash[24990]: cluster 2024-09-18T08:23:38.901832+0000 mgr.a (mgr.14152) 217 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:41.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:40 smithi172 bash[24990]: cluster 2024-09-18T08:23:38.901832+0000 mgr.a (mgr.14152) 217 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:43.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:42 smithi086 bash[24678]: cluster 2024-09-18T08:23:40.902422+0000 mgr.a (mgr.14152) 218 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:43.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:42 smithi086 bash[24678]: cluster 2024-09-18T08:23:40.902422+0000 mgr.a (mgr.14152) 218 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:43.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:42 smithi086 bash[24678]: audit 2024-09-18T08:23:41.976650+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:43.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:42 smithi086 bash[24678]: audit 2024-09-18T08:23:41.976650+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:43.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:42 smithi086 bash[24678]: audit 2024-09-18T08:23:41.985210+0000 mon.a (mon.0) 473 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:43.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:42 smithi086 bash[24678]: audit 2024-09-18T08:23:41.985210+0000 mon.a (mon.0) 473 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:43.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:42 smithi086 bash[24678]: audit 2024-09-18T08:23:41.987416+0000 mon.a (mon.0) 474 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:43.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:42 smithi086 bash[24678]: audit 2024-09-18T08:23:41.987416+0000 mon.a (mon.0) 474 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:43.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:42 smithi086 bash[24678]: audit 2024-09-18T08:23:41.989125+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:23:43.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:42 smithi086 bash[24678]: audit 2024-09-18T08:23:41.989125+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:23:43.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:42 smithi086 bash[24678]: audit 2024-09-18T08:23:41.998733+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:43.091 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:42 smithi086 bash[24678]: audit 2024-09-18T08:23:41.998733+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:43.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:42 smithi070 bash[22844]: cluster 2024-09-18T08:23:40.902422+0000 mgr.a (mgr.14152) 218 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:43.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:42 smithi070 bash[22844]: cluster 2024-09-18T08:23:40.902422+0000 mgr.a (mgr.14152) 218 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:43.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:42 smithi070 bash[22844]: audit 2024-09-18T08:23:41.976650+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:43.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:42 smithi070 bash[22844]: audit 2024-09-18T08:23:41.976650+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:43.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:42 smithi070 bash[22844]: audit 2024-09-18T08:23:41.985210+0000 mon.a (mon.0) 473 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:43.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:42 smithi070 bash[22844]: audit 2024-09-18T08:23:41.985210+0000 mon.a (mon.0) 473 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:43.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:42 smithi070 bash[22844]: audit 2024-09-18T08:23:41.987416+0000 mon.a (mon.0) 474 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:43.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:42 smithi070 bash[22844]: audit 2024-09-18T08:23:41.987416+0000 mon.a (mon.0) 474 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:43.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:42 smithi070 bash[22844]: audit 2024-09-18T08:23:41.989125+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:23:43.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:42 smithi070 bash[22844]: audit 2024-09-18T08:23:41.989125+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:23:43.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:42 smithi070 bash[22844]: audit 2024-09-18T08:23:41.998733+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:43.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:42 smithi070 bash[22844]: audit 2024-09-18T08:23:41.998733+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:43.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:42 smithi172 bash[24990]: cluster 2024-09-18T08:23:40.902422+0000 mgr.a (mgr.14152) 218 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:43.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:42 smithi172 bash[24990]: cluster 2024-09-18T08:23:40.902422+0000 mgr.a (mgr.14152) 218 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:43.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:42 smithi172 bash[24990]: audit 2024-09-18T08:23:41.976650+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:43.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:42 smithi172 bash[24990]: audit 2024-09-18T08:23:41.976650+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:43.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:42 smithi172 bash[24990]: audit 2024-09-18T08:23:41.985210+0000 mon.a (mon.0) 473 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:43.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:42 smithi172 bash[24990]: audit 2024-09-18T08:23:41.985210+0000 mon.a (mon.0) 473 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:43.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:42 smithi172 bash[24990]: audit 2024-09-18T08:23:41.987416+0000 mon.a (mon.0) 474 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:43.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:42 smithi172 bash[24990]: audit 2024-09-18T08:23:41.987416+0000 mon.a (mon.0) 474 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:43.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:42 smithi172 bash[24990]: audit 2024-09-18T08:23:41.989125+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:23:43.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:42 smithi172 bash[24990]: audit 2024-09-18T08:23:41.989125+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:23:43.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:42 smithi172 bash[24990]: audit 2024-09-18T08:23:41.998733+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:43.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:42 smithi172 bash[24990]: audit 2024-09-18T08:23:41.998733+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:45.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:44 smithi070 bash[22844]: cluster 2024-09-18T08:23:42.903072+0000 mgr.a (mgr.14152) 219 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:45.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:44 smithi070 bash[22844]: cluster 2024-09-18T08:23:42.903072+0000 mgr.a (mgr.14152) 219 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:45.231 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:44 smithi172 bash[24990]: cluster 2024-09-18T08:23:42.903072+0000 mgr.a (mgr.14152) 219 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:45.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:44 smithi172 bash[24990]: cluster 2024-09-18T08:23:42.903072+0000 mgr.a (mgr.14152) 219 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:45.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:44 smithi086 bash[24678]: cluster 2024-09-18T08:23:42.903072+0000 mgr.a (mgr.14152) 219 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:45.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:44 smithi086 bash[24678]: cluster 2024-09-18T08:23:42.903072+0000 mgr.a (mgr.14152) 219 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:47.121 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:46 smithi086 bash[24678]: cluster 2024-09-18T08:23:44.903637+0000 mgr.a (mgr.14152) 220 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:47.121 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:46 smithi086 bash[24678]: cluster 2024-09-18T08:23:44.903637+0000 mgr.a (mgr.14152) 220 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:47.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:46 smithi070 bash[22844]: cluster 2024-09-18T08:23:44.903637+0000 mgr.a (mgr.14152) 220 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:47.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:46 smithi070 bash[22844]: cluster 2024-09-18T08:23:44.903637+0000 mgr.a (mgr.14152) 220 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:47.231 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:46 smithi172 bash[24990]: cluster 2024-09-18T08:23:44.903637+0000 mgr.a (mgr.14152) 220 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:47.231 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:46 smithi172 bash[24990]: cluster 2024-09-18T08:23:44.903637+0000 mgr.a (mgr.14152) 220 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:47.608 INFO:teuthology.orchestra.run.smithi086.stdout:Created osd(s) 3 on host 'smithi086' 2024-09-18T08:23:47.889 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:47 smithi086 bash[24678]: audit 2024-09-18T08:23:47.084319+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.86:6808/651378475,v1:172.21.15.86:6809/651378475]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-18T08:23:47.889 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:47 smithi086 bash[24678]: audit 2024-09-18T08:23:47.084319+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.86:6808/651378475,v1:172.21.15.86:6809/651378475]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-18T08:23:47.889 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:47 smithi086 bash[24678]: audit 2024-09-18T08:23:47.085745+0000 mon.a (mon.0) 477 : audit [INF] from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-18T08:23:47.889 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:47 smithi086 bash[24678]: audit 2024-09-18T08:23:47.085745+0000 mon.a (mon.0) 477 : audit [INF] from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-18T08:23:47.889 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:47 smithi086 bash[24678]: audit 2024-09-18T08:23:47.591645+0000 mon.a (mon.0) 478 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:23:47.889 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:47 smithi086 bash[24678]: audit 2024-09-18T08:23:47.591645+0000 mon.a (mon.0) 478 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:23:47.889 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:47 smithi086 bash[24678]: audit 2024-09-18T08:23:47.599027+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:47.889 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:47 smithi086 bash[24678]: audit 2024-09-18T08:23:47.599027+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:47.890 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:47 smithi086 bash[24678]: audit 2024-09-18T08:23:47.607029+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:47.890 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:47 smithi086 bash[24678]: audit 2024-09-18T08:23:47.607029+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:48.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:47 smithi070 bash[22844]: audit 2024-09-18T08:23:47.084319+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.86:6808/651378475,v1:172.21.15.86:6809/651378475]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-18T08:23:48.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:47 smithi070 bash[22844]: audit 2024-09-18T08:23:47.084319+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.86:6808/651378475,v1:172.21.15.86:6809/651378475]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-18T08:23:48.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:47 smithi070 bash[22844]: audit 2024-09-18T08:23:47.085745+0000 mon.a (mon.0) 477 : audit [INF] from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-18T08:23:48.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:47 smithi070 bash[22844]: audit 2024-09-18T08:23:47.085745+0000 mon.a (mon.0) 477 : audit [INF] from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-18T08:23:48.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:47 smithi070 bash[22844]: audit 2024-09-18T08:23:47.591645+0000 mon.a (mon.0) 478 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:23:48.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:47 smithi070 bash[22844]: audit 2024-09-18T08:23:47.591645+0000 mon.a (mon.0) 478 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:23:48.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:47 smithi070 bash[22844]: audit 2024-09-18T08:23:47.599027+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:48.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:47 smithi070 bash[22844]: audit 2024-09-18T08:23:47.599027+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:48.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:47 smithi070 bash[22844]: audit 2024-09-18T08:23:47.607029+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:48.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:47 smithi070 bash[22844]: audit 2024-09-18T08:23:47.607029+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:48.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:47 smithi172 bash[24990]: audit 2024-09-18T08:23:47.084319+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.86:6808/651378475,v1:172.21.15.86:6809/651378475]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-18T08:23:48.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:47 smithi172 bash[24990]: audit 2024-09-18T08:23:47.084319+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.86:6808/651378475,v1:172.21.15.86:6809/651378475]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-18T08:23:48.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:47 smithi172 bash[24990]: audit 2024-09-18T08:23:47.085745+0000 mon.a (mon.0) 477 : audit [INF] from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-18T08:23:48.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:47 smithi172 bash[24990]: audit 2024-09-18T08:23:47.085745+0000 mon.a (mon.0) 477 : audit [INF] from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-18T08:23:48.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:47 smithi172 bash[24990]: audit 2024-09-18T08:23:47.591645+0000 mon.a (mon.0) 478 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:23:48.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:47 smithi172 bash[24990]: audit 2024-09-18T08:23:47.591645+0000 mon.a (mon.0) 478 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:23:48.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:47 smithi172 bash[24990]: audit 2024-09-18T08:23:47.599027+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:48.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:47 smithi172 bash[24990]: audit 2024-09-18T08:23:47.599027+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:48.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:47 smithi172 bash[24990]: audit 2024-09-18T08:23:47.607029+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:48.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:47 smithi172 bash[24990]: audit 2024-09-18T08:23:47.607029+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:48.282 DEBUG:teuthology.orchestra.run.smithi086:osd.3> sudo journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@osd.3.service 2024-09-18T08:23:48.285 INFO:tasks.cephadm:Deploying osd.4 on smithi172 with /dev/vg_nvme/lv_4... 2024-09-18T08:23:48.285 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-18T08:23:49.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:48 smithi070 bash[22844]: cluster 2024-09-18T08:23:46.904093+0000 mgr.a (mgr.14152) 221 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:49.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:48 smithi070 bash[22844]: cluster 2024-09-18T08:23:46.904093+0000 mgr.a (mgr.14152) 221 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:49.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:48 smithi070 bash[22844]: audit 2024-09-18T08:23:47.857822+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-18T08:23:49.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:48 smithi070 bash[22844]: audit 2024-09-18T08:23:47.857822+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-18T08:23:49.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:48 smithi070 bash[22844]: cluster 2024-09-18T08:23:47.862544+0000 mon.a (mon.0) 482 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-18T08:23:49.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:48 smithi070 bash[22844]: cluster 2024-09-18T08:23:47.862544+0000 mon.a (mon.0) 482 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-18T08:23:49.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:48 smithi070 bash[22844]: audit 2024-09-18T08:23:47.862962+0000 mon.b (mon.2) 16 : audit [INF] from='osd.3 [v2:172.21.15.86:6808/651378475,v1:172.21.15.86:6809/651378475]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-18T08:23:49.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:48 smithi070 bash[22844]: audit 2024-09-18T08:23:47.862962+0000 mon.b (mon.2) 16 : audit [INF] from='osd.3 [v2:172.21.15.86:6808/651378475,v1:172.21.15.86:6809/651378475]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-18T08:23:49.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:48 smithi070 bash[22844]: audit 2024-09-18T08:23:47.863111+0000 mon.a (mon.0) 483 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:49.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:48 smithi070 bash[22844]: audit 2024-09-18T08:23:47.863111+0000 mon.a (mon.0) 483 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:49.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:48 smithi070 bash[22844]: audit 2024-09-18T08:23:47.864610+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=smithi086", "root=default"]} : dispatch 2024-09-18T08:23:49.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:48 smithi070 bash[22844]: audit 2024-09-18T08:23:47.864610+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=smithi086", "root=default"]} : dispatch 2024-09-18T08:23:49.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:48 smithi172 bash[24990]: cluster 2024-09-18T08:23:46.904093+0000 mgr.a (mgr.14152) 221 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:49.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:48 smithi172 bash[24990]: cluster 2024-09-18T08:23:46.904093+0000 mgr.a (mgr.14152) 221 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:49.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:48 smithi172 bash[24990]: audit 2024-09-18T08:23:47.857822+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-18T08:23:49.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:48 smithi172 bash[24990]: audit 2024-09-18T08:23:47.857822+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-18T08:23:49.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:48 smithi172 bash[24990]: cluster 2024-09-18T08:23:47.862544+0000 mon.a (mon.0) 482 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-18T08:23:49.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:48 smithi172 bash[24990]: cluster 2024-09-18T08:23:47.862544+0000 mon.a (mon.0) 482 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-18T08:23:49.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:48 smithi172 bash[24990]: audit 2024-09-18T08:23:47.862962+0000 mon.b (mon.2) 16 : audit [INF] from='osd.3 [v2:172.21.15.86:6808/651378475,v1:172.21.15.86:6809/651378475]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-18T08:23:49.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:48 smithi172 bash[24990]: audit 2024-09-18T08:23:47.862962+0000 mon.b (mon.2) 16 : audit [INF] from='osd.3 [v2:172.21.15.86:6808/651378475,v1:172.21.15.86:6809/651378475]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-18T08:23:49.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:48 smithi172 bash[24990]: audit 2024-09-18T08:23:47.863111+0000 mon.a (mon.0) 483 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:49.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:48 smithi172 bash[24990]: audit 2024-09-18T08:23:47.863111+0000 mon.a (mon.0) 483 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:49.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:48 smithi172 bash[24990]: audit 2024-09-18T08:23:47.864610+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=smithi086", "root=default"]} : dispatch 2024-09-18T08:23:49.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:48 smithi172 bash[24990]: audit 2024-09-18T08:23:47.864610+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=smithi086", "root=default"]} : dispatch 2024-09-18T08:23:49.327 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:48 smithi086 bash[24678]: cluster 2024-09-18T08:23:46.904093+0000 mgr.a (mgr.14152) 221 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:49.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:48 smithi086 bash[24678]: cluster 2024-09-18T08:23:46.904093+0000 mgr.a (mgr.14152) 221 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:49.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:48 smithi086 bash[24678]: audit 2024-09-18T08:23:47.857822+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-18T08:23:49.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:48 smithi086 bash[24678]: audit 2024-09-18T08:23:47.857822+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-18T08:23:49.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:48 smithi086 bash[24678]: cluster 2024-09-18T08:23:47.862544+0000 mon.a (mon.0) 482 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-18T08:23:49.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:48 smithi086 bash[24678]: cluster 2024-09-18T08:23:47.862544+0000 mon.a (mon.0) 482 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-18T08:23:49.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:48 smithi086 bash[24678]: audit 2024-09-18T08:23:47.862962+0000 mon.b (mon.2) 16 : audit [INF] from='osd.3 [v2:172.21.15.86:6808/651378475,v1:172.21.15.86:6809/651378475]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-18T08:23:49.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:48 smithi086 bash[24678]: audit 2024-09-18T08:23:47.862962+0000 mon.b (mon.2) 16 : audit [INF] from='osd.3 [v2:172.21.15.86:6808/651378475,v1:172.21.15.86:6809/651378475]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-18T08:23:49.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:48 smithi086 bash[24678]: audit 2024-09-18T08:23:47.863111+0000 mon.a (mon.0) 483 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:49.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:48 smithi086 bash[24678]: audit 2024-09-18T08:23:47.863111+0000 mon.a (mon.0) 483 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:49.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:48 smithi086 bash[24678]: audit 2024-09-18T08:23:47.864610+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=smithi086", "root=default"]} : dispatch 2024-09-18T08:23:49.328 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:48 smithi086 bash[24678]: audit 2024-09-18T08:23:47.864610+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=smithi086", "root=default"]} : dispatch 2024-09-18T08:23:49.589 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 18 08:23:49 smithi086 bash[33150]: debug 2024-09-18T08:23:49.325+0000 7f4676fdf640 -1 osd.3 0 waiting for initial osdmap 2024-09-18T08:23:49.590 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 18 08:23:49 smithi086 bash[33150]: debug 2024-09-18T08:23:49.349+0000 7f466edfe640 -1 osd.3 24 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-18T08:23:50.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:49 smithi070 bash[22844]: audit 2024-09-18T08:23:48.860576+0000 mon.a (mon.0) 485 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]}]': finished 2024-09-18T08:23:50.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:49 smithi070 bash[22844]: audit 2024-09-18T08:23:48.860576+0000 mon.a (mon.0) 485 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]}]': finished 2024-09-18T08:23:50.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:49 smithi070 bash[22844]: cluster 2024-09-18T08:23:48.866397+0000 mon.a (mon.0) 486 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-18T08:23:50.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:49 smithi070 bash[22844]: cluster 2024-09-18T08:23:48.866397+0000 mon.a (mon.0) 486 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-18T08:23:50.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:49 smithi070 bash[22844]: audit 2024-09-18T08:23:48.867382+0000 mon.a (mon.0) 487 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:50.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:49 smithi070 bash[22844]: audit 2024-09-18T08:23:48.867382+0000 mon.a (mon.0) 487 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:50.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:49 smithi070 bash[22844]: audit 2024-09-18T08:23:48.877214+0000 mon.a (mon.0) 488 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:50.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:49 smithi070 bash[22844]: audit 2024-09-18T08:23:48.877214+0000 mon.a (mon.0) 488 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:50.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:49 smithi070 bash[22844]: audit 2024-09-18T08:23:49.338714+0000 mon.a (mon.0) 489 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-18T08:23:50.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:49 smithi070 bash[22844]: audit 2024-09-18T08:23:49.338714+0000 mon.a (mon.0) 489 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-18T08:23:50.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:49 smithi070 bash[22844]: cluster 2024-09-18T08:23:49.869240+0000 mon.a (mon.0) 490 : cluster [INF] osd.3 [v2:172.21.15.86:6808/651378475,v1:172.21.15.86:6809/651378475] boot 2024-09-18T08:23:50.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:49 smithi070 bash[22844]: cluster 2024-09-18T08:23:49.869240+0000 mon.a (mon.0) 490 : cluster [INF] osd.3 [v2:172.21.15.86:6808/651378475,v1:172.21.15.86:6809/651378475] boot 2024-09-18T08:23:50.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:49 smithi070 bash[22844]: cluster 2024-09-18T08:23:49.869395+0000 mon.a (mon.0) 491 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-18T08:23:50.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:49 smithi070 bash[22844]: cluster 2024-09-18T08:23:49.869395+0000 mon.a (mon.0) 491 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-18T08:23:50.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:49 smithi070 bash[22844]: audit 2024-09-18T08:23:49.869761+0000 mon.a (mon.0) 492 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:50.231 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:49 smithi070 bash[22844]: audit 2024-09-18T08:23:49.869761+0000 mon.a (mon.0) 492 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:50.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:49 smithi172 bash[24990]: audit 2024-09-18T08:23:48.860576+0000 mon.a (mon.0) 485 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]}]': finished 2024-09-18T08:23:50.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:49 smithi172 bash[24990]: audit 2024-09-18T08:23:48.860576+0000 mon.a (mon.0) 485 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]}]': finished 2024-09-18T08:23:50.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:49 smithi172 bash[24990]: cluster 2024-09-18T08:23:48.866397+0000 mon.a (mon.0) 486 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-18T08:23:50.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:49 smithi172 bash[24990]: cluster 2024-09-18T08:23:48.866397+0000 mon.a (mon.0) 486 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-18T08:23:50.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:49 smithi172 bash[24990]: audit 2024-09-18T08:23:48.867382+0000 mon.a (mon.0) 487 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:50.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:49 smithi172 bash[24990]: audit 2024-09-18T08:23:48.867382+0000 mon.a (mon.0) 487 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:50.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:49 smithi172 bash[24990]: audit 2024-09-18T08:23:48.877214+0000 mon.a (mon.0) 488 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:50.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:49 smithi172 bash[24990]: audit 2024-09-18T08:23:48.877214+0000 mon.a (mon.0) 488 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:50.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:49 smithi172 bash[24990]: audit 2024-09-18T08:23:49.338714+0000 mon.a (mon.0) 489 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-18T08:23:50.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:49 smithi172 bash[24990]: audit 2024-09-18T08:23:49.338714+0000 mon.a (mon.0) 489 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-18T08:23:50.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:49 smithi172 bash[24990]: cluster 2024-09-18T08:23:49.869240+0000 mon.a (mon.0) 490 : cluster [INF] osd.3 [v2:172.21.15.86:6808/651378475,v1:172.21.15.86:6809/651378475] boot 2024-09-18T08:23:50.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:49 smithi172 bash[24990]: cluster 2024-09-18T08:23:49.869240+0000 mon.a (mon.0) 490 : cluster [INF] osd.3 [v2:172.21.15.86:6808/651378475,v1:172.21.15.86:6809/651378475] boot 2024-09-18T08:23:50.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:49 smithi172 bash[24990]: cluster 2024-09-18T08:23:49.869395+0000 mon.a (mon.0) 491 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-18T08:23:50.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:49 smithi172 bash[24990]: cluster 2024-09-18T08:23:49.869395+0000 mon.a (mon.0) 491 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-18T08:23:50.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:49 smithi172 bash[24990]: audit 2024-09-18T08:23:49.869761+0000 mon.a (mon.0) 492 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:50.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:49 smithi172 bash[24990]: audit 2024-09-18T08:23:49.869761+0000 mon.a (mon.0) 492 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:50.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:49 smithi086 bash[24678]: audit 2024-09-18T08:23:48.860576+0000 mon.a (mon.0) 485 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]}]': finished 2024-09-18T08:23:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:49 smithi086 bash[24678]: audit 2024-09-18T08:23:48.860576+0000 mon.a (mon.0) 485 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]}]': finished 2024-09-18T08:23:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:49 smithi086 bash[24678]: cluster 2024-09-18T08:23:48.866397+0000 mon.a (mon.0) 486 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-18T08:23:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:49 smithi086 bash[24678]: cluster 2024-09-18T08:23:48.866397+0000 mon.a (mon.0) 486 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-18T08:23:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:49 smithi086 bash[24678]: audit 2024-09-18T08:23:48.867382+0000 mon.a (mon.0) 487 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:49 smithi086 bash[24678]: audit 2024-09-18T08:23:48.867382+0000 mon.a (mon.0) 487 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:49 smithi086 bash[24678]: audit 2024-09-18T08:23:48.877214+0000 mon.a (mon.0) 488 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:49 smithi086 bash[24678]: audit 2024-09-18T08:23:48.877214+0000 mon.a (mon.0) 488 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:49 smithi086 bash[24678]: audit 2024-09-18T08:23:49.338714+0000 mon.a (mon.0) 489 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-18T08:23:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:49 smithi086 bash[24678]: audit 2024-09-18T08:23:49.338714+0000 mon.a (mon.0) 489 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-18T08:23:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:49 smithi086 bash[24678]: cluster 2024-09-18T08:23:49.869240+0000 mon.a (mon.0) 490 : cluster [INF] osd.3 [v2:172.21.15.86:6808/651378475,v1:172.21.15.86:6809/651378475] boot 2024-09-18T08:23:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:49 smithi086 bash[24678]: cluster 2024-09-18T08:23:49.869240+0000 mon.a (mon.0) 490 : cluster [INF] osd.3 [v2:172.21.15.86:6808/651378475,v1:172.21.15.86:6809/651378475] boot 2024-09-18T08:23:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:49 smithi086 bash[24678]: cluster 2024-09-18T08:23:49.869395+0000 mon.a (mon.0) 491 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-18T08:23:50.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:49 smithi086 bash[24678]: cluster 2024-09-18T08:23:49.869395+0000 mon.a (mon.0) 491 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-18T08:23:50.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:49 smithi086 bash[24678]: audit 2024-09-18T08:23:49.869761+0000 mon.a (mon.0) 492 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:50.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:49 smithi086 bash[24678]: audit 2024-09-18T08:23:49.869761+0000 mon.a (mon.0) 492 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-18T08:23:51.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:50 smithi070 bash[22844]: cluster 2024-09-18T08:23:48.063931+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:23:51.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:50 smithi070 bash[22844]: cluster 2024-09-18T08:23:48.063931+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:23:51.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:50 smithi070 bash[22844]: cluster 2024-09-18T08:23:48.064010+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:23:51.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:50 smithi070 bash[22844]: cluster 2024-09-18T08:23:48.064010+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:23:51.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:50 smithi070 bash[22844]: cluster 2024-09-18T08:23:48.904604+0000 mgr.a (mgr.14152) 222 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:51.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:50 smithi070 bash[22844]: cluster 2024-09-18T08:23:48.904604+0000 mgr.a (mgr.14152) 222 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:51.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:50 smithi070 bash[22844]: cluster 2024-09-18T08:23:50.870592+0000 mon.a (mon.0) 493 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-18T08:23:51.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:50 smithi070 bash[22844]: cluster 2024-09-18T08:23:50.870592+0000 mon.a (mon.0) 493 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-18T08:23:51.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:50 smithi172 bash[24990]: cluster 2024-09-18T08:23:48.063931+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:23:51.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:50 smithi172 bash[24990]: cluster 2024-09-18T08:23:48.063931+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:23:51.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:50 smithi172 bash[24990]: cluster 2024-09-18T08:23:48.064010+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:23:51.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:50 smithi172 bash[24990]: cluster 2024-09-18T08:23:48.064010+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:23:51.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:50 smithi172 bash[24990]: cluster 2024-09-18T08:23:48.904604+0000 mgr.a (mgr.14152) 222 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:51.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:50 smithi172 bash[24990]: cluster 2024-09-18T08:23:48.904604+0000 mgr.a (mgr.14152) 222 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:51.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:50 smithi172 bash[24990]: cluster 2024-09-18T08:23:50.870592+0000 mon.a (mon.0) 493 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-18T08:23:51.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:50 smithi172 bash[24990]: cluster 2024-09-18T08:23:50.870592+0000 mon.a (mon.0) 493 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-18T08:23:51.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:50 smithi086 bash[24678]: cluster 2024-09-18T08:23:48.063931+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:23:51.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:50 smithi086 bash[24678]: cluster 2024-09-18T08:23:48.063931+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:23:51.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:50 smithi086 bash[24678]: cluster 2024-09-18T08:23:48.064010+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:23:51.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:50 smithi086 bash[24678]: cluster 2024-09-18T08:23:48.064010+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:23:51.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:50 smithi086 bash[24678]: cluster 2024-09-18T08:23:48.904604+0000 mgr.a (mgr.14152) 222 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:51.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:50 smithi086 bash[24678]: cluster 2024-09-18T08:23:48.904604+0000 mgr.a (mgr.14152) 222 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-18T08:23:51.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:50 smithi086 bash[24678]: cluster 2024-09-18T08:23:50.870592+0000 mon.a (mon.0) 493 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-18T08:23:51.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:50 smithi086 bash[24678]: cluster 2024-09-18T08:23:50.870592+0000 mon.a (mon.0) 493 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-18T08:23:52.005 INFO:teuthology.orchestra.run.smithi172.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.c/config 2024-09-18T08:23:53.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:52 smithi086 bash[24678]: cluster 2024-09-18T08:23:50.905130+0000 mgr.a (mgr.14152) 223 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 356 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:23:53.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:52 smithi086 bash[24678]: cluster 2024-09-18T08:23:50.905130+0000 mgr.a (mgr.14152) 223 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 356 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:23:53.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:52 smithi086 bash[24678]: cluster 2024-09-18T08:23:51.873403+0000 mon.a (mon.0) 494 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-18T08:23:53.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:52 smithi086 bash[24678]: cluster 2024-09-18T08:23:51.873403+0000 mon.a (mon.0) 494 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-18T08:23:53.182 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:52 smithi172 bash[24990]: cluster 2024-09-18T08:23:50.905130+0000 mgr.a (mgr.14152) 223 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 356 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:23:53.182 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:52 smithi172 bash[24990]: cluster 2024-09-18T08:23:50.905130+0000 mgr.a (mgr.14152) 223 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 356 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:23:53.182 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:52 smithi172 bash[24990]: cluster 2024-09-18T08:23:51.873403+0000 mon.a (mon.0) 494 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-18T08:23:53.182 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:52 smithi172 bash[24990]: cluster 2024-09-18T08:23:51.873403+0000 mon.a (mon.0) 494 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-18T08:23:53.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:52 smithi070 bash[22844]: cluster 2024-09-18T08:23:50.905130+0000 mgr.a (mgr.14152) 223 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 356 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:23:53.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:52 smithi070 bash[22844]: cluster 2024-09-18T08:23:50.905130+0000 mgr.a (mgr.14152) 223 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 356 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:23:53.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:52 smithi070 bash[22844]: cluster 2024-09-18T08:23:51.873403+0000 mon.a (mon.0) 494 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-18T08:23:53.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:52 smithi070 bash[22844]: cluster 2024-09-18T08:23:51.873403+0000 mon.a (mon.0) 494 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-18T08:23:55.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:54 smithi086 bash[24678]: cluster 2024-09-18T08:23:52.905695+0000 mgr.a (mgr.14152) 224 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 356 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:23:55.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:54 smithi086 bash[24678]: cluster 2024-09-18T08:23:52.905695+0000 mgr.a (mgr.14152) 224 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 356 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:23:55.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:54 smithi070 bash[22844]: cluster 2024-09-18T08:23:52.905695+0000 mgr.a (mgr.14152) 224 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 356 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:23:55.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:54 smithi070 bash[22844]: cluster 2024-09-18T08:23:52.905695+0000 mgr.a (mgr.14152) 224 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 356 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:23:55.231 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:54 smithi172 bash[24990]: cluster 2024-09-18T08:23:52.905695+0000 mgr.a (mgr.14152) 224 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 356 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:23:55.231 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:54 smithi172 bash[24990]: cluster 2024-09-18T08:23:52.905695+0000 mgr.a (mgr.14152) 224 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 356 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:23:55.967 INFO:teuthology.orchestra.run.smithi172.stdout: 2024-09-18T08:23:56.018 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi172:vg_nvme/lv_4 2024-09-18T08:23:56.970 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:56 smithi086 bash[24678]: cluster 2024-09-18T08:23:54.906260+0000 mgr.a (mgr.14152) 225 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-18T08:23:56.970 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:56 smithi086 bash[24678]: cluster 2024-09-18T08:23:54.906260+0000 mgr.a (mgr.14152) 225 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-18T08:23:57.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:56 smithi070 bash[22844]: cluster 2024-09-18T08:23:54.906260+0000 mgr.a (mgr.14152) 225 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-18T08:23:57.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:56 smithi070 bash[22844]: cluster 2024-09-18T08:23:54.906260+0000 mgr.a (mgr.14152) 225 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-18T08:23:57.231 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:56 smithi172 bash[24990]: cluster 2024-09-18T08:23:54.906260+0000 mgr.a (mgr.14152) 225 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-18T08:23:57.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:56 smithi172 bash[24990]: cluster 2024-09-18T08:23:54.906260+0000 mgr.a (mgr.14152) 225 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-18T08:23:58.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: cluster 2024-09-18T08:23:56.906799+0000 mgr.a (mgr.14152) 226 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail; 82 KiB/s, 0 objects/s recovering 2024-09-18T08:23:58.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: cluster 2024-09-18T08:23:56.906799+0000 mgr.a (mgr.14152) 226 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail; 82 KiB/s, 0 objects/s recovering 2024-09-18T08:23:58.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: cephadm 2024-09-18T08:23:57.430658+0000 mgr.a (mgr.14152) 227 : cephadm [INF] Detected new or changed devices on smithi086 2024-09-18T08:23:58.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: cephadm 2024-09-18T08:23:57.430658+0000 mgr.a (mgr.14152) 227 : cephadm [INF] Detected new or changed devices on smithi086 2024-09-18T08:23:58.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: audit 2024-09-18T08:23:57.439231+0000 mon.a (mon.0) 495 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: audit 2024-09-18T08:23:57.439231+0000 mon.a (mon.0) 495 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: audit 2024-09-18T08:23:57.447831+0000 mon.a (mon.0) 496 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: audit 2024-09-18T08:23:57.447831+0000 mon.a (mon.0) 496 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: audit 2024-09-18T08:23:57.450429+0000 mon.a (mon.0) 497 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-18T08:23:58.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: audit 2024-09-18T08:23:57.450429+0000 mon.a (mon.0) 497 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-18T08:23:58.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: audit 2024-09-18T08:23:57.452339+0000 mon.a (mon.0) 498 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-18T08:23:58.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: audit 2024-09-18T08:23:57.452339+0000 mon.a (mon.0) 498 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-18T08:23:58.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: cephadm 2024-09-18T08:23:57.453678+0000 mgr.a (mgr.14152) 228 : cephadm [INF] Adjusting osd_memory_target on smithi086 to 8632M 2024-09-18T08:23:58.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: cephadm 2024-09-18T08:23:57.453678+0000 mgr.a (mgr.14152) 228 : cephadm [INF] Adjusting osd_memory_target on smithi086 to 8632M 2024-09-18T08:23:58.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: audit 2024-09-18T08:23:57.459761+0000 mon.a (mon.0) 499 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: audit 2024-09-18T08:23:57.459761+0000 mon.a (mon.0) 499 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: audit 2024-09-18T08:23:57.463980+0000 mon.a (mon.0) 500 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:58.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: audit 2024-09-18T08:23:57.463980+0000 mon.a (mon.0) 500 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:58.731 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: audit 2024-09-18T08:23:57.465780+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:23:58.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: audit 2024-09-18T08:23:57.465780+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:23:58.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: audit 2024-09-18T08:23:57.475384+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.732 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:23:58 smithi070 bash[22844]: audit 2024-09-18T08:23:57.475384+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: cluster 2024-09-18T08:23:56.906799+0000 mgr.a (mgr.14152) 226 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail; 82 KiB/s, 0 objects/s recovering 2024-09-18T08:23:58.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: cluster 2024-09-18T08:23:56.906799+0000 mgr.a (mgr.14152) 226 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail; 82 KiB/s, 0 objects/s recovering 2024-09-18T08:23:58.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: cephadm 2024-09-18T08:23:57.430658+0000 mgr.a (mgr.14152) 227 : cephadm [INF] Detected new or changed devices on smithi086 2024-09-18T08:23:58.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: cephadm 2024-09-18T08:23:57.430658+0000 mgr.a (mgr.14152) 227 : cephadm [INF] Detected new or changed devices on smithi086 2024-09-18T08:23:58.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: audit 2024-09-18T08:23:57.439231+0000 mon.a (mon.0) 495 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: audit 2024-09-18T08:23:57.439231+0000 mon.a (mon.0) 495 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: audit 2024-09-18T08:23:57.447831+0000 mon.a (mon.0) 496 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: audit 2024-09-18T08:23:57.447831+0000 mon.a (mon.0) 496 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: audit 2024-09-18T08:23:57.450429+0000 mon.a (mon.0) 497 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-18T08:23:58.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: audit 2024-09-18T08:23:57.450429+0000 mon.a (mon.0) 497 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-18T08:23:58.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: audit 2024-09-18T08:23:57.452339+0000 mon.a (mon.0) 498 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-18T08:23:58.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: audit 2024-09-18T08:23:57.452339+0000 mon.a (mon.0) 498 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-18T08:23:58.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: cephadm 2024-09-18T08:23:57.453678+0000 mgr.a (mgr.14152) 228 : cephadm [INF] Adjusting osd_memory_target on smithi086 to 8632M 2024-09-18T08:23:58.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: cephadm 2024-09-18T08:23:57.453678+0000 mgr.a (mgr.14152) 228 : cephadm [INF] Adjusting osd_memory_target on smithi086 to 8632M 2024-09-18T08:23:58.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: audit 2024-09-18T08:23:57.459761+0000 mon.a (mon.0) 499 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: audit 2024-09-18T08:23:57.459761+0000 mon.a (mon.0) 499 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: audit 2024-09-18T08:23:57.463980+0000 mon.a (mon.0) 500 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:58.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: audit 2024-09-18T08:23:57.463980+0000 mon.a (mon.0) 500 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:58.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: audit 2024-09-18T08:23:57.465780+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:23:58.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: audit 2024-09-18T08:23:57.465780+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:23:58.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: audit 2024-09-18T08:23:57.475384+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.734 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:23:58 smithi172 bash[24990]: audit 2024-09-18T08:23:57.475384+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: cluster 2024-09-18T08:23:56.906799+0000 mgr.a (mgr.14152) 226 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail; 82 KiB/s, 0 objects/s recovering 2024-09-18T08:23:58.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: cluster 2024-09-18T08:23:56.906799+0000 mgr.a (mgr.14152) 226 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail; 82 KiB/s, 0 objects/s recovering 2024-09-18T08:23:58.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: cephadm 2024-09-18T08:23:57.430658+0000 mgr.a (mgr.14152) 227 : cephadm [INF] Detected new or changed devices on smithi086 2024-09-18T08:23:58.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: cephadm 2024-09-18T08:23:57.430658+0000 mgr.a (mgr.14152) 227 : cephadm [INF] Detected new or changed devices on smithi086 2024-09-18T08:23:58.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: audit 2024-09-18T08:23:57.439231+0000 mon.a (mon.0) 495 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: audit 2024-09-18T08:23:57.439231+0000 mon.a (mon.0) 495 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: audit 2024-09-18T08:23:57.447831+0000 mon.a (mon.0) 496 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: audit 2024-09-18T08:23:57.447831+0000 mon.a (mon.0) 496 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: audit 2024-09-18T08:23:57.450429+0000 mon.a (mon.0) 497 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-18T08:23:58.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: audit 2024-09-18T08:23:57.450429+0000 mon.a (mon.0) 497 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-18T08:23:58.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: audit 2024-09-18T08:23:57.452339+0000 mon.a (mon.0) 498 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-18T08:23:58.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: audit 2024-09-18T08:23:57.452339+0000 mon.a (mon.0) 498 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-18T08:23:58.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: cephadm 2024-09-18T08:23:57.453678+0000 mgr.a (mgr.14152) 228 : cephadm [INF] Adjusting osd_memory_target on smithi086 to 8632M 2024-09-18T08:23:58.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: cephadm 2024-09-18T08:23:57.453678+0000 mgr.a (mgr.14152) 228 : cephadm [INF] Adjusting osd_memory_target on smithi086 to 8632M 2024-09-18T08:23:58.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: audit 2024-09-18T08:23:57.459761+0000 mon.a (mon.0) 499 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: audit 2024-09-18T08:23:57.459761+0000 mon.a (mon.0) 499 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: audit 2024-09-18T08:23:57.463980+0000 mon.a (mon.0) 500 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:58.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: audit 2024-09-18T08:23:57.463980+0000 mon.a (mon.0) 500 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:23:58.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: audit 2024-09-18T08:23:57.465780+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:23:58.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: audit 2024-09-18T08:23:57.465780+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:23:58.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: audit 2024-09-18T08:23:57.475384+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:58.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:23:58 smithi086 bash[24678]: audit 2024-09-18T08:23:57.475384+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:23:59.734 INFO:teuthology.orchestra.run.smithi172.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.c/config 2024-09-18T08:24:00.705 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:00 smithi172 bash[24990]: cluster 2024-09-18T08:23:58.907347+0000 mgr.a (mgr.14152) 229 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T08:24:00.705 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:00 smithi172 bash[24990]: cluster 2024-09-18T08:23:58.907347+0000 mgr.a (mgr.14152) 229 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T08:24:00.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:00 smithi070 bash[22844]: cluster 2024-09-18T08:23:58.907347+0000 mgr.a (mgr.14152) 229 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T08:24:00.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:00 smithi070 bash[22844]: cluster 2024-09-18T08:23:58.907347+0000 mgr.a (mgr.14152) 229 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T08:24:00.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:00 smithi086 bash[24678]: cluster 2024-09-18T08:23:58.907347+0000 mgr.a (mgr.14152) 229 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T08:24:00.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:00 smithi086 bash[24678]: cluster 2024-09-18T08:23:58.907347+0000 mgr.a (mgr.14152) 229 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T08:24:01.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:01 smithi070 bash[22844]: audit 2024-09-18T08:24:01.066610+0000 mon.a (mon.0) 503 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:24:01.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:01 smithi070 bash[22844]: audit 2024-09-18T08:24:01.066610+0000 mon.a (mon.0) 503 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:24:01.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:01 smithi070 bash[22844]: audit 2024-09-18T08:24:01.072441+0000 mon.a (mon.0) 504 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:24:01.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:01 smithi070 bash[22844]: audit 2024-09-18T08:24:01.072441+0000 mon.a (mon.0) 504 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:24:01.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:01 smithi070 bash[22844]: audit 2024-09-18T08:24:01.074072+0000 mon.a (mon.0) 505 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:01.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:01 smithi070 bash[22844]: audit 2024-09-18T08:24:01.074072+0000 mon.a (mon.0) 505 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:01.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:01 smithi172 bash[24990]: audit 2024-09-18T08:24:01.066610+0000 mon.a (mon.0) 503 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:24:01.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:01 smithi172 bash[24990]: audit 2024-09-18T08:24:01.066610+0000 mon.a (mon.0) 503 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:24:01.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:01 smithi172 bash[24990]: audit 2024-09-18T08:24:01.072441+0000 mon.a (mon.0) 504 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:24:01.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:01 smithi172 bash[24990]: audit 2024-09-18T08:24:01.072441+0000 mon.a (mon.0) 504 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:24:01.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:01 smithi172 bash[24990]: audit 2024-09-18T08:24:01.074072+0000 mon.a (mon.0) 505 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:01.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:01 smithi172 bash[24990]: audit 2024-09-18T08:24:01.074072+0000 mon.a (mon.0) 505 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:01.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:01 smithi086 bash[24678]: audit 2024-09-18T08:24:01.066610+0000 mon.a (mon.0) 503 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:24:01.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:01 smithi086 bash[24678]: audit 2024-09-18T08:24:01.066610+0000 mon.a (mon.0) 503 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:24:01.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:01 smithi086 bash[24678]: audit 2024-09-18T08:24:01.072441+0000 mon.a (mon.0) 504 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:24:01.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:01 smithi086 bash[24678]: audit 2024-09-18T08:24:01.072441+0000 mon.a (mon.0) 504 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:24:01.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:01 smithi086 bash[24678]: audit 2024-09-18T08:24:01.074072+0000 mon.a (mon.0) 505 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:01.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:01 smithi086 bash[24678]: audit 2024-09-18T08:24:01.074072+0000 mon.a (mon.0) 505 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:02.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:02 smithi070 bash[22844]: cluster 2024-09-18T08:24:00.907902+0000 mgr.a (mgr.14152) 230 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T08:24:02.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:02 smithi070 bash[22844]: cluster 2024-09-18T08:24:00.907902+0000 mgr.a (mgr.14152) 230 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T08:24:02.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:02 smithi070 bash[22844]: audit 2024-09-18T08:24:01.059923+0000 mgr.a (mgr.14152) 231 : audit [DBG] from='client.24178 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi172:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:24:02.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:02 smithi070 bash[22844]: audit 2024-09-18T08:24:01.059923+0000 mgr.a (mgr.14152) 231 : audit [DBG] from='client.24178 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi172:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:24:02.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:02 smithi172 bash[24990]: cluster 2024-09-18T08:24:00.907902+0000 mgr.a (mgr.14152) 230 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T08:24:02.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:02 smithi172 bash[24990]: cluster 2024-09-18T08:24:00.907902+0000 mgr.a (mgr.14152) 230 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T08:24:02.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:02 smithi172 bash[24990]: audit 2024-09-18T08:24:01.059923+0000 mgr.a (mgr.14152) 231 : audit [DBG] from='client.24178 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi172:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:24:02.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:02 smithi172 bash[24990]: audit 2024-09-18T08:24:01.059923+0000 mgr.a (mgr.14152) 231 : audit [DBG] from='client.24178 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi172:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:24:02.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:02 smithi086 bash[24678]: cluster 2024-09-18T08:24:00.907902+0000 mgr.a (mgr.14152) 230 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T08:24:02.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:02 smithi086 bash[24678]: cluster 2024-09-18T08:24:00.907902+0000 mgr.a (mgr.14152) 230 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T08:24:02.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:02 smithi086 bash[24678]: audit 2024-09-18T08:24:01.059923+0000 mgr.a (mgr.14152) 231 : audit [DBG] from='client.24178 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi172:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:24:02.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:02 smithi086 bash[24678]: audit 2024-09-18T08:24:01.059923+0000 mgr.a (mgr.14152) 231 : audit [DBG] from='client.24178 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi172:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:24:04.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:04 smithi070 bash[22844]: cluster 2024-09-18T08:24:02.908464+0000 mgr.a (mgr.14152) 232 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-18T08:24:04.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:04 smithi070 bash[22844]: cluster 2024-09-18T08:24:02.908464+0000 mgr.a (mgr.14152) 232 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-18T08:24:04.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:04 smithi172 bash[24990]: cluster 2024-09-18T08:24:02.908464+0000 mgr.a (mgr.14152) 232 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-18T08:24:04.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:04 smithi172 bash[24990]: cluster 2024-09-18T08:24:02.908464+0000 mgr.a (mgr.14152) 232 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-18T08:24:04.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:04 smithi086 bash[24678]: cluster 2024-09-18T08:24:02.908464+0000 mgr.a (mgr.14152) 232 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-18T08:24:04.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:04 smithi086 bash[24678]: cluster 2024-09-18T08:24:02.908464+0000 mgr.a (mgr.14152) 232 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-09-18T08:24:06.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:06 smithi070 bash[22844]: cluster 2024-09-18T08:24:04.909011+0000 mgr.a (mgr.14152) 233 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-18T08:24:06.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:06 smithi070 bash[22844]: cluster 2024-09-18T08:24:04.909011+0000 mgr.a (mgr.14152) 233 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-18T08:24:06.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:06 smithi172 bash[24990]: cluster 2024-09-18T08:24:04.909011+0000 mgr.a (mgr.14152) 233 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-18T08:24:06.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:06 smithi172 bash[24990]: cluster 2024-09-18T08:24:04.909011+0000 mgr.a (mgr.14152) 233 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-18T08:24:06.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:06 smithi086 bash[24678]: cluster 2024-09-18T08:24:04.909011+0000 mgr.a (mgr.14152) 233 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-18T08:24:06.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:06 smithi086 bash[24678]: cluster 2024-09-18T08:24:04.909011+0000 mgr.a (mgr.14152) 233 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-18T08:24:08.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:08 smithi070 bash[22844]: cluster 2024-09-18T08:24:06.909553+0000 mgr.a (mgr.14152) 234 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:08.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:08 smithi070 bash[22844]: cluster 2024-09-18T08:24:06.909553+0000 mgr.a (mgr.14152) 234 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:08.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:08 smithi172 bash[24990]: cluster 2024-09-18T08:24:06.909553+0000 mgr.a (mgr.14152) 234 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:08.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:08 smithi172 bash[24990]: cluster 2024-09-18T08:24:06.909553+0000 mgr.a (mgr.14152) 234 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:08.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:08 smithi086 bash[24678]: cluster 2024-09-18T08:24:06.909553+0000 mgr.a (mgr.14152) 234 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:08.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:08 smithi086 bash[24678]: cluster 2024-09-18T08:24:06.909553+0000 mgr.a (mgr.14152) 234 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:10.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:10 smithi070 bash[22844]: cluster 2024-09-18T08:24:08.910089+0000 mgr.a (mgr.14152) 235 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:10.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:10 smithi070 bash[22844]: cluster 2024-09-18T08:24:08.910089+0000 mgr.a (mgr.14152) 235 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:10.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:10 smithi070 bash[22844]: audit 2024-09-18T08:24:09.594925+0000 mon.c (mon.1) 6 : audit [INF] from='client.? 172.21.15.172:0/2382449003' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9dbbaa00-39ea-499a-85cb-07a496e1ebc0"} : dispatch 2024-09-18T08:24:10.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:10 smithi070 bash[22844]: audit 2024-09-18T08:24:09.594925+0000 mon.c (mon.1) 6 : audit [INF] from='client.? 172.21.15.172:0/2382449003' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9dbbaa00-39ea-499a-85cb-07a496e1ebc0"} : dispatch 2024-09-18T08:24:10.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:10 smithi070 bash[22844]: audit 2024-09-18T08:24:09.597898+0000 mon.a (mon.0) 506 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9dbbaa00-39ea-499a-85cb-07a496e1ebc0"} : dispatch 2024-09-18T08:24:10.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:10 smithi070 bash[22844]: audit 2024-09-18T08:24:09.597898+0000 mon.a (mon.0) 506 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9dbbaa00-39ea-499a-85cb-07a496e1ebc0"} : dispatch 2024-09-18T08:24:10.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:10 smithi070 bash[22844]: audit 2024-09-18T08:24:09.601254+0000 mon.a (mon.0) 507 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9dbbaa00-39ea-499a-85cb-07a496e1ebc0"}]': finished 2024-09-18T08:24:10.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:10 smithi070 bash[22844]: audit 2024-09-18T08:24:09.601254+0000 mon.a (mon.0) 507 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9dbbaa00-39ea-499a-85cb-07a496e1ebc0"}]': finished 2024-09-18T08:24:10.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:10 smithi070 bash[22844]: cluster 2024-09-18T08:24:09.606007+0000 mon.a (mon.0) 508 : cluster [DBG] osdmap e28: 5 total, 4 up, 5 in 2024-09-18T08:24:10.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:10 smithi070 bash[22844]: cluster 2024-09-18T08:24:09.606007+0000 mon.a (mon.0) 508 : cluster [DBG] osdmap e28: 5 total, 4 up, 5 in 2024-09-18T08:24:10.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:10 smithi070 bash[22844]: audit 2024-09-18T08:24:09.606568+0000 mon.a (mon.0) 509 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:10.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:10 smithi070 bash[22844]: audit 2024-09-18T08:24:09.606568+0000 mon.a (mon.0) 509 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:10.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:10 smithi070 bash[22844]: audit 2024-09-18T08:24:10.238104+0000 mon.c (mon.1) 7 : audit [DBG] from='client.? 172.21.15.172:0/2366896883' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:24:10.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:10 smithi070 bash[22844]: audit 2024-09-18T08:24:10.238104+0000 mon.c (mon.1) 7 : audit [DBG] from='client.? 172.21.15.172:0/2366896883' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:24:10.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:10 smithi172 bash[24990]: cluster 2024-09-18T08:24:08.910089+0000 mgr.a (mgr.14152) 235 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:10.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:10 smithi172 bash[24990]: cluster 2024-09-18T08:24:08.910089+0000 mgr.a (mgr.14152) 235 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:10.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:10 smithi172 bash[24990]: audit 2024-09-18T08:24:09.594925+0000 mon.c (mon.1) 6 : audit [INF] from='client.? 172.21.15.172:0/2382449003' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9dbbaa00-39ea-499a-85cb-07a496e1ebc0"} : dispatch 2024-09-18T08:24:10.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:10 smithi172 bash[24990]: audit 2024-09-18T08:24:09.594925+0000 mon.c (mon.1) 6 : audit [INF] from='client.? 172.21.15.172:0/2382449003' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9dbbaa00-39ea-499a-85cb-07a496e1ebc0"} : dispatch 2024-09-18T08:24:10.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:10 smithi172 bash[24990]: audit 2024-09-18T08:24:09.597898+0000 mon.a (mon.0) 506 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9dbbaa00-39ea-499a-85cb-07a496e1ebc0"} : dispatch 2024-09-18T08:24:10.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:10 smithi172 bash[24990]: audit 2024-09-18T08:24:09.597898+0000 mon.a (mon.0) 506 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9dbbaa00-39ea-499a-85cb-07a496e1ebc0"} : dispatch 2024-09-18T08:24:10.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:10 smithi172 bash[24990]: audit 2024-09-18T08:24:09.601254+0000 mon.a (mon.0) 507 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9dbbaa00-39ea-499a-85cb-07a496e1ebc0"}]': finished 2024-09-18T08:24:10.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:10 smithi172 bash[24990]: audit 2024-09-18T08:24:09.601254+0000 mon.a (mon.0) 507 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9dbbaa00-39ea-499a-85cb-07a496e1ebc0"}]': finished 2024-09-18T08:24:10.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:10 smithi172 bash[24990]: cluster 2024-09-18T08:24:09.606007+0000 mon.a (mon.0) 508 : cluster [DBG] osdmap e28: 5 total, 4 up, 5 in 2024-09-18T08:24:10.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:10 smithi172 bash[24990]: cluster 2024-09-18T08:24:09.606007+0000 mon.a (mon.0) 508 : cluster [DBG] osdmap e28: 5 total, 4 up, 5 in 2024-09-18T08:24:10.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:10 smithi172 bash[24990]: audit 2024-09-18T08:24:09.606568+0000 mon.a (mon.0) 509 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:10.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:10 smithi172 bash[24990]: audit 2024-09-18T08:24:09.606568+0000 mon.a (mon.0) 509 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:10.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:10 smithi172 bash[24990]: audit 2024-09-18T08:24:10.238104+0000 mon.c (mon.1) 7 : audit [DBG] from='client.? 172.21.15.172:0/2366896883' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:24:10.733 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:10 smithi172 bash[24990]: audit 2024-09-18T08:24:10.238104+0000 mon.c (mon.1) 7 : audit [DBG] from='client.? 172.21.15.172:0/2366896883' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:24:10.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:10 smithi086 bash[24678]: cluster 2024-09-18T08:24:08.910089+0000 mgr.a (mgr.14152) 235 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:10.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:10 smithi086 bash[24678]: cluster 2024-09-18T08:24:08.910089+0000 mgr.a (mgr.14152) 235 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:10.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:10 smithi086 bash[24678]: audit 2024-09-18T08:24:09.594925+0000 mon.c (mon.1) 6 : audit [INF] from='client.? 172.21.15.172:0/2382449003' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9dbbaa00-39ea-499a-85cb-07a496e1ebc0"} : dispatch 2024-09-18T08:24:10.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:10 smithi086 bash[24678]: audit 2024-09-18T08:24:09.594925+0000 mon.c (mon.1) 6 : audit [INF] from='client.? 172.21.15.172:0/2382449003' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9dbbaa00-39ea-499a-85cb-07a496e1ebc0"} : dispatch 2024-09-18T08:24:10.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:10 smithi086 bash[24678]: audit 2024-09-18T08:24:09.597898+0000 mon.a (mon.0) 506 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9dbbaa00-39ea-499a-85cb-07a496e1ebc0"} : dispatch 2024-09-18T08:24:10.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:10 smithi086 bash[24678]: audit 2024-09-18T08:24:09.597898+0000 mon.a (mon.0) 506 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9dbbaa00-39ea-499a-85cb-07a496e1ebc0"} : dispatch 2024-09-18T08:24:10.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:10 smithi086 bash[24678]: audit 2024-09-18T08:24:09.601254+0000 mon.a (mon.0) 507 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9dbbaa00-39ea-499a-85cb-07a496e1ebc0"}]': finished 2024-09-18T08:24:10.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:10 smithi086 bash[24678]: audit 2024-09-18T08:24:09.601254+0000 mon.a (mon.0) 507 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9dbbaa00-39ea-499a-85cb-07a496e1ebc0"}]': finished 2024-09-18T08:24:10.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:10 smithi086 bash[24678]: cluster 2024-09-18T08:24:09.606007+0000 mon.a (mon.0) 508 : cluster [DBG] osdmap e28: 5 total, 4 up, 5 in 2024-09-18T08:24:10.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:10 smithi086 bash[24678]: cluster 2024-09-18T08:24:09.606007+0000 mon.a (mon.0) 508 : cluster [DBG] osdmap e28: 5 total, 4 up, 5 in 2024-09-18T08:24:10.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:10 smithi086 bash[24678]: audit 2024-09-18T08:24:09.606568+0000 mon.a (mon.0) 509 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:10.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:10 smithi086 bash[24678]: audit 2024-09-18T08:24:09.606568+0000 mon.a (mon.0) 509 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:10.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:10 smithi086 bash[24678]: audit 2024-09-18T08:24:10.238104+0000 mon.c (mon.1) 7 : audit [DBG] from='client.? 172.21.15.172:0/2366896883' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:24:10.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:10 smithi086 bash[24678]: audit 2024-09-18T08:24:10.238104+0000 mon.c (mon.1) 7 : audit [DBG] from='client.? 172.21.15.172:0/2366896883' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:24:12.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:12 smithi070 bash[22844]: cluster 2024-09-18T08:24:10.910621+0000 mgr.a (mgr.14152) 236 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:12.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:12 smithi070 bash[22844]: cluster 2024-09-18T08:24:10.910621+0000 mgr.a (mgr.14152) 236 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:12.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:12 smithi172 bash[24990]: cluster 2024-09-18T08:24:10.910621+0000 mgr.a (mgr.14152) 236 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:12.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:12 smithi172 bash[24990]: cluster 2024-09-18T08:24:10.910621+0000 mgr.a (mgr.14152) 236 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:12.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:12 smithi086 bash[24678]: cluster 2024-09-18T08:24:10.910621+0000 mgr.a (mgr.14152) 236 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:12.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:12 smithi086 bash[24678]: cluster 2024-09-18T08:24:10.910621+0000 mgr.a (mgr.14152) 236 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:14.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:14 smithi070 bash[22844]: cluster 2024-09-18T08:24:12.911138+0000 mgr.a (mgr.14152) 237 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:14.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:14 smithi070 bash[22844]: cluster 2024-09-18T08:24:12.911138+0000 mgr.a (mgr.14152) 237 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:14.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:14 smithi172 bash[24990]: cluster 2024-09-18T08:24:12.911138+0000 mgr.a (mgr.14152) 237 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:14.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:14 smithi172 bash[24990]: cluster 2024-09-18T08:24:12.911138+0000 mgr.a (mgr.14152) 237 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:14.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:14 smithi086 bash[24678]: cluster 2024-09-18T08:24:12.911138+0000 mgr.a (mgr.14152) 237 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:14.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:14 smithi086 bash[24678]: cluster 2024-09-18T08:24:12.911138+0000 mgr.a (mgr.14152) 237 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:16.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:16 smithi070 bash[22844]: cluster 2024-09-18T08:24:14.911732+0000 mgr.a (mgr.14152) 238 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:16.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:16 smithi070 bash[22844]: cluster 2024-09-18T08:24:14.911732+0000 mgr.a (mgr.14152) 238 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:16.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:16 smithi172 bash[24990]: cluster 2024-09-18T08:24:14.911732+0000 mgr.a (mgr.14152) 238 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:16.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:16 smithi172 bash[24990]: cluster 2024-09-18T08:24:14.911732+0000 mgr.a (mgr.14152) 238 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:16.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:16 smithi086 bash[24678]: cluster 2024-09-18T08:24:14.911732+0000 mgr.a (mgr.14152) 238 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:16.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:16 smithi086 bash[24678]: cluster 2024-09-18T08:24:14.911732+0000 mgr.a (mgr.14152) 238 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:18.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:18 smithi086 bash[24678]: cluster 2024-09-18T08:24:16.912196+0000 mgr.a (mgr.14152) 239 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:18.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:18 smithi086 bash[24678]: cluster 2024-09-18T08:24:16.912196+0000 mgr.a (mgr.14152) 239 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:18.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:18 smithi070 bash[22844]: cluster 2024-09-18T08:24:16.912196+0000 mgr.a (mgr.14152) 239 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:18.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:18 smithi070 bash[22844]: cluster 2024-09-18T08:24:16.912196+0000 mgr.a (mgr.14152) 239 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:18.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:18 smithi172 bash[24990]: cluster 2024-09-18T08:24:16.912196+0000 mgr.a (mgr.14152) 239 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:18.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:18 smithi172 bash[24990]: cluster 2024-09-18T08:24:16.912196+0000 mgr.a (mgr.14152) 239 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:20.545 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:20 smithi172 bash[24990]: cluster 2024-09-18T08:24:18.912772+0000 mgr.a (mgr.14152) 240 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:20.545 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:20 smithi172 bash[24990]: cluster 2024-09-18T08:24:18.912772+0000 mgr.a (mgr.14152) 240 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:20.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:20 smithi086 bash[24678]: cluster 2024-09-18T08:24:18.912772+0000 mgr.a (mgr.14152) 240 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:20.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:20 smithi086 bash[24678]: cluster 2024-09-18T08:24:18.912772+0000 mgr.a (mgr.14152) 240 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:20.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:20 smithi070 bash[22844]: cluster 2024-09-18T08:24:18.912772+0000 mgr.a (mgr.14152) 240 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:20.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:20 smithi070 bash[22844]: cluster 2024-09-18T08:24:18.912772+0000 mgr.a (mgr.14152) 240 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:22.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:22 smithi086 bash[24678]: cluster 2024-09-18T08:24:20.913339+0000 mgr.a (mgr.14152) 241 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:22.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:22 smithi086 bash[24678]: cluster 2024-09-18T08:24:20.913339+0000 mgr.a (mgr.14152) 241 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:22.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:22 smithi070 bash[22844]: cluster 2024-09-18T08:24:20.913339+0000 mgr.a (mgr.14152) 241 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:22.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:22 smithi070 bash[22844]: cluster 2024-09-18T08:24:20.913339+0000 mgr.a (mgr.14152) 241 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:22.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:22 smithi172 bash[24990]: cluster 2024-09-18T08:24:20.913339+0000 mgr.a (mgr.14152) 241 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:22.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:22 smithi172 bash[24990]: cluster 2024-09-18T08:24:20.913339+0000 mgr.a (mgr.14152) 241 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:23.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:23 smithi086 bash[24678]: audit 2024-09-18T08:24:22.678397+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-18T08:24:23.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:23 smithi086 bash[24678]: audit 2024-09-18T08:24:22.678397+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-18T08:24:23.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:23 smithi086 bash[24678]: audit 2024-09-18T08:24:22.680227+0000 mon.a (mon.0) 511 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:23.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:23 smithi086 bash[24678]: audit 2024-09-18T08:24:22.680227+0000 mon.a (mon.0) 511 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:23.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:23 smithi086 bash[24678]: cephadm 2024-09-18T08:24:22.681801+0000 mgr.a (mgr.14152) 242 : cephadm [INF] Deploying daemon osd.4 on smithi172 2024-09-18T08:24:23.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:23 smithi086 bash[24678]: cephadm 2024-09-18T08:24:22.681801+0000 mgr.a (mgr.14152) 242 : cephadm [INF] Deploying daemon osd.4 on smithi172 2024-09-18T08:24:23.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:23 smithi070 bash[22844]: audit 2024-09-18T08:24:22.678397+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-18T08:24:23.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:23 smithi070 bash[22844]: audit 2024-09-18T08:24:22.678397+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-18T08:24:23.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:23 smithi070 bash[22844]: audit 2024-09-18T08:24:22.680227+0000 mon.a (mon.0) 511 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:23.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:23 smithi070 bash[22844]: audit 2024-09-18T08:24:22.680227+0000 mon.a (mon.0) 511 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:23.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:23 smithi070 bash[22844]: cephadm 2024-09-18T08:24:22.681801+0000 mgr.a (mgr.14152) 242 : cephadm [INF] Deploying daemon osd.4 on smithi172 2024-09-18T08:24:23.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:23 smithi070 bash[22844]: cephadm 2024-09-18T08:24:22.681801+0000 mgr.a (mgr.14152) 242 : cephadm [INF] Deploying daemon osd.4 on smithi172 2024-09-18T08:24:23.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:23 smithi172 bash[24990]: audit 2024-09-18T08:24:22.678397+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-18T08:24:23.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:23 smithi172 bash[24990]: audit 2024-09-18T08:24:22.678397+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-18T08:24:23.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:23 smithi172 bash[24990]: audit 2024-09-18T08:24:22.680227+0000 mon.a (mon.0) 511 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:23.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:23 smithi172 bash[24990]: audit 2024-09-18T08:24:22.680227+0000 mon.a (mon.0) 511 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:23.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:23 smithi172 bash[24990]: cephadm 2024-09-18T08:24:22.681801+0000 mgr.a (mgr.14152) 242 : cephadm [INF] Deploying daemon osd.4 on smithi172 2024-09-18T08:24:23.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:23 smithi172 bash[24990]: cephadm 2024-09-18T08:24:22.681801+0000 mgr.a (mgr.14152) 242 : cephadm [INF] Deploying daemon osd.4 on smithi172 2024-09-18T08:24:24.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:24 smithi086 bash[24678]: cluster 2024-09-18T08:24:22.913878+0000 mgr.a (mgr.14152) 243 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:24.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:24 smithi086 bash[24678]: cluster 2024-09-18T08:24:22.913878+0000 mgr.a (mgr.14152) 243 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:24.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:24 smithi070 bash[22844]: cluster 2024-09-18T08:24:22.913878+0000 mgr.a (mgr.14152) 243 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:24.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:24 smithi070 bash[22844]: cluster 2024-09-18T08:24:22.913878+0000 mgr.a (mgr.14152) 243 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:24.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:24 smithi172 bash[24990]: cluster 2024-09-18T08:24:22.913878+0000 mgr.a (mgr.14152) 243 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:24.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:24 smithi172 bash[24990]: cluster 2024-09-18T08:24:22.913878+0000 mgr.a (mgr.14152) 243 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:26.835 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:26 smithi172 bash[24990]: cluster 2024-09-18T08:24:24.914428+0000 mgr.a (mgr.14152) 244 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:26.835 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:26 smithi172 bash[24990]: cluster 2024-09-18T08:24:24.914428+0000 mgr.a (mgr.14152) 244 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:26.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:26 smithi086 bash[24678]: cluster 2024-09-18T08:24:24.914428+0000 mgr.a (mgr.14152) 244 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:26.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:26 smithi086 bash[24678]: cluster 2024-09-18T08:24:24.914428+0000 mgr.a (mgr.14152) 244 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:26.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:26 smithi070 bash[22844]: cluster 2024-09-18T08:24:24.914428+0000 mgr.a (mgr.14152) 244 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:26.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:26 smithi070 bash[22844]: cluster 2024-09-18T08:24:24.914428+0000 mgr.a (mgr.14152) 244 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:27.147 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:26 smithi172 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:24:27.147 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:27 smithi172 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:24:27.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:27 smithi086 bash[24678]: audit 2024-09-18T08:24:27.196110+0000 mon.a (mon.0) 512 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:24:27.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:27 smithi086 bash[24678]: audit 2024-09-18T08:24:27.196110+0000 mon.a (mon.0) 512 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:24:27.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:27 smithi086 bash[24678]: audit 2024-09-18T08:24:27.203690+0000 mon.a (mon.0) 513 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:27.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:27 smithi086 bash[24678]: audit 2024-09-18T08:24:27.203690+0000 mon.a (mon.0) 513 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:27.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:27 smithi086 bash[24678]: audit 2024-09-18T08:24:27.211221+0000 mon.a (mon.0) 514 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:27.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:27 smithi086 bash[24678]: audit 2024-09-18T08:24:27.211221+0000 mon.a (mon.0) 514 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:27.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:27 smithi070 bash[22844]: audit 2024-09-18T08:24:27.196110+0000 mon.a (mon.0) 512 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:24:27.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:27 smithi070 bash[22844]: audit 2024-09-18T08:24:27.196110+0000 mon.a (mon.0) 512 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:24:27.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:27 smithi070 bash[22844]: audit 2024-09-18T08:24:27.203690+0000 mon.a (mon.0) 513 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:27.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:27 smithi070 bash[22844]: audit 2024-09-18T08:24:27.203690+0000 mon.a (mon.0) 513 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:27.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:27 smithi070 bash[22844]: audit 2024-09-18T08:24:27.211221+0000 mon.a (mon.0) 514 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:27.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:27 smithi070 bash[22844]: audit 2024-09-18T08:24:27.211221+0000 mon.a (mon.0) 514 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:27.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:27 smithi172 bash[24990]: audit 2024-09-18T08:24:27.196110+0000 mon.a (mon.0) 512 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:24:27.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:27 smithi172 bash[24990]: audit 2024-09-18T08:24:27.196110+0000 mon.a (mon.0) 512 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:24:27.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:27 smithi172 bash[24990]: audit 2024-09-18T08:24:27.203690+0000 mon.a (mon.0) 513 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:27.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:27 smithi172 bash[24990]: audit 2024-09-18T08:24:27.203690+0000 mon.a (mon.0) 513 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:27.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:27 smithi172 bash[24990]: audit 2024-09-18T08:24:27.211221+0000 mon.a (mon.0) 514 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:27.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:27 smithi172 bash[24990]: audit 2024-09-18T08:24:27.211221+0000 mon.a (mon.0) 514 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:28.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:28 smithi086 bash[24678]: cluster 2024-09-18T08:24:26.915034+0000 mgr.a (mgr.14152) 245 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:28.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:28 smithi086 bash[24678]: cluster 2024-09-18T08:24:26.915034+0000 mgr.a (mgr.14152) 245 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:28.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:28 smithi070 bash[22844]: cluster 2024-09-18T08:24:26.915034+0000 mgr.a (mgr.14152) 245 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:28.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:28 smithi070 bash[22844]: cluster 2024-09-18T08:24:26.915034+0000 mgr.a (mgr.14152) 245 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:28.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:28 smithi172 bash[24990]: cluster 2024-09-18T08:24:26.915034+0000 mgr.a (mgr.14152) 245 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:28.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:28 smithi172 bash[24990]: cluster 2024-09-18T08:24:26.915034+0000 mgr.a (mgr.14152) 245 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:30.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:30 smithi086 bash[24678]: cluster 2024-09-18T08:24:28.915664+0000 mgr.a (mgr.14152) 246 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:30.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:30 smithi086 bash[24678]: cluster 2024-09-18T08:24:28.915664+0000 mgr.a (mgr.14152) 246 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:30.971 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:30 smithi172 bash[24990]: cluster 2024-09-18T08:24:28.915664+0000 mgr.a (mgr.14152) 246 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:30.972 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:30 smithi172 bash[24990]: cluster 2024-09-18T08:24:28.915664+0000 mgr.a (mgr.14152) 246 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:30.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:30 smithi070 bash[22844]: cluster 2024-09-18T08:24:28.915664+0000 mgr.a (mgr.14152) 246 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:30.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:30 smithi070 bash[22844]: cluster 2024-09-18T08:24:28.915664+0000 mgr.a (mgr.14152) 246 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:32.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:32 smithi086 bash[24678]: cluster 2024-09-18T08:24:30.916190+0000 mgr.a (mgr.14152) 247 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:32.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:32 smithi086 bash[24678]: cluster 2024-09-18T08:24:30.916190+0000 mgr.a (mgr.14152) 247 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:32.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:32 smithi070 bash[22844]: cluster 2024-09-18T08:24:30.916190+0000 mgr.a (mgr.14152) 247 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:32.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:32 smithi070 bash[22844]: cluster 2024-09-18T08:24:30.916190+0000 mgr.a (mgr.14152) 247 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:32.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:32 smithi172 bash[24990]: cluster 2024-09-18T08:24:30.916190+0000 mgr.a (mgr.14152) 247 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:32.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:32 smithi172 bash[24990]: cluster 2024-09-18T08:24:30.916190+0000 mgr.a (mgr.14152) 247 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:33.960 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:33 smithi172 bash[24990]: audit 2024-09-18T08:24:32.679391+0000 mon.a (mon.0) 515 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:33.960 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:33 smithi172 bash[24990]: audit 2024-09-18T08:24:32.679391+0000 mon.a (mon.0) 515 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:33.960 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:33 smithi172 bash[24990]: audit 2024-09-18T08:24:32.687221+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:33.960 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:33 smithi172 bash[24990]: audit 2024-09-18T08:24:32.687221+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:33.960 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:33 smithi172 bash[24990]: audit 2024-09-18T08:24:32.688856+0000 mon.a (mon.0) 517 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:33.960 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:33 smithi172 bash[24990]: audit 2024-09-18T08:24:32.688856+0000 mon.a (mon.0) 517 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:33.960 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:33 smithi172 bash[24990]: audit 2024-09-18T08:24:32.690859+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:24:33.960 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:33 smithi172 bash[24990]: audit 2024-09-18T08:24:32.690859+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:24:33.961 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:33 smithi172 bash[24990]: audit 2024-09-18T08:24:32.700828+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:33.961 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:33 smithi172 bash[24990]: audit 2024-09-18T08:24:32.700828+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:33.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:33 smithi070 bash[22844]: audit 2024-09-18T08:24:32.679391+0000 mon.a (mon.0) 515 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:33.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:33 smithi070 bash[22844]: audit 2024-09-18T08:24:32.679391+0000 mon.a (mon.0) 515 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:33.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:33 smithi070 bash[22844]: audit 2024-09-18T08:24:32.687221+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:33.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:33 smithi070 bash[22844]: audit 2024-09-18T08:24:32.687221+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:33.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:33 smithi070 bash[22844]: audit 2024-09-18T08:24:32.688856+0000 mon.a (mon.0) 517 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:33.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:33 smithi070 bash[22844]: audit 2024-09-18T08:24:32.688856+0000 mon.a (mon.0) 517 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:33.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:33 smithi070 bash[22844]: audit 2024-09-18T08:24:32.690859+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:24:33.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:33 smithi070 bash[22844]: audit 2024-09-18T08:24:32.690859+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:24:33.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:33 smithi070 bash[22844]: audit 2024-09-18T08:24:32.700828+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:33.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:33 smithi070 bash[22844]: audit 2024-09-18T08:24:32.700828+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:34.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:33 smithi086 bash[24678]: audit 2024-09-18T08:24:32.679391+0000 mon.a (mon.0) 515 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:34.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:33 smithi086 bash[24678]: audit 2024-09-18T08:24:32.679391+0000 mon.a (mon.0) 515 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:34.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:33 smithi086 bash[24678]: audit 2024-09-18T08:24:32.687221+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:34.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:33 smithi086 bash[24678]: audit 2024-09-18T08:24:32.687221+0000 mon.a (mon.0) 516 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:34.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:33 smithi086 bash[24678]: audit 2024-09-18T08:24:32.688856+0000 mon.a (mon.0) 517 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:34.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:33 smithi086 bash[24678]: audit 2024-09-18T08:24:32.688856+0000 mon.a (mon.0) 517 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:34.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:33 smithi086 bash[24678]: audit 2024-09-18T08:24:32.690859+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:24:34.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:33 smithi086 bash[24678]: audit 2024-09-18T08:24:32.690859+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:24:34.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:33 smithi086 bash[24678]: audit 2024-09-18T08:24:32.700828+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:34.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:33 smithi086 bash[24678]: audit 2024-09-18T08:24:32.700828+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:34.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:34 smithi070 bash[22844]: cluster 2024-09-18T08:24:32.916733+0000 mgr.a (mgr.14152) 248 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:34.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:34 smithi070 bash[22844]: cluster 2024-09-18T08:24:32.916733+0000 mgr.a (mgr.14152) 248 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:34.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:34 smithi172 bash[24990]: cluster 2024-09-18T08:24:32.916733+0000 mgr.a (mgr.14152) 248 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:34.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:34 smithi172 bash[24990]: cluster 2024-09-18T08:24:32.916733+0000 mgr.a (mgr.14152) 248 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:35.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:34 smithi086 bash[24678]: cluster 2024-09-18T08:24:32.916733+0000 mgr.a (mgr.14152) 248 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:35.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:34 smithi086 bash[24678]: cluster 2024-09-18T08:24:32.916733+0000 mgr.a (mgr.14152) 248 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:36.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:36 smithi070 bash[22844]: cluster 2024-09-18T08:24:34.917267+0000 mgr.a (mgr.14152) 249 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:36.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:36 smithi070 bash[22844]: cluster 2024-09-18T08:24:34.917267+0000 mgr.a (mgr.14152) 249 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:36.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:36 smithi172 bash[24990]: cluster 2024-09-18T08:24:34.917267+0000 mgr.a (mgr.14152) 249 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:36.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:36 smithi172 bash[24990]: cluster 2024-09-18T08:24:34.917267+0000 mgr.a (mgr.14152) 249 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:37.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:36 smithi086 bash[24678]: cluster 2024-09-18T08:24:34.917267+0000 mgr.a (mgr.14152) 249 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:37.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:36 smithi086 bash[24678]: cluster 2024-09-18T08:24:34.917267+0000 mgr.a (mgr.14152) 249 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:38.660 INFO:teuthology.orchestra.run.smithi172.stdout:Created osd(s) 4 on host 'smithi172' 2024-09-18T08:24:38.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:38 smithi070 bash[22844]: cluster 2024-09-18T08:24:36.917738+0000 mgr.a (mgr.14152) 250 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:38.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:38 smithi070 bash[22844]: cluster 2024-09-18T08:24:36.917738+0000 mgr.a (mgr.14152) 250 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:38.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:38 smithi070 bash[22844]: audit 2024-09-18T08:24:38.642719+0000 mon.a (mon.0) 520 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:24:38.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:38 smithi070 bash[22844]: audit 2024-09-18T08:24:38.642719+0000 mon.a (mon.0) 520 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:24:38.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:38 smithi070 bash[22844]: audit 2024-09-18T08:24:38.650195+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:38.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:38 smithi070 bash[22844]: audit 2024-09-18T08:24:38.650195+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:38.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:38 smithi070 bash[22844]: audit 2024-09-18T08:24:38.658077+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:38.980 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:38 smithi070 bash[22844]: audit 2024-09-18T08:24:38.658077+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:38.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:38 smithi172 bash[24990]: cluster 2024-09-18T08:24:36.917738+0000 mgr.a (mgr.14152) 250 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:38.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:38 smithi172 bash[24990]: cluster 2024-09-18T08:24:36.917738+0000 mgr.a (mgr.14152) 250 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:38.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:38 smithi172 bash[24990]: audit 2024-09-18T08:24:38.642719+0000 mon.a (mon.0) 520 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:24:38.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:38 smithi172 bash[24990]: audit 2024-09-18T08:24:38.642719+0000 mon.a (mon.0) 520 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:24:38.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:38 smithi172 bash[24990]: audit 2024-09-18T08:24:38.650195+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:38.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:38 smithi172 bash[24990]: audit 2024-09-18T08:24:38.650195+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:38.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:38 smithi172 bash[24990]: audit 2024-09-18T08:24:38.658077+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:38.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:38 smithi172 bash[24990]: audit 2024-09-18T08:24:38.658077+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:39.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:38 smithi086 bash[24678]: cluster 2024-09-18T08:24:36.917738+0000 mgr.a (mgr.14152) 250 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:39.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:38 smithi086 bash[24678]: cluster 2024-09-18T08:24:36.917738+0000 mgr.a (mgr.14152) 250 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:39.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:38 smithi086 bash[24678]: audit 2024-09-18T08:24:38.642719+0000 mon.a (mon.0) 520 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:24:39.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:38 smithi086 bash[24678]: audit 2024-09-18T08:24:38.642719+0000 mon.a (mon.0) 520 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:24:39.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:38 smithi086 bash[24678]: audit 2024-09-18T08:24:38.650195+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:39.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:38 smithi086 bash[24678]: audit 2024-09-18T08:24:38.650195+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:39.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:38 smithi086 bash[24678]: audit 2024-09-18T08:24:38.658077+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:39.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:38 smithi086 bash[24678]: audit 2024-09-18T08:24:38.658077+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:39.286 DEBUG:teuthology.orchestra.run.smithi172:osd.4> sudo journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@osd.4.service 2024-09-18T08:24:39.289 INFO:tasks.cephadm:Deploying osd.5 on smithi172 with /dev/vg_nvme/lv_3... 2024-09-18T08:24:39.289 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-18T08:24:39.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:39 smithi070 bash[22844]: audit 2024-09-18T08:24:38.854418+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.172:6800/2213904211,v1:172.21.15.172:6801/2213904211]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-18T08:24:39.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:39 smithi070 bash[22844]: audit 2024-09-18T08:24:38.854418+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.172:6800/2213904211,v1:172.21.15.172:6801/2213904211]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-18T08:24:39.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:39 smithi070 bash[22844]: audit 2024-09-18T08:24:38.857670+0000 mon.a (mon.0) 523 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-18T08:24:39.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:39 smithi070 bash[22844]: audit 2024-09-18T08:24:38.857670+0000 mon.a (mon.0) 523 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-18T08:24:39.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:39 smithi172 bash[24990]: audit 2024-09-18T08:24:38.854418+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.172:6800/2213904211,v1:172.21.15.172:6801/2213904211]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-18T08:24:39.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:39 smithi172 bash[24990]: audit 2024-09-18T08:24:38.854418+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.172:6800/2213904211,v1:172.21.15.172:6801/2213904211]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-18T08:24:39.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:39 smithi172 bash[24990]: audit 2024-09-18T08:24:38.857670+0000 mon.a (mon.0) 523 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-18T08:24:39.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:39 smithi172 bash[24990]: audit 2024-09-18T08:24:38.857670+0000 mon.a (mon.0) 523 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-18T08:24:40.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:39 smithi086 bash[24678]: audit 2024-09-18T08:24:38.854418+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.172:6800/2213904211,v1:172.21.15.172:6801/2213904211]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-18T08:24:40.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:39 smithi086 bash[24678]: audit 2024-09-18T08:24:38.854418+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.172:6800/2213904211,v1:172.21.15.172:6801/2213904211]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-18T08:24:40.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:39 smithi086 bash[24678]: audit 2024-09-18T08:24:38.857670+0000 mon.a (mon.0) 523 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-18T08:24:40.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:39 smithi086 bash[24678]: audit 2024-09-18T08:24:38.857670+0000 mon.a (mon.0) 523 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-18T08:24:40.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:40 smithi070 bash[22844]: cluster 2024-09-18T08:24:38.918112+0000 mgr.a (mgr.14152) 251 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:40.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:40 smithi070 bash[22844]: cluster 2024-09-18T08:24:38.918112+0000 mgr.a (mgr.14152) 251 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:40.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:40 smithi070 bash[22844]: audit 2024-09-18T08:24:39.717698+0000 mon.a (mon.0) 524 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-18T08:24:40.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:40 smithi070 bash[22844]: audit 2024-09-18T08:24:39.717698+0000 mon.a (mon.0) 524 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-18T08:24:40.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:40 smithi070 bash[22844]: audit 2024-09-18T08:24:39.721418+0000 mon.c (mon.1) 9 : audit [INF] from='osd.4 [v2:172.21.15.172:6800/2213904211,v1:172.21.15.172:6801/2213904211]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:24:40.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:40 smithi070 bash[22844]: audit 2024-09-18T08:24:39.721418+0000 mon.c (mon.1) 9 : audit [INF] from='osd.4 [v2:172.21.15.172:6800/2213904211,v1:172.21.15.172:6801/2213904211]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:24:40.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:40 smithi070 bash[22844]: cluster 2024-09-18T08:24:39.724029+0000 mon.a (mon.0) 525 : cluster [DBG] osdmap e29: 5 total, 4 up, 5 in 2024-09-18T08:24:40.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:40 smithi070 bash[22844]: cluster 2024-09-18T08:24:39.724029+0000 mon.a (mon.0) 525 : cluster [DBG] osdmap e29: 5 total, 4 up, 5 in 2024-09-18T08:24:40.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:40 smithi070 bash[22844]: audit 2024-09-18T08:24:39.724506+0000 mon.a (mon.0) 526 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:40.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:40 smithi070 bash[22844]: audit 2024-09-18T08:24:39.724506+0000 mon.a (mon.0) 526 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:40.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:40 smithi070 bash[22844]: audit 2024-09-18T08:24:39.725059+0000 mon.a (mon.0) 527 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:24:40.980 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:40 smithi070 bash[22844]: audit 2024-09-18T08:24:39.725059+0000 mon.a (mon.0) 527 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:24:40.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:40 smithi172 bash[24990]: cluster 2024-09-18T08:24:38.918112+0000 mgr.a (mgr.14152) 251 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:40.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:40 smithi172 bash[24990]: cluster 2024-09-18T08:24:38.918112+0000 mgr.a (mgr.14152) 251 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:40.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:40 smithi172 bash[24990]: audit 2024-09-18T08:24:39.717698+0000 mon.a (mon.0) 524 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-18T08:24:40.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:40 smithi172 bash[24990]: audit 2024-09-18T08:24:39.717698+0000 mon.a (mon.0) 524 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-18T08:24:40.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:40 smithi172 bash[24990]: audit 2024-09-18T08:24:39.721418+0000 mon.c (mon.1) 9 : audit [INF] from='osd.4 [v2:172.21.15.172:6800/2213904211,v1:172.21.15.172:6801/2213904211]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:24:40.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:40 smithi172 bash[24990]: audit 2024-09-18T08:24:39.721418+0000 mon.c (mon.1) 9 : audit [INF] from='osd.4 [v2:172.21.15.172:6800/2213904211,v1:172.21.15.172:6801/2213904211]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:24:40.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:40 smithi172 bash[24990]: cluster 2024-09-18T08:24:39.724029+0000 mon.a (mon.0) 525 : cluster [DBG] osdmap e29: 5 total, 4 up, 5 in 2024-09-18T08:24:40.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:40 smithi172 bash[24990]: cluster 2024-09-18T08:24:39.724029+0000 mon.a (mon.0) 525 : cluster [DBG] osdmap e29: 5 total, 4 up, 5 in 2024-09-18T08:24:40.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:40 smithi172 bash[24990]: audit 2024-09-18T08:24:39.724506+0000 mon.a (mon.0) 526 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:40.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:40 smithi172 bash[24990]: audit 2024-09-18T08:24:39.724506+0000 mon.a (mon.0) 526 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:40.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:40 smithi172 bash[24990]: audit 2024-09-18T08:24:39.725059+0000 mon.a (mon.0) 527 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:24:40.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:40 smithi172 bash[24990]: audit 2024-09-18T08:24:39.725059+0000 mon.a (mon.0) 527 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:24:41.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:40 smithi086 bash[24678]: cluster 2024-09-18T08:24:38.918112+0000 mgr.a (mgr.14152) 251 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:41.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:40 smithi086 bash[24678]: cluster 2024-09-18T08:24:38.918112+0000 mgr.a (mgr.14152) 251 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:41.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:40 smithi086 bash[24678]: audit 2024-09-18T08:24:39.717698+0000 mon.a (mon.0) 524 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-18T08:24:41.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:40 smithi086 bash[24678]: audit 2024-09-18T08:24:39.717698+0000 mon.a (mon.0) 524 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-18T08:24:41.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:40 smithi086 bash[24678]: audit 2024-09-18T08:24:39.721418+0000 mon.c (mon.1) 9 : audit [INF] from='osd.4 [v2:172.21.15.172:6800/2213904211,v1:172.21.15.172:6801/2213904211]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:24:41.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:40 smithi086 bash[24678]: audit 2024-09-18T08:24:39.721418+0000 mon.c (mon.1) 9 : audit [INF] from='osd.4 [v2:172.21.15.172:6800/2213904211,v1:172.21.15.172:6801/2213904211]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:24:41.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:40 smithi086 bash[24678]: cluster 2024-09-18T08:24:39.724029+0000 mon.a (mon.0) 525 : cluster [DBG] osdmap e29: 5 total, 4 up, 5 in 2024-09-18T08:24:41.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:40 smithi086 bash[24678]: cluster 2024-09-18T08:24:39.724029+0000 mon.a (mon.0) 525 : cluster [DBG] osdmap e29: 5 total, 4 up, 5 in 2024-09-18T08:24:41.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:40 smithi086 bash[24678]: audit 2024-09-18T08:24:39.724506+0000 mon.a (mon.0) 526 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:41.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:40 smithi086 bash[24678]: audit 2024-09-18T08:24:39.724506+0000 mon.a (mon.0) 526 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:41.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:40 smithi086 bash[24678]: audit 2024-09-18T08:24:39.725059+0000 mon.a (mon.0) 527 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:24:41.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:40 smithi086 bash[24678]: audit 2024-09-18T08:24:39.725059+0000 mon.a (mon.0) 527 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:24:41.731 INFO:journalctl@ceph.osd.4.smithi172.stdout:Sep 18 08:24:41 smithi172 bash[27804]: debug 2024-09-18T08:24:41.237+0000 7f1d1c67b640 -1 osd.4 0 waiting for initial osdmap 2024-09-18T08:24:41.731 INFO:journalctl@ceph.osd.4.smithi172.stdout:Sep 18 08:24:41 smithi172 bash[27804]: debug 2024-09-18T08:24:41.277+0000 7f1d1449a640 -1 osd.4 30 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-18T08:24:42.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:41 smithi086 bash[24678]: audit 2024-09-18T08:24:40.720349+0000 mon.a (mon.0) 528 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]': finished 2024-09-18T08:24:42.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:41 smithi086 bash[24678]: audit 2024-09-18T08:24:40.720349+0000 mon.a (mon.0) 528 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]': finished 2024-09-18T08:24:42.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:41 smithi086 bash[24678]: cluster 2024-09-18T08:24:40.725395+0000 mon.a (mon.0) 529 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-18T08:24:42.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:41 smithi086 bash[24678]: cluster 2024-09-18T08:24:40.725395+0000 mon.a (mon.0) 529 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-18T08:24:42.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:41 smithi086 bash[24678]: audit 2024-09-18T08:24:40.726091+0000 mon.a (mon.0) 530 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:42.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:41 smithi086 bash[24678]: audit 2024-09-18T08:24:40.726091+0000 mon.a (mon.0) 530 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:42.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:41 smithi086 bash[24678]: audit 2024-09-18T08:24:40.736166+0000 mon.a (mon.0) 531 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:42.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:41 smithi086 bash[24678]: audit 2024-09-18T08:24:40.736166+0000 mon.a (mon.0) 531 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:42.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:41 smithi086 bash[24678]: audit 2024-09-18T08:24:41.252543+0000 mon.a (mon.0) 532 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-18T08:24:42.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:41 smithi086 bash[24678]: audit 2024-09-18T08:24:41.252543+0000 mon.a (mon.0) 532 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-18T08:24:42.228 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:41 smithi070 bash[22844]: audit 2024-09-18T08:24:40.720349+0000 mon.a (mon.0) 528 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]': finished 2024-09-18T08:24:42.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:41 smithi070 bash[22844]: audit 2024-09-18T08:24:40.720349+0000 mon.a (mon.0) 528 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]': finished 2024-09-18T08:24:42.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:41 smithi070 bash[22844]: cluster 2024-09-18T08:24:40.725395+0000 mon.a (mon.0) 529 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-18T08:24:42.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:41 smithi070 bash[22844]: cluster 2024-09-18T08:24:40.725395+0000 mon.a (mon.0) 529 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-18T08:24:42.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:41 smithi070 bash[22844]: audit 2024-09-18T08:24:40.726091+0000 mon.a (mon.0) 530 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:42.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:41 smithi070 bash[22844]: audit 2024-09-18T08:24:40.726091+0000 mon.a (mon.0) 530 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:42.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:41 smithi070 bash[22844]: audit 2024-09-18T08:24:40.736166+0000 mon.a (mon.0) 531 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:42.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:41 smithi070 bash[22844]: audit 2024-09-18T08:24:40.736166+0000 mon.a (mon.0) 531 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:42.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:41 smithi070 bash[22844]: audit 2024-09-18T08:24:41.252543+0000 mon.a (mon.0) 532 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-18T08:24:42.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:41 smithi070 bash[22844]: audit 2024-09-18T08:24:41.252543+0000 mon.a (mon.0) 532 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-18T08:24:42.231 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:41 smithi172 bash[24990]: audit 2024-09-18T08:24:40.720349+0000 mon.a (mon.0) 528 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]': finished 2024-09-18T08:24:42.231 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:41 smithi172 bash[24990]: audit 2024-09-18T08:24:40.720349+0000 mon.a (mon.0) 528 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]': finished 2024-09-18T08:24:42.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:41 smithi172 bash[24990]: cluster 2024-09-18T08:24:40.725395+0000 mon.a (mon.0) 529 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-18T08:24:42.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:41 smithi172 bash[24990]: cluster 2024-09-18T08:24:40.725395+0000 mon.a (mon.0) 529 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-18T08:24:42.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:41 smithi172 bash[24990]: audit 2024-09-18T08:24:40.726091+0000 mon.a (mon.0) 530 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:42.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:41 smithi172 bash[24990]: audit 2024-09-18T08:24:40.726091+0000 mon.a (mon.0) 530 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:42.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:41 smithi172 bash[24990]: audit 2024-09-18T08:24:40.736166+0000 mon.a (mon.0) 531 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:42.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:41 smithi172 bash[24990]: audit 2024-09-18T08:24:40.736166+0000 mon.a (mon.0) 531 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:42.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:41 smithi172 bash[24990]: audit 2024-09-18T08:24:41.252543+0000 mon.a (mon.0) 532 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-18T08:24:42.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:41 smithi172 bash[24990]: audit 2024-09-18T08:24:41.252543+0000 mon.a (mon.0) 532 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-18T08:24:43.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:42 smithi086 bash[24678]: cluster 2024-09-18T08:24:39.850863+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:24:43.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:42 smithi086 bash[24678]: cluster 2024-09-18T08:24:39.850863+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:24:43.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:42 smithi086 bash[24678]: cluster 2024-09-18T08:24:39.850914+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:24:43.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:42 smithi086 bash[24678]: cluster 2024-09-18T08:24:39.850914+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:24:43.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:42 smithi086 bash[24678]: cluster 2024-09-18T08:24:40.918587+0000 mgr.a (mgr.14152) 252 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:43.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:42 smithi086 bash[24678]: cluster 2024-09-18T08:24:40.918587+0000 mgr.a (mgr.14152) 252 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:43.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:42 smithi086 bash[24678]: audit 2024-09-18T08:24:41.735405+0000 mon.a (mon.0) 533 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:43.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:42 smithi086 bash[24678]: audit 2024-09-18T08:24:41.735405+0000 mon.a (mon.0) 533 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:43.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:42 smithi086 bash[24678]: cluster 2024-09-18T08:24:41.744202+0000 mon.a (mon.0) 534 : cluster [INF] osd.4 [v2:172.21.15.172:6800/2213904211,v1:172.21.15.172:6801/2213904211] boot 2024-09-18T08:24:43.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:42 smithi086 bash[24678]: cluster 2024-09-18T08:24:41.744202+0000 mon.a (mon.0) 534 : cluster [INF] osd.4 [v2:172.21.15.172:6800/2213904211,v1:172.21.15.172:6801/2213904211] boot 2024-09-18T08:24:43.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:42 smithi086 bash[24678]: cluster 2024-09-18T08:24:41.744261+0000 mon.a (mon.0) 535 : cluster [DBG] osdmap e31: 5 total, 5 up, 5 in 2024-09-18T08:24:43.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:42 smithi086 bash[24678]: cluster 2024-09-18T08:24:41.744261+0000 mon.a (mon.0) 535 : cluster [DBG] osdmap e31: 5 total, 5 up, 5 in 2024-09-18T08:24:43.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:42 smithi086 bash[24678]: audit 2024-09-18T08:24:41.745052+0000 mon.a (mon.0) 536 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:43.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:42 smithi086 bash[24678]: audit 2024-09-18T08:24:41.745052+0000 mon.a (mon.0) 536 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:43.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:42 smithi086 bash[24678]: cluster 2024-09-18T08:24:42.097507+0000 mon.a (mon.0) 537 : cluster [DBG] osdmap e32: 5 total, 5 up, 5 in 2024-09-18T08:24:43.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:42 smithi086 bash[24678]: cluster 2024-09-18T08:24:42.097507+0000 mon.a (mon.0) 537 : cluster [DBG] osdmap e32: 5 total, 5 up, 5 in 2024-09-18T08:24:43.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:42 smithi070 bash[22844]: cluster 2024-09-18T08:24:39.850863+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:24:43.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:42 smithi070 bash[22844]: cluster 2024-09-18T08:24:39.850863+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:24:43.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:42 smithi070 bash[22844]: cluster 2024-09-18T08:24:39.850914+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:24:43.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:42 smithi070 bash[22844]: cluster 2024-09-18T08:24:39.850914+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:24:43.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:42 smithi070 bash[22844]: cluster 2024-09-18T08:24:40.918587+0000 mgr.a (mgr.14152) 252 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:43.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:42 smithi070 bash[22844]: cluster 2024-09-18T08:24:40.918587+0000 mgr.a (mgr.14152) 252 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:43.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:42 smithi070 bash[22844]: audit 2024-09-18T08:24:41.735405+0000 mon.a (mon.0) 533 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:43.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:42 smithi070 bash[22844]: audit 2024-09-18T08:24:41.735405+0000 mon.a (mon.0) 533 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:43.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:42 smithi070 bash[22844]: cluster 2024-09-18T08:24:41.744202+0000 mon.a (mon.0) 534 : cluster [INF] osd.4 [v2:172.21.15.172:6800/2213904211,v1:172.21.15.172:6801/2213904211] boot 2024-09-18T08:24:43.229 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:42 smithi070 bash[22844]: cluster 2024-09-18T08:24:41.744202+0000 mon.a (mon.0) 534 : cluster [INF] osd.4 [v2:172.21.15.172:6800/2213904211,v1:172.21.15.172:6801/2213904211] boot 2024-09-18T08:24:43.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:42 smithi070 bash[22844]: cluster 2024-09-18T08:24:41.744261+0000 mon.a (mon.0) 535 : cluster [DBG] osdmap e31: 5 total, 5 up, 5 in 2024-09-18T08:24:43.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:42 smithi070 bash[22844]: cluster 2024-09-18T08:24:41.744261+0000 mon.a (mon.0) 535 : cluster [DBG] osdmap e31: 5 total, 5 up, 5 in 2024-09-18T08:24:43.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:42 smithi070 bash[22844]: audit 2024-09-18T08:24:41.745052+0000 mon.a (mon.0) 536 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:43.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:42 smithi070 bash[22844]: audit 2024-09-18T08:24:41.745052+0000 mon.a (mon.0) 536 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:43.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:42 smithi070 bash[22844]: cluster 2024-09-18T08:24:42.097507+0000 mon.a (mon.0) 537 : cluster [DBG] osdmap e32: 5 total, 5 up, 5 in 2024-09-18T08:24:43.230 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:42 smithi070 bash[22844]: cluster 2024-09-18T08:24:42.097507+0000 mon.a (mon.0) 537 : cluster [DBG] osdmap e32: 5 total, 5 up, 5 in 2024-09-18T08:24:43.231 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:42 smithi172 bash[24990]: cluster 2024-09-18T08:24:39.850863+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:24:43.231 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:42 smithi172 bash[24990]: cluster 2024-09-18T08:24:39.850863+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:24:43.231 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:42 smithi172 bash[24990]: cluster 2024-09-18T08:24:39.850914+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:24:43.231 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:42 smithi172 bash[24990]: cluster 2024-09-18T08:24:39.850914+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:24:43.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:42 smithi172 bash[24990]: cluster 2024-09-18T08:24:40.918587+0000 mgr.a (mgr.14152) 252 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:43.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:42 smithi172 bash[24990]: cluster 2024-09-18T08:24:40.918587+0000 mgr.a (mgr.14152) 252 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:24:43.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:42 smithi172 bash[24990]: audit 2024-09-18T08:24:41.735405+0000 mon.a (mon.0) 533 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:43.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:42 smithi172 bash[24990]: audit 2024-09-18T08:24:41.735405+0000 mon.a (mon.0) 533 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:43.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:42 smithi172 bash[24990]: cluster 2024-09-18T08:24:41.744202+0000 mon.a (mon.0) 534 : cluster [INF] osd.4 [v2:172.21.15.172:6800/2213904211,v1:172.21.15.172:6801/2213904211] boot 2024-09-18T08:24:43.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:42 smithi172 bash[24990]: cluster 2024-09-18T08:24:41.744202+0000 mon.a (mon.0) 534 : cluster [INF] osd.4 [v2:172.21.15.172:6800/2213904211,v1:172.21.15.172:6801/2213904211] boot 2024-09-18T08:24:43.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:42 smithi172 bash[24990]: cluster 2024-09-18T08:24:41.744261+0000 mon.a (mon.0) 535 : cluster [DBG] osdmap e31: 5 total, 5 up, 5 in 2024-09-18T08:24:43.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:42 smithi172 bash[24990]: cluster 2024-09-18T08:24:41.744261+0000 mon.a (mon.0) 535 : cluster [DBG] osdmap e31: 5 total, 5 up, 5 in 2024-09-18T08:24:43.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:42 smithi172 bash[24990]: audit 2024-09-18T08:24:41.745052+0000 mon.a (mon.0) 536 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:43.232 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:42 smithi172 bash[24990]: audit 2024-09-18T08:24:41.745052+0000 mon.a (mon.0) 536 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-18T08:24:43.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:42 smithi172 bash[24990]: cluster 2024-09-18T08:24:42.097507+0000 mon.a (mon.0) 537 : cluster [DBG] osdmap e32: 5 total, 5 up, 5 in 2024-09-18T08:24:43.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:42 smithi172 bash[24990]: cluster 2024-09-18T08:24:42.097507+0000 mon.a (mon.0) 537 : cluster [DBG] osdmap e32: 5 total, 5 up, 5 in 2024-09-18T08:24:44.052 INFO:teuthology.orchestra.run.smithi172.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.c/config 2024-09-18T08:24:44.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:44 smithi070 bash[22844]: cluster 2024-09-18T08:24:42.919165+0000 mgr.a (mgr.14152) 253 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:24:44.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:44 smithi070 bash[22844]: cluster 2024-09-18T08:24:42.919165+0000 mgr.a (mgr.14152) 253 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:24:44.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:44 smithi070 bash[22844]: cluster 2024-09-18T08:24:43.099806+0000 mon.a (mon.0) 538 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-18T08:24:44.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:44 smithi070 bash[22844]: cluster 2024-09-18T08:24:43.099806+0000 mon.a (mon.0) 538 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-18T08:24:44.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:44 smithi172 bash[24990]: cluster 2024-09-18T08:24:42.919165+0000 mgr.a (mgr.14152) 253 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:24:44.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:44 smithi172 bash[24990]: cluster 2024-09-18T08:24:42.919165+0000 mgr.a (mgr.14152) 253 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:24:44.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:44 smithi172 bash[24990]: cluster 2024-09-18T08:24:43.099806+0000 mon.a (mon.0) 538 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-18T08:24:44.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:44 smithi172 bash[24990]: cluster 2024-09-18T08:24:43.099806+0000 mon.a (mon.0) 538 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-18T08:24:44.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:44 smithi086 bash[24678]: cluster 2024-09-18T08:24:42.919165+0000 mgr.a (mgr.14152) 253 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:24:44.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:44 smithi086 bash[24678]: cluster 2024-09-18T08:24:42.919165+0000 mgr.a (mgr.14152) 253 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:24:44.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:44 smithi086 bash[24678]: cluster 2024-09-18T08:24:43.099806+0000 mon.a (mon.0) 538 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-18T08:24:44.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:44 smithi086 bash[24678]: cluster 2024-09-18T08:24:43.099806+0000 mon.a (mon.0) 538 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-18T08:24:46.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:46 smithi070 bash[22844]: cluster 2024-09-18T08:24:44.919747+0000 mgr.a (mgr.14152) 254 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 137 KiB/s, 0 objects/s recovering 2024-09-18T08:24:46.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:46 smithi070 bash[22844]: cluster 2024-09-18T08:24:44.919747+0000 mgr.a (mgr.14152) 254 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 137 KiB/s, 0 objects/s recovering 2024-09-18T08:24:46.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:46 smithi172 bash[24990]: cluster 2024-09-18T08:24:44.919747+0000 mgr.a (mgr.14152) 254 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 137 KiB/s, 0 objects/s recovering 2024-09-18T08:24:46.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:46 smithi172 bash[24990]: cluster 2024-09-18T08:24:44.919747+0000 mgr.a (mgr.14152) 254 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 137 KiB/s, 0 objects/s recovering 2024-09-18T08:24:46.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:46 smithi086 bash[24678]: cluster 2024-09-18T08:24:44.919747+0000 mgr.a (mgr.14152) 254 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 137 KiB/s, 0 objects/s recovering 2024-09-18T08:24:46.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:46 smithi086 bash[24678]: cluster 2024-09-18T08:24:44.919747+0000 mgr.a (mgr.14152) 254 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 137 KiB/s, 0 objects/s recovering 2024-09-18T08:24:48.474 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:48 smithi172 bash[24990]: cluster 2024-09-18T08:24:46.920271+0000 mgr.a (mgr.14152) 255 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-18T08:24:48.475 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:48 smithi172 bash[24990]: cluster 2024-09-18T08:24:46.920271+0000 mgr.a (mgr.14152) 255 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-18T08:24:48.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:48 smithi070 bash[22844]: cluster 2024-09-18T08:24:46.920271+0000 mgr.a (mgr.14152) 255 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-18T08:24:48.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:48 smithi070 bash[22844]: cluster 2024-09-18T08:24:46.920271+0000 mgr.a (mgr.14152) 255 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-18T08:24:48.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:48 smithi086 bash[24678]: cluster 2024-09-18T08:24:46.920271+0000 mgr.a (mgr.14152) 255 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-18T08:24:48.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:48 smithi086 bash[24678]: cluster 2024-09-18T08:24:46.920271+0000 mgr.a (mgr.14152) 255 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-18T08:24:50.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:50 smithi086 bash[24678]: cluster 2024-09-18T08:24:48.920820+0000 mgr.a (mgr.14152) 256 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 80 KiB/s, 0 objects/s recovering 2024-09-18T08:24:50.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:50 smithi086 bash[24678]: cluster 2024-09-18T08:24:48.920820+0000 mgr.a (mgr.14152) 256 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 80 KiB/s, 0 objects/s recovering 2024-09-18T08:24:50.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:50 smithi086 bash[24678]: cephadm 2024-09-18T08:24:49.070094+0000 mgr.a (mgr.14152) 257 : cephadm [INF] Detected new or changed devices on smithi172 2024-09-18T08:24:50.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:50 smithi086 bash[24678]: cephadm 2024-09-18T08:24:49.070094+0000 mgr.a (mgr.14152) 257 : cephadm [INF] Detected new or changed devices on smithi172 2024-09-18T08:24:50.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:50 smithi086 bash[24678]: audit 2024-09-18T08:24:49.078536+0000 mon.a (mon.0) 539 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:50 smithi086 bash[24678]: audit 2024-09-18T08:24:49.078536+0000 mon.a (mon.0) 539 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:50 smithi086 bash[24678]: audit 2024-09-18T08:24:49.086462+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:50 smithi086 bash[24678]: audit 2024-09-18T08:24:49.086462+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:50 smithi086 bash[24678]: audit 2024-09-18T08:24:49.088685+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-18T08:24:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:50 smithi086 bash[24678]: audit 2024-09-18T08:24:49.088685+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-18T08:24:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:50 smithi086 bash[24678]: cephadm 2024-09-18T08:24:49.090146+0000 mgr.a (mgr.14152) 258 : cephadm [INF] Adjusting osd_memory_target on smithi172 to 21361M 2024-09-18T08:24:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:50 smithi086 bash[24678]: cephadm 2024-09-18T08:24:49.090146+0000 mgr.a (mgr.14152) 258 : cephadm [INF] Adjusting osd_memory_target on smithi172 to 21361M 2024-09-18T08:24:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:50 smithi086 bash[24678]: audit 2024-09-18T08:24:49.096177+0000 mon.a (mon.0) 542 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:50 smithi086 bash[24678]: audit 2024-09-18T08:24:49.096177+0000 mon.a (mon.0) 542 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:50 smithi086 bash[24678]: audit 2024-09-18T08:24:49.100292+0000 mon.a (mon.0) 543 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:50 smithi086 bash[24678]: audit 2024-09-18T08:24:49.100292+0000 mon.a (mon.0) 543 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:50 smithi086 bash[24678]: audit 2024-09-18T08:24:49.101993+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:24:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:50 smithi086 bash[24678]: audit 2024-09-18T08:24:49.101993+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:24:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:50 smithi086 bash[24678]: audit 2024-09-18T08:24:49.115859+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:50 smithi086 bash[24678]: audit 2024-09-18T08:24:49.115859+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:50 smithi070 bash[22844]: cluster 2024-09-18T08:24:48.920820+0000 mgr.a (mgr.14152) 256 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 80 KiB/s, 0 objects/s recovering 2024-09-18T08:24:50.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:50 smithi070 bash[22844]: cluster 2024-09-18T08:24:48.920820+0000 mgr.a (mgr.14152) 256 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 80 KiB/s, 0 objects/s recovering 2024-09-18T08:24:50.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:50 smithi070 bash[22844]: cephadm 2024-09-18T08:24:49.070094+0000 mgr.a (mgr.14152) 257 : cephadm [INF] Detected new or changed devices on smithi172 2024-09-18T08:24:50.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:50 smithi070 bash[22844]: cephadm 2024-09-18T08:24:49.070094+0000 mgr.a (mgr.14152) 257 : cephadm [INF] Detected new or changed devices on smithi172 2024-09-18T08:24:50.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:50 smithi070 bash[22844]: audit 2024-09-18T08:24:49.078536+0000 mon.a (mon.0) 539 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:50 smithi070 bash[22844]: audit 2024-09-18T08:24:49.078536+0000 mon.a (mon.0) 539 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:50 smithi070 bash[22844]: audit 2024-09-18T08:24:49.086462+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:50 smithi070 bash[22844]: audit 2024-09-18T08:24:49.086462+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:50 smithi070 bash[22844]: audit 2024-09-18T08:24:49.088685+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-18T08:24:50.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:50 smithi070 bash[22844]: audit 2024-09-18T08:24:49.088685+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-18T08:24:50.480 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:50 smithi070 bash[22844]: cephadm 2024-09-18T08:24:49.090146+0000 mgr.a (mgr.14152) 258 : cephadm [INF] Adjusting osd_memory_target on smithi172 to 21361M 2024-09-18T08:24:50.480 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:50 smithi070 bash[22844]: cephadm 2024-09-18T08:24:49.090146+0000 mgr.a (mgr.14152) 258 : cephadm [INF] Adjusting osd_memory_target on smithi172 to 21361M 2024-09-18T08:24:50.480 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:50 smithi070 bash[22844]: audit 2024-09-18T08:24:49.096177+0000 mon.a (mon.0) 542 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.480 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:50 smithi070 bash[22844]: audit 2024-09-18T08:24:49.096177+0000 mon.a (mon.0) 542 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.480 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:50 smithi070 bash[22844]: audit 2024-09-18T08:24:49.100292+0000 mon.a (mon.0) 543 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:50.480 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:50 smithi070 bash[22844]: audit 2024-09-18T08:24:49.100292+0000 mon.a (mon.0) 543 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:50.480 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:50 smithi070 bash[22844]: audit 2024-09-18T08:24:49.101993+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:24:50.480 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:50 smithi070 bash[22844]: audit 2024-09-18T08:24:49.101993+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:24:50.480 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:50 smithi070 bash[22844]: audit 2024-09-18T08:24:49.115859+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.480 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:50 smithi070 bash[22844]: audit 2024-09-18T08:24:49.115859+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:50 smithi172 bash[24990]: cluster 2024-09-18T08:24:48.920820+0000 mgr.a (mgr.14152) 256 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 80 KiB/s, 0 objects/s recovering 2024-09-18T08:24:50.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:50 smithi172 bash[24990]: cluster 2024-09-18T08:24:48.920820+0000 mgr.a (mgr.14152) 256 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 80 KiB/s, 0 objects/s recovering 2024-09-18T08:24:50.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:50 smithi172 bash[24990]: cephadm 2024-09-18T08:24:49.070094+0000 mgr.a (mgr.14152) 257 : cephadm [INF] Detected new or changed devices on smithi172 2024-09-18T08:24:50.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:50 smithi172 bash[24990]: cephadm 2024-09-18T08:24:49.070094+0000 mgr.a (mgr.14152) 257 : cephadm [INF] Detected new or changed devices on smithi172 2024-09-18T08:24:50.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:50 smithi172 bash[24990]: audit 2024-09-18T08:24:49.078536+0000 mon.a (mon.0) 539 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:50 smithi172 bash[24990]: audit 2024-09-18T08:24:49.078536+0000 mon.a (mon.0) 539 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:50 smithi172 bash[24990]: audit 2024-09-18T08:24:49.086462+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:50 smithi172 bash[24990]: audit 2024-09-18T08:24:49.086462+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:50 smithi172 bash[24990]: audit 2024-09-18T08:24:49.088685+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-18T08:24:50.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:50 smithi172 bash[24990]: audit 2024-09-18T08:24:49.088685+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-18T08:24:50.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:50 smithi172 bash[24990]: cephadm 2024-09-18T08:24:49.090146+0000 mgr.a (mgr.14152) 258 : cephadm [INF] Adjusting osd_memory_target on smithi172 to 21361M 2024-09-18T08:24:50.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:50 smithi172 bash[24990]: cephadm 2024-09-18T08:24:49.090146+0000 mgr.a (mgr.14152) 258 : cephadm [INF] Adjusting osd_memory_target on smithi172 to 21361M 2024-09-18T08:24:50.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:50 smithi172 bash[24990]: audit 2024-09-18T08:24:49.096177+0000 mon.a (mon.0) 542 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:50 smithi172 bash[24990]: audit 2024-09-18T08:24:49.096177+0000 mon.a (mon.0) 542 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:50 smithi172 bash[24990]: audit 2024-09-18T08:24:49.100292+0000 mon.a (mon.0) 543 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:50.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:50 smithi172 bash[24990]: audit 2024-09-18T08:24:49.100292+0000 mon.a (mon.0) 543 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:50.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:50 smithi172 bash[24990]: audit 2024-09-18T08:24:49.101993+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:24:50.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:50 smithi172 bash[24990]: audit 2024-09-18T08:24:49.101993+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:24:50.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:50 smithi172 bash[24990]: audit 2024-09-18T08:24:49.115859+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:50.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:50 smithi172 bash[24990]: audit 2024-09-18T08:24:49.115859+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:24:51.512 INFO:teuthology.orchestra.run.smithi172.stdout: 2024-09-18T08:24:51.547 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi172:vg_nvme/lv_3 2024-09-18T08:24:52.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:52 smithi086 bash[24678]: cluster 2024-09-18T08:24:50.921380+0000 mgr.a (mgr.14152) 259 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-09-18T08:24:52.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:52 smithi086 bash[24678]: cluster 2024-09-18T08:24:50.921380+0000 mgr.a (mgr.14152) 259 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-09-18T08:24:52.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:52 smithi070 bash[22844]: cluster 2024-09-18T08:24:50.921380+0000 mgr.a (mgr.14152) 259 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-09-18T08:24:52.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:52 smithi070 bash[22844]: cluster 2024-09-18T08:24:50.921380+0000 mgr.a (mgr.14152) 259 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-09-18T08:24:52.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:52 smithi172 bash[24990]: cluster 2024-09-18T08:24:50.921380+0000 mgr.a (mgr.14152) 259 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-09-18T08:24:52.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:52 smithi172 bash[24990]: cluster 2024-09-18T08:24:50.921380+0000 mgr.a (mgr.14152) 259 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-09-18T08:24:54.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:54 smithi086 bash[24678]: cluster 2024-09-18T08:24:52.921915+0000 mgr.a (mgr.14152) 260 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T08:24:54.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:54 smithi086 bash[24678]: cluster 2024-09-18T08:24:52.921915+0000 mgr.a (mgr.14152) 260 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T08:24:54.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:54 smithi070 bash[22844]: cluster 2024-09-18T08:24:52.921915+0000 mgr.a (mgr.14152) 260 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T08:24:54.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:54 smithi070 bash[22844]: cluster 2024-09-18T08:24:52.921915+0000 mgr.a (mgr.14152) 260 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T08:24:54.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:54 smithi172 bash[24990]: cluster 2024-09-18T08:24:52.921915+0000 mgr.a (mgr.14152) 260 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T08:24:54.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:54 smithi172 bash[24990]: cluster 2024-09-18T08:24:52.921915+0000 mgr.a (mgr.14152) 260 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-18T08:24:56.279 INFO:teuthology.orchestra.run.smithi172.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.c/config 2024-09-18T08:24:56.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:56 smithi086 bash[24678]: cluster 2024-09-18T08:24:54.922501+0000 mgr.a (mgr.14152) 261 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 49 KiB/s, 0 objects/s recovering 2024-09-18T08:24:56.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:56 smithi086 bash[24678]: cluster 2024-09-18T08:24:54.922501+0000 mgr.a (mgr.14152) 261 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 49 KiB/s, 0 objects/s recovering 2024-09-18T08:24:56.452 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:56 smithi172 bash[24990]: cluster 2024-09-18T08:24:54.922501+0000 mgr.a (mgr.14152) 261 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 49 KiB/s, 0 objects/s recovering 2024-09-18T08:24:56.452 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:56 smithi172 bash[24990]: cluster 2024-09-18T08:24:54.922501+0000 mgr.a (mgr.14152) 261 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 49 KiB/s, 0 objects/s recovering 2024-09-18T08:24:56.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:56 smithi070 bash[22844]: cluster 2024-09-18T08:24:54.922501+0000 mgr.a (mgr.14152) 261 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 49 KiB/s, 0 objects/s recovering 2024-09-18T08:24:56.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:56 smithi070 bash[22844]: cluster 2024-09-18T08:24:54.922501+0000 mgr.a (mgr.14152) 261 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 49 KiB/s, 0 objects/s recovering 2024-09-18T08:24:58.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:58 smithi070 bash[22844]: cluster 2024-09-18T08:24:56.923050+0000 mgr.a (mgr.14152) 262 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:24:58.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:58 smithi070 bash[22844]: cluster 2024-09-18T08:24:56.923050+0000 mgr.a (mgr.14152) 262 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:24:58.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:58 smithi070 bash[22844]: audit 2024-09-18T08:24:57.665151+0000 mgr.a (mgr.14152) 263 : audit [DBG] from='client.24205 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi172:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:24:58.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:58 smithi070 bash[22844]: audit 2024-09-18T08:24:57.665151+0000 mgr.a (mgr.14152) 263 : audit [DBG] from='client.24205 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi172:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:24:58.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:58 smithi070 bash[22844]: audit 2024-09-18T08:24:57.671637+0000 mon.a (mon.0) 546 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:24:58.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:58 smithi070 bash[22844]: audit 2024-09-18T08:24:57.671637+0000 mon.a (mon.0) 546 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:24:58.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:58 smithi070 bash[22844]: audit 2024-09-18T08:24:57.677617+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:24:58.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:58 smithi070 bash[22844]: audit 2024-09-18T08:24:57.677617+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:24:58.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:58 smithi070 bash[22844]: audit 2024-09-18T08:24:57.679132+0000 mon.a (mon.0) 548 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:58.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:24:58 smithi070 bash[22844]: audit 2024-09-18T08:24:57.679132+0000 mon.a (mon.0) 548 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:58.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:58 smithi172 bash[24990]: cluster 2024-09-18T08:24:56.923050+0000 mgr.a (mgr.14152) 262 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:24:58.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:58 smithi172 bash[24990]: cluster 2024-09-18T08:24:56.923050+0000 mgr.a (mgr.14152) 262 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:24:58.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:58 smithi172 bash[24990]: audit 2024-09-18T08:24:57.665151+0000 mgr.a (mgr.14152) 263 : audit [DBG] from='client.24205 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi172:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:24:58.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:58 smithi172 bash[24990]: audit 2024-09-18T08:24:57.665151+0000 mgr.a (mgr.14152) 263 : audit [DBG] from='client.24205 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi172:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:24:58.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:58 smithi172 bash[24990]: audit 2024-09-18T08:24:57.671637+0000 mon.a (mon.0) 546 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:24:58.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:58 smithi172 bash[24990]: audit 2024-09-18T08:24:57.671637+0000 mon.a (mon.0) 546 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:24:58.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:58 smithi172 bash[24990]: audit 2024-09-18T08:24:57.677617+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:24:58.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:58 smithi172 bash[24990]: audit 2024-09-18T08:24:57.677617+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:24:58.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:58 smithi172 bash[24990]: audit 2024-09-18T08:24:57.679132+0000 mon.a (mon.0) 548 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:58.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:24:58 smithi172 bash[24990]: audit 2024-09-18T08:24:57.679132+0000 mon.a (mon.0) 548 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:58.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:58 smithi086 bash[24678]: cluster 2024-09-18T08:24:56.923050+0000 mgr.a (mgr.14152) 262 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:24:58.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:58 smithi086 bash[24678]: cluster 2024-09-18T08:24:56.923050+0000 mgr.a (mgr.14152) 262 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:24:58.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:58 smithi086 bash[24678]: audit 2024-09-18T08:24:57.665151+0000 mgr.a (mgr.14152) 263 : audit [DBG] from='client.24205 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi172:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:24:58.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:58 smithi086 bash[24678]: audit 2024-09-18T08:24:57.665151+0000 mgr.a (mgr.14152) 263 : audit [DBG] from='client.24205 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi172:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:24:58.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:58 smithi086 bash[24678]: audit 2024-09-18T08:24:57.671637+0000 mon.a (mon.0) 546 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:24:58.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:58 smithi086 bash[24678]: audit 2024-09-18T08:24:57.671637+0000 mon.a (mon.0) 546 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-18T08:24:58.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:58 smithi086 bash[24678]: audit 2024-09-18T08:24:57.677617+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:24:58.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:58 smithi086 bash[24678]: audit 2024-09-18T08:24:57.677617+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-18T08:24:58.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:58 smithi086 bash[24678]: audit 2024-09-18T08:24:57.679132+0000 mon.a (mon.0) 548 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:24:58.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:24:58 smithi086 bash[24678]: audit 2024-09-18T08:24:57.679132+0000 mon.a (mon.0) 548 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:25:00.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:00 smithi070 bash[22844]: cluster 2024-09-18T08:24:58.923581+0000 mgr.a (mgr.14152) 264 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:00.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:00 smithi070 bash[22844]: cluster 2024-09-18T08:24:58.923581+0000 mgr.a (mgr.14152) 264 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:00.480 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:00 smithi172 bash[24990]: cluster 2024-09-18T08:24:58.923581+0000 mgr.a (mgr.14152) 264 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:00.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:00 smithi172 bash[24990]: cluster 2024-09-18T08:24:58.923581+0000 mgr.a (mgr.14152) 264 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:00.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:00 smithi086 bash[24678]: cluster 2024-09-18T08:24:58.923581+0000 mgr.a (mgr.14152) 264 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:00.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:00 smithi086 bash[24678]: cluster 2024-09-18T08:24:58.923581+0000 mgr.a (mgr.14152) 264 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:02.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:02 smithi070 bash[22844]: cluster 2024-09-18T08:25:00.924159+0000 mgr.a (mgr.14152) 265 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:02.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:02 smithi070 bash[22844]: cluster 2024-09-18T08:25:00.924159+0000 mgr.a (mgr.14152) 265 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:02.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:02 smithi172 bash[24990]: cluster 2024-09-18T08:25:00.924159+0000 mgr.a (mgr.14152) 265 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:02.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:02 smithi172 bash[24990]: cluster 2024-09-18T08:25:00.924159+0000 mgr.a (mgr.14152) 265 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:02.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:02 smithi086 bash[24678]: cluster 2024-09-18T08:25:00.924159+0000 mgr.a (mgr.14152) 265 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:02.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:02 smithi086 bash[24678]: cluster 2024-09-18T08:25:00.924159+0000 mgr.a (mgr.14152) 265 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:04.231 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:04 smithi172 bash[24990]: cluster 2024-09-18T08:25:02.924707+0000 mgr.a (mgr.14152) 266 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:04.231 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:04 smithi172 bash[24990]: cluster 2024-09-18T08:25:02.924707+0000 mgr.a (mgr.14152) 266 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:04.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:04 smithi070 bash[22844]: cluster 2024-09-18T08:25:02.924707+0000 mgr.a (mgr.14152) 266 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:04.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:04 smithi070 bash[22844]: cluster 2024-09-18T08:25:02.924707+0000 mgr.a (mgr.14152) 266 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:04.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:04 smithi086 bash[24678]: cluster 2024-09-18T08:25:02.924707+0000 mgr.a (mgr.14152) 266 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:04.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:04 smithi086 bash[24678]: cluster 2024-09-18T08:25:02.924707+0000 mgr.a (mgr.14152) 266 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:06.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:06 smithi070 bash[22844]: cluster 2024-09-18T08:25:04.925368+0000 mgr.a (mgr.14152) 267 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:06.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:06 smithi070 bash[22844]: cluster 2024-09-18T08:25:04.925368+0000 mgr.a (mgr.14152) 267 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:06.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:06 smithi070 bash[22844]: audit 2024-09-18T08:25:05.918836+0000 mon.c (mon.1) 10 : audit [INF] from='client.? 172.21.15.172:0/4175921806' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f5e17b51-4491-44dc-a6d7-6faac0d2c645"} : dispatch 2024-09-18T08:25:06.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:06 smithi070 bash[22844]: audit 2024-09-18T08:25:05.918836+0000 mon.c (mon.1) 10 : audit [INF] from='client.? 172.21.15.172:0/4175921806' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f5e17b51-4491-44dc-a6d7-6faac0d2c645"} : dispatch 2024-09-18T08:25:06.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:06 smithi070 bash[22844]: audit 2024-09-18T08:25:05.922432+0000 mon.a (mon.0) 549 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f5e17b51-4491-44dc-a6d7-6faac0d2c645"} : dispatch 2024-09-18T08:25:06.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:06 smithi070 bash[22844]: audit 2024-09-18T08:25:05.922432+0000 mon.a (mon.0) 549 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f5e17b51-4491-44dc-a6d7-6faac0d2c645"} : dispatch 2024-09-18T08:25:06.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:06 smithi070 bash[22844]: audit 2024-09-18T08:25:05.925940+0000 mon.a (mon.0) 550 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f5e17b51-4491-44dc-a6d7-6faac0d2c645"}]': finished 2024-09-18T08:25:06.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:06 smithi070 bash[22844]: audit 2024-09-18T08:25:05.925940+0000 mon.a (mon.0) 550 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f5e17b51-4491-44dc-a6d7-6faac0d2c645"}]': finished 2024-09-18T08:25:06.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:06 smithi070 bash[22844]: cluster 2024-09-18T08:25:05.931233+0000 mon.a (mon.0) 551 : cluster [DBG] osdmap e34: 6 total, 5 up, 6 in 2024-09-18T08:25:06.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:06 smithi070 bash[22844]: cluster 2024-09-18T08:25:05.931233+0000 mon.a (mon.0) 551 : cluster [DBG] osdmap e34: 6 total, 5 up, 6 in 2024-09-18T08:25:06.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:06 smithi070 bash[22844]: audit 2024-09-18T08:25:05.931898+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:06.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:06 smithi070 bash[22844]: audit 2024-09-18T08:25:05.931898+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:06.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:06 smithi172 bash[24990]: cluster 2024-09-18T08:25:04.925368+0000 mgr.a (mgr.14152) 267 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:06.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:06 smithi172 bash[24990]: cluster 2024-09-18T08:25:04.925368+0000 mgr.a (mgr.14152) 267 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:06.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:06 smithi172 bash[24990]: audit 2024-09-18T08:25:05.918836+0000 mon.c (mon.1) 10 : audit [INF] from='client.? 172.21.15.172:0/4175921806' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f5e17b51-4491-44dc-a6d7-6faac0d2c645"} : dispatch 2024-09-18T08:25:06.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:06 smithi172 bash[24990]: audit 2024-09-18T08:25:05.918836+0000 mon.c (mon.1) 10 : audit [INF] from='client.? 172.21.15.172:0/4175921806' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f5e17b51-4491-44dc-a6d7-6faac0d2c645"} : dispatch 2024-09-18T08:25:06.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:06 smithi172 bash[24990]: audit 2024-09-18T08:25:05.922432+0000 mon.a (mon.0) 549 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f5e17b51-4491-44dc-a6d7-6faac0d2c645"} : dispatch 2024-09-18T08:25:06.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:06 smithi172 bash[24990]: audit 2024-09-18T08:25:05.922432+0000 mon.a (mon.0) 549 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f5e17b51-4491-44dc-a6d7-6faac0d2c645"} : dispatch 2024-09-18T08:25:06.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:06 smithi172 bash[24990]: audit 2024-09-18T08:25:05.925940+0000 mon.a (mon.0) 550 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f5e17b51-4491-44dc-a6d7-6faac0d2c645"}]': finished 2024-09-18T08:25:06.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:06 smithi172 bash[24990]: audit 2024-09-18T08:25:05.925940+0000 mon.a (mon.0) 550 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f5e17b51-4491-44dc-a6d7-6faac0d2c645"}]': finished 2024-09-18T08:25:06.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:06 smithi172 bash[24990]: cluster 2024-09-18T08:25:05.931233+0000 mon.a (mon.0) 551 : cluster [DBG] osdmap e34: 6 total, 5 up, 6 in 2024-09-18T08:25:06.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:06 smithi172 bash[24990]: cluster 2024-09-18T08:25:05.931233+0000 mon.a (mon.0) 551 : cluster [DBG] osdmap e34: 6 total, 5 up, 6 in 2024-09-18T08:25:06.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:06 smithi172 bash[24990]: audit 2024-09-18T08:25:05.931898+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:06.482 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:06 smithi172 bash[24990]: audit 2024-09-18T08:25:05.931898+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:06.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:06 smithi086 bash[24678]: cluster 2024-09-18T08:25:04.925368+0000 mgr.a (mgr.14152) 267 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:06.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:06 smithi086 bash[24678]: cluster 2024-09-18T08:25:04.925368+0000 mgr.a (mgr.14152) 267 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:06.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:06 smithi086 bash[24678]: audit 2024-09-18T08:25:05.918836+0000 mon.c (mon.1) 10 : audit [INF] from='client.? 172.21.15.172:0/4175921806' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f5e17b51-4491-44dc-a6d7-6faac0d2c645"} : dispatch 2024-09-18T08:25:06.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:06 smithi086 bash[24678]: audit 2024-09-18T08:25:05.918836+0000 mon.c (mon.1) 10 : audit [INF] from='client.? 172.21.15.172:0/4175921806' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f5e17b51-4491-44dc-a6d7-6faac0d2c645"} : dispatch 2024-09-18T08:25:06.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:06 smithi086 bash[24678]: audit 2024-09-18T08:25:05.922432+0000 mon.a (mon.0) 549 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f5e17b51-4491-44dc-a6d7-6faac0d2c645"} : dispatch 2024-09-18T08:25:06.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:06 smithi086 bash[24678]: audit 2024-09-18T08:25:05.922432+0000 mon.a (mon.0) 549 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f5e17b51-4491-44dc-a6d7-6faac0d2c645"} : dispatch 2024-09-18T08:25:06.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:06 smithi086 bash[24678]: audit 2024-09-18T08:25:05.925940+0000 mon.a (mon.0) 550 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f5e17b51-4491-44dc-a6d7-6faac0d2c645"}]': finished 2024-09-18T08:25:06.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:06 smithi086 bash[24678]: audit 2024-09-18T08:25:05.925940+0000 mon.a (mon.0) 550 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f5e17b51-4491-44dc-a6d7-6faac0d2c645"}]': finished 2024-09-18T08:25:06.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:06 smithi086 bash[24678]: cluster 2024-09-18T08:25:05.931233+0000 mon.a (mon.0) 551 : cluster [DBG] osdmap e34: 6 total, 5 up, 6 in 2024-09-18T08:25:06.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:06 smithi086 bash[24678]: cluster 2024-09-18T08:25:05.931233+0000 mon.a (mon.0) 551 : cluster [DBG] osdmap e34: 6 total, 5 up, 6 in 2024-09-18T08:25:06.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:06 smithi086 bash[24678]: audit 2024-09-18T08:25:05.931898+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:06.590 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:06 smithi086 bash[24678]: audit 2024-09-18T08:25:05.931898+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:07.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:07 smithi070 bash[22844]: audit 2024-09-18T08:25:06.565689+0000 mon.c (mon.1) 11 : audit [DBG] from='client.? 172.21.15.172:0/2161121909' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:25:07.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:07 smithi070 bash[22844]: audit 2024-09-18T08:25:06.565689+0000 mon.c (mon.1) 11 : audit [DBG] from='client.? 172.21.15.172:0/2161121909' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:25:07.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:07 smithi172 bash[24990]: audit 2024-09-18T08:25:06.565689+0000 mon.c (mon.1) 11 : audit [DBG] from='client.? 172.21.15.172:0/2161121909' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:25:07.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:07 smithi172 bash[24990]: audit 2024-09-18T08:25:06.565689+0000 mon.c (mon.1) 11 : audit [DBG] from='client.? 172.21.15.172:0/2161121909' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:25:07.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:07 smithi086 bash[24678]: audit 2024-09-18T08:25:06.565689+0000 mon.c (mon.1) 11 : audit [DBG] from='client.? 172.21.15.172:0/2161121909' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:25:07.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:07 smithi086 bash[24678]: audit 2024-09-18T08:25:06.565689+0000 mon.c (mon.1) 11 : audit [DBG] from='client.? 172.21.15.172:0/2161121909' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-18T08:25:08.477 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:08 smithi070 bash[22844]: cluster 2024-09-18T08:25:06.925948+0000 mgr.a (mgr.14152) 268 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:08.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:08 smithi070 bash[22844]: cluster 2024-09-18T08:25:06.925948+0000 mgr.a (mgr.14152) 268 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:08.480 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:08 smithi172 bash[24990]: cluster 2024-09-18T08:25:06.925948+0000 mgr.a (mgr.14152) 268 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:08.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:08 smithi172 bash[24990]: cluster 2024-09-18T08:25:06.925948+0000 mgr.a (mgr.14152) 268 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:08.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:08 smithi086 bash[24678]: cluster 2024-09-18T08:25:06.925948+0000 mgr.a (mgr.14152) 268 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:08.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:08 smithi086 bash[24678]: cluster 2024-09-18T08:25:06.925948+0000 mgr.a (mgr.14152) 268 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:10.477 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:10 smithi070 bash[22844]: cluster 2024-09-18T08:25:08.926485+0000 mgr.a (mgr.14152) 269 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:10.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:10 smithi070 bash[22844]: cluster 2024-09-18T08:25:08.926485+0000 mgr.a (mgr.14152) 269 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:10.480 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:10 smithi172 bash[24990]: cluster 2024-09-18T08:25:08.926485+0000 mgr.a (mgr.14152) 269 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:10.480 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:10 smithi172 bash[24990]: cluster 2024-09-18T08:25:08.926485+0000 mgr.a (mgr.14152) 269 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:10.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:10 smithi086 bash[24678]: cluster 2024-09-18T08:25:08.926485+0000 mgr.a (mgr.14152) 269 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:10.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:10 smithi086 bash[24678]: cluster 2024-09-18T08:25:08.926485+0000 mgr.a (mgr.14152) 269 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:12.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:12 smithi070 bash[22844]: cluster 2024-09-18T08:25:10.927009+0000 mgr.a (mgr.14152) 270 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:12.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:12 smithi070 bash[22844]: cluster 2024-09-18T08:25:10.927009+0000 mgr.a (mgr.14152) 270 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:12.480 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:12 smithi172 bash[24990]: cluster 2024-09-18T08:25:10.927009+0000 mgr.a (mgr.14152) 270 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:12.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:12 smithi172 bash[24990]: cluster 2024-09-18T08:25:10.927009+0000 mgr.a (mgr.14152) 270 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:12.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:12 smithi086 bash[24678]: cluster 2024-09-18T08:25:10.927009+0000 mgr.a (mgr.14152) 270 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:12.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:12 smithi086 bash[24678]: cluster 2024-09-18T08:25:10.927009+0000 mgr.a (mgr.14152) 270 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:14.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:14 smithi070 bash[22844]: cluster 2024-09-18T08:25:12.927601+0000 mgr.a (mgr.14152) 271 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:14.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:14 smithi070 bash[22844]: cluster 2024-09-18T08:25:12.927601+0000 mgr.a (mgr.14152) 271 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:14.480 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:14 smithi172 bash[24990]: cluster 2024-09-18T08:25:12.927601+0000 mgr.a (mgr.14152) 271 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:14.480 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:14 smithi172 bash[24990]: cluster 2024-09-18T08:25:12.927601+0000 mgr.a (mgr.14152) 271 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:14.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:14 smithi086 bash[24678]: cluster 2024-09-18T08:25:12.927601+0000 mgr.a (mgr.14152) 271 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:14.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:14 smithi086 bash[24678]: cluster 2024-09-18T08:25:12.927601+0000 mgr.a (mgr.14152) 271 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:16.453 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:16 smithi172 bash[24990]: cluster 2024-09-18T08:25:14.928165+0000 mgr.a (mgr.14152) 272 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:16.454 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:16 smithi172 bash[24990]: cluster 2024-09-18T08:25:14.928165+0000 mgr.a (mgr.14152) 272 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:16.477 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:16 smithi070 bash[22844]: cluster 2024-09-18T08:25:14.928165+0000 mgr.a (mgr.14152) 272 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:16.477 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:16 smithi070 bash[22844]: cluster 2024-09-18T08:25:14.928165+0000 mgr.a (mgr.14152) 272 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:16.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:16 smithi086 bash[24678]: cluster 2024-09-18T08:25:14.928165+0000 mgr.a (mgr.14152) 272 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:16.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:16 smithi086 bash[24678]: cluster 2024-09-18T08:25:14.928165+0000 mgr.a (mgr.14152) 272 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:18.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:18 smithi070 bash[22844]: cluster 2024-09-18T08:25:16.928629+0000 mgr.a (mgr.14152) 273 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:18.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:18 smithi070 bash[22844]: cluster 2024-09-18T08:25:16.928629+0000 mgr.a (mgr.14152) 273 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:18.480 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:18 smithi172 bash[24990]: cluster 2024-09-18T08:25:16.928629+0000 mgr.a (mgr.14152) 273 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:18.480 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:18 smithi172 bash[24990]: cluster 2024-09-18T08:25:16.928629+0000 mgr.a (mgr.14152) 273 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:18.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:18 smithi086 bash[24678]: cluster 2024-09-18T08:25:16.928629+0000 mgr.a (mgr.14152) 273 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:18.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:18 smithi086 bash[24678]: cluster 2024-09-18T08:25:16.928629+0000 mgr.a (mgr.14152) 273 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:19.477 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:19 smithi070 bash[22844]: audit 2024-09-18T08:25:18.717346+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-18T08:25:19.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:19 smithi070 bash[22844]: audit 2024-09-18T08:25:18.717346+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-18T08:25:19.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:19 smithi070 bash[22844]: audit 2024-09-18T08:25:18.719097+0000 mon.a (mon.0) 554 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:25:19.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:19 smithi070 bash[22844]: audit 2024-09-18T08:25:18.719097+0000 mon.a (mon.0) 554 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:25:19.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:19 smithi070 bash[22844]: cephadm 2024-09-18T08:25:18.720741+0000 mgr.a (mgr.14152) 274 : cephadm [INF] Deploying daemon osd.5 on smithi172 2024-09-18T08:25:19.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:19 smithi070 bash[22844]: cephadm 2024-09-18T08:25:18.720741+0000 mgr.a (mgr.14152) 274 : cephadm [INF] Deploying daemon osd.5 on smithi172 2024-09-18T08:25:19.480 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:19 smithi172 bash[24990]: audit 2024-09-18T08:25:18.717346+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-18T08:25:19.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:19 smithi172 bash[24990]: audit 2024-09-18T08:25:18.717346+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-18T08:25:19.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:19 smithi172 bash[24990]: audit 2024-09-18T08:25:18.719097+0000 mon.a (mon.0) 554 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:25:19.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:19 smithi172 bash[24990]: audit 2024-09-18T08:25:18.719097+0000 mon.a (mon.0) 554 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:25:19.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:19 smithi172 bash[24990]: cephadm 2024-09-18T08:25:18.720741+0000 mgr.a (mgr.14152) 274 : cephadm [INF] Deploying daemon osd.5 on smithi172 2024-09-18T08:25:19.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:19 smithi172 bash[24990]: cephadm 2024-09-18T08:25:18.720741+0000 mgr.a (mgr.14152) 274 : cephadm [INF] Deploying daemon osd.5 on smithi172 2024-09-18T08:25:19.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:19 smithi086 bash[24678]: audit 2024-09-18T08:25:18.717346+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-18T08:25:19.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:19 smithi086 bash[24678]: audit 2024-09-18T08:25:18.717346+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-18T08:25:19.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:19 smithi086 bash[24678]: audit 2024-09-18T08:25:18.719097+0000 mon.a (mon.0) 554 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:25:19.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:19 smithi086 bash[24678]: audit 2024-09-18T08:25:18.719097+0000 mon.a (mon.0) 554 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:25:19.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:19 smithi086 bash[24678]: cephadm 2024-09-18T08:25:18.720741+0000 mgr.a (mgr.14152) 274 : cephadm [INF] Deploying daemon osd.5 on smithi172 2024-09-18T08:25:19.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:19 smithi086 bash[24678]: cephadm 2024-09-18T08:25:18.720741+0000 mgr.a (mgr.14152) 274 : cephadm [INF] Deploying daemon osd.5 on smithi172 2024-09-18T08:25:20.451 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:20 smithi172 bash[24990]: cluster 2024-09-18T08:25:18.929165+0000 mgr.a (mgr.14152) 275 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:20.452 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:20 smithi172 bash[24990]: cluster 2024-09-18T08:25:18.929165+0000 mgr.a (mgr.14152) 275 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:20.477 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:20 smithi070 bash[22844]: cluster 2024-09-18T08:25:18.929165+0000 mgr.a (mgr.14152) 275 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:20.477 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:20 smithi070 bash[22844]: cluster 2024-09-18T08:25:18.929165+0000 mgr.a (mgr.14152) 275 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:20.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:20 smithi086 bash[24678]: cluster 2024-09-18T08:25:18.929165+0000 mgr.a (mgr.14152) 275 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:20.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:20 smithi086 bash[24678]: cluster 2024-09-18T08:25:18.929165+0000 mgr.a (mgr.14152) 275 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:22.477 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:22 smithi070 bash[22844]: cluster 2024-09-18T08:25:20.929693+0000 mgr.a (mgr.14152) 276 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:22.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:22 smithi070 bash[22844]: cluster 2024-09-18T08:25:20.929693+0000 mgr.a (mgr.14152) 276 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:22.480 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:22 smithi172 bash[24990]: cluster 2024-09-18T08:25:20.929693+0000 mgr.a (mgr.14152) 276 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:22.480 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:22 smithi172 bash[24990]: cluster 2024-09-18T08:25:20.929693+0000 mgr.a (mgr.14152) 276 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:22.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:22 smithi086 bash[24678]: cluster 2024-09-18T08:25:20.929693+0000 mgr.a (mgr.14152) 276 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:22.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:22 smithi086 bash[24678]: cluster 2024-09-18T08:25:20.929693+0000 mgr.a (mgr.14152) 276 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:22.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:22 smithi172 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:25:22.981 INFO:journalctl@ceph.osd.4.smithi172.stdout:Sep 18 08:25:22 smithi172 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:25:23.310 INFO:journalctl@ceph.osd.4.smithi172.stdout:Sep 18 08:25:23 smithi172 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:25:23.310 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:23 smithi172 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:25:24.477 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:24 smithi070 bash[22844]: cluster 2024-09-18T08:25:22.930222+0000 mgr.a (mgr.14152) 277 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:24.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:24 smithi070 bash[22844]: cluster 2024-09-18T08:25:22.930222+0000 mgr.a (mgr.14152) 277 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:24.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:24 smithi070 bash[22844]: audit 2024-09-18T08:25:23.252915+0000 mon.a (mon.0) 555 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:25:24.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:24 smithi070 bash[22844]: audit 2024-09-18T08:25:23.252915+0000 mon.a (mon.0) 555 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:25:24.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:24 smithi070 bash[22844]: audit 2024-09-18T08:25:23.259893+0000 mon.a (mon.0) 556 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:24.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:24 smithi070 bash[22844]: audit 2024-09-18T08:25:23.259893+0000 mon.a (mon.0) 556 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:24.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:24 smithi070 bash[22844]: audit 2024-09-18T08:25:23.267383+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:24.479 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:24 smithi070 bash[22844]: audit 2024-09-18T08:25:23.267383+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:24.480 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:24 smithi172 bash[24990]: cluster 2024-09-18T08:25:22.930222+0000 mgr.a (mgr.14152) 277 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:24.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:24 smithi172 bash[24990]: cluster 2024-09-18T08:25:22.930222+0000 mgr.a (mgr.14152) 277 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:24.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:24 smithi172 bash[24990]: audit 2024-09-18T08:25:23.252915+0000 mon.a (mon.0) 555 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:25:24.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:24 smithi172 bash[24990]: audit 2024-09-18T08:25:23.252915+0000 mon.a (mon.0) 555 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:25:24.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:24 smithi172 bash[24990]: audit 2024-09-18T08:25:23.259893+0000 mon.a (mon.0) 556 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:24.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:24 smithi172 bash[24990]: audit 2024-09-18T08:25:23.259893+0000 mon.a (mon.0) 556 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:24.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:24 smithi172 bash[24990]: audit 2024-09-18T08:25:23.267383+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:24.481 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:24 smithi172 bash[24990]: audit 2024-09-18T08:25:23.267383+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:24.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:24 smithi086 bash[24678]: cluster 2024-09-18T08:25:22.930222+0000 mgr.a (mgr.14152) 277 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:24.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:24 smithi086 bash[24678]: cluster 2024-09-18T08:25:22.930222+0000 mgr.a (mgr.14152) 277 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:24.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:24 smithi086 bash[24678]: audit 2024-09-18T08:25:23.252915+0000 mon.a (mon.0) 555 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:25:24.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:24 smithi086 bash[24678]: audit 2024-09-18T08:25:23.252915+0000 mon.a (mon.0) 555 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:25:24.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:24 smithi086 bash[24678]: audit 2024-09-18T08:25:23.259893+0000 mon.a (mon.0) 556 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:24.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:24 smithi086 bash[24678]: audit 2024-09-18T08:25:23.259893+0000 mon.a (mon.0) 556 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:24.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:24 smithi086 bash[24678]: audit 2024-09-18T08:25:23.267383+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:24.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:24 smithi086 bash[24678]: audit 2024-09-18T08:25:23.267383+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:26.477 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:26 smithi070 bash[22844]: cluster 2024-09-18T08:25:24.930742+0000 mgr.a (mgr.14152) 278 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:26.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:26 smithi070 bash[22844]: cluster 2024-09-18T08:25:24.930742+0000 mgr.a (mgr.14152) 278 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:26.480 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:26 smithi172 bash[24990]: cluster 2024-09-18T08:25:24.930742+0000 mgr.a (mgr.14152) 278 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:26.480 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:26 smithi172 bash[24990]: cluster 2024-09-18T08:25:24.930742+0000 mgr.a (mgr.14152) 278 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:26.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:26 smithi086 bash[24678]: cluster 2024-09-18T08:25:24.930742+0000 mgr.a (mgr.14152) 278 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:26.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:26 smithi086 bash[24678]: cluster 2024-09-18T08:25:24.930742+0000 mgr.a (mgr.14152) 278 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:28.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:28 smithi172 bash[24990]: cluster 2024-09-18T08:25:26.931267+0000 mgr.a (mgr.14152) 279 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:28.231 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:28 smithi172 bash[24990]: cluster 2024-09-18T08:25:26.931267+0000 mgr.a (mgr.14152) 279 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:28.477 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:28 smithi070 bash[22844]: cluster 2024-09-18T08:25:26.931267+0000 mgr.a (mgr.14152) 279 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:28.477 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:28 smithi070 bash[22844]: cluster 2024-09-18T08:25:26.931267+0000 mgr.a (mgr.14152) 279 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:28.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:28 smithi086 bash[24678]: cluster 2024-09-18T08:25:26.931267+0000 mgr.a (mgr.14152) 279 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:28.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:28 smithi086 bash[24678]: cluster 2024-09-18T08:25:26.931267+0000 mgr.a (mgr.14152) 279 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:30.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:30 smithi070 bash[22844]: cluster 2024-09-18T08:25:28.931822+0000 mgr.a (mgr.14152) 280 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:30.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:30 smithi070 bash[22844]: cluster 2024-09-18T08:25:28.931822+0000 mgr.a (mgr.14152) 280 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:30.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:30 smithi070 bash[22844]: audit 2024-09-18T08:25:29.372467+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:30.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:30 smithi070 bash[22844]: audit 2024-09-18T08:25:29.372467+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:30.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:30 smithi070 bash[22844]: audit 2024-09-18T08:25:29.380275+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:30.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:30 smithi070 bash[22844]: audit 2024-09-18T08:25:29.380275+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:30.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:30 smithi070 bash[22844]: audit 2024-09-18T08:25:29.381993+0000 mon.a (mon.0) 560 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:25:30.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:30 smithi070 bash[22844]: audit 2024-09-18T08:25:29.381993+0000 mon.a (mon.0) 560 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:25:30.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:30 smithi070 bash[22844]: audit 2024-09-18T08:25:29.383823+0000 mon.a (mon.0) 561 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:25:30.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:30 smithi070 bash[22844]: audit 2024-09-18T08:25:29.383823+0000 mon.a (mon.0) 561 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:25:30.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:30 smithi070 bash[22844]: audit 2024-09-18T08:25:29.393621+0000 mon.a (mon.0) 562 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:30.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:30 smithi070 bash[22844]: audit 2024-09-18T08:25:29.393621+0000 mon.a (mon.0) 562 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:30.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:30 smithi172 bash[24990]: cluster 2024-09-18T08:25:28.931822+0000 mgr.a (mgr.14152) 280 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:30.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:30 smithi172 bash[24990]: cluster 2024-09-18T08:25:28.931822+0000 mgr.a (mgr.14152) 280 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:30.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:30 smithi172 bash[24990]: audit 2024-09-18T08:25:29.372467+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:30.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:30 smithi172 bash[24990]: audit 2024-09-18T08:25:29.372467+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:30.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:30 smithi172 bash[24990]: audit 2024-09-18T08:25:29.380275+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:30.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:30 smithi172 bash[24990]: audit 2024-09-18T08:25:29.380275+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:30.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:30 smithi172 bash[24990]: audit 2024-09-18T08:25:29.381993+0000 mon.a (mon.0) 560 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:25:30.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:30 smithi172 bash[24990]: audit 2024-09-18T08:25:29.381993+0000 mon.a (mon.0) 560 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:25:30.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:30 smithi172 bash[24990]: audit 2024-09-18T08:25:29.383823+0000 mon.a (mon.0) 561 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:25:30.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:30 smithi172 bash[24990]: audit 2024-09-18T08:25:29.383823+0000 mon.a (mon.0) 561 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:25:30.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:30 smithi172 bash[24990]: audit 2024-09-18T08:25:29.393621+0000 mon.a (mon.0) 562 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:30.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:30 smithi172 bash[24990]: audit 2024-09-18T08:25:29.393621+0000 mon.a (mon.0) 562 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:30.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:30 smithi086 bash[24678]: cluster 2024-09-18T08:25:28.931822+0000 mgr.a (mgr.14152) 280 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:30.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:30 smithi086 bash[24678]: cluster 2024-09-18T08:25:28.931822+0000 mgr.a (mgr.14152) 280 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:30.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:30 smithi086 bash[24678]: audit 2024-09-18T08:25:29.372467+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:30.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:30 smithi086 bash[24678]: audit 2024-09-18T08:25:29.372467+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:30.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:30 smithi086 bash[24678]: audit 2024-09-18T08:25:29.380275+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:30.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:30 smithi086 bash[24678]: audit 2024-09-18T08:25:29.380275+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:30.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:30 smithi086 bash[24678]: audit 2024-09-18T08:25:29.381993+0000 mon.a (mon.0) 560 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:25:30.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:30 smithi086 bash[24678]: audit 2024-09-18T08:25:29.381993+0000 mon.a (mon.0) 560 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:25:30.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:30 smithi086 bash[24678]: audit 2024-09-18T08:25:29.383823+0000 mon.a (mon.0) 561 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:25:30.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:30 smithi086 bash[24678]: audit 2024-09-18T08:25:29.383823+0000 mon.a (mon.0) 561 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:25:30.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:30 smithi086 bash[24678]: audit 2024-09-18T08:25:29.393621+0000 mon.a (mon.0) 562 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:30.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:30 smithi086 bash[24678]: audit 2024-09-18T08:25:29.393621+0000 mon.a (mon.0) 562 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:32.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:32 smithi070 bash[22844]: cluster 2024-09-18T08:25:30.932364+0000 mgr.a (mgr.14152) 281 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:32.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:32 smithi070 bash[22844]: cluster 2024-09-18T08:25:30.932364+0000 mgr.a (mgr.14152) 281 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:32.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:32 smithi172 bash[24990]: cluster 2024-09-18T08:25:30.932364+0000 mgr.a (mgr.14152) 281 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:32.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:32 smithi172 bash[24990]: cluster 2024-09-18T08:25:30.932364+0000 mgr.a (mgr.14152) 281 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:32.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:32 smithi086 bash[24678]: cluster 2024-09-18T08:25:30.932364+0000 mgr.a (mgr.14152) 281 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:32.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:32 smithi086 bash[24678]: cluster 2024-09-18T08:25:30.932364+0000 mgr.a (mgr.14152) 281 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:34.716 INFO:teuthology.orchestra.run.smithi172.stdout:Created osd(s) 5 on host 'smithi172' 2024-09-18T08:25:34.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:34 smithi070 bash[22844]: cluster 2024-09-18T08:25:32.932973+0000 mgr.a (mgr.14152) 282 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:34.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:34 smithi070 bash[22844]: cluster 2024-09-18T08:25:32.932973+0000 mgr.a (mgr.14152) 282 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:34.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:34 smithi070 bash[22844]: audit 2024-09-18T08:25:34.239534+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.172:6808/2478561766,v1:172.21.15.172:6809/2478561766]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-18T08:25:34.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:34 smithi070 bash[22844]: audit 2024-09-18T08:25:34.239534+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.172:6808/2478561766,v1:172.21.15.172:6809/2478561766]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-18T08:25:34.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:34 smithi070 bash[22844]: audit 2024-09-18T08:25:34.243184+0000 mon.a (mon.0) 563 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-18T08:25:34.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:34 smithi070 bash[22844]: audit 2024-09-18T08:25:34.243184+0000 mon.a (mon.0) 563 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-18T08:25:34.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:34 smithi172 bash[24990]: cluster 2024-09-18T08:25:32.932973+0000 mgr.a (mgr.14152) 282 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:34.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:34 smithi172 bash[24990]: cluster 2024-09-18T08:25:32.932973+0000 mgr.a (mgr.14152) 282 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:34.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:34 smithi172 bash[24990]: audit 2024-09-18T08:25:34.239534+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.172:6808/2478561766,v1:172.21.15.172:6809/2478561766]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-18T08:25:34.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:34 smithi172 bash[24990]: audit 2024-09-18T08:25:34.239534+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.172:6808/2478561766,v1:172.21.15.172:6809/2478561766]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-18T08:25:34.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:34 smithi172 bash[24990]: audit 2024-09-18T08:25:34.243184+0000 mon.a (mon.0) 563 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-18T08:25:34.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:34 smithi172 bash[24990]: audit 2024-09-18T08:25:34.243184+0000 mon.a (mon.0) 563 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-18T08:25:34.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:34 smithi086 bash[24678]: cluster 2024-09-18T08:25:32.932973+0000 mgr.a (mgr.14152) 282 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:34.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:34 smithi086 bash[24678]: cluster 2024-09-18T08:25:32.932973+0000 mgr.a (mgr.14152) 282 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:34.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:34 smithi086 bash[24678]: audit 2024-09-18T08:25:34.239534+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.172:6808/2478561766,v1:172.21.15.172:6809/2478561766]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-18T08:25:34.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:34 smithi086 bash[24678]: audit 2024-09-18T08:25:34.239534+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.172:6808/2478561766,v1:172.21.15.172:6809/2478561766]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-18T08:25:34.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:34 smithi086 bash[24678]: audit 2024-09-18T08:25:34.243184+0000 mon.a (mon.0) 563 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-18T08:25:34.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:34 smithi086 bash[24678]: audit 2024-09-18T08:25:34.243184+0000 mon.a (mon.0) 563 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-18T08:25:35.269 DEBUG:teuthology.orchestra.run.smithi172:osd.5> sudo journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@osd.5.service 2024-09-18T08:25:35.272 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-09-18T08:25:35.272 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-18T08:25:35.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:35 smithi070 bash[22844]: audit 2024-09-18T08:25:34.379752+0000 mon.a (mon.0) 564 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-18T08:25:35.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:35 smithi070 bash[22844]: audit 2024-09-18T08:25:34.379752+0000 mon.a (mon.0) 564 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-18T08:25:35.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:35 smithi070 bash[22844]: audit 2024-09-18T08:25:34.383739+0000 mon.c (mon.1) 13 : audit [INF] from='osd.5 [v2:172.21.15.172:6808/2478561766,v1:172.21.15.172:6809/2478561766]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:25:35.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:35 smithi070 bash[22844]: audit 2024-09-18T08:25:34.383739+0000 mon.c (mon.1) 13 : audit [INF] from='osd.5 [v2:172.21.15.172:6808/2478561766,v1:172.21.15.172:6809/2478561766]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:25:35.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:35 smithi070 bash[22844]: cluster 2024-09-18T08:25:34.385042+0000 mon.a (mon.0) 565 : cluster [DBG] osdmap e35: 6 total, 5 up, 6 in 2024-09-18T08:25:35.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:35 smithi070 bash[22844]: cluster 2024-09-18T08:25:34.385042+0000 mon.a (mon.0) 565 : cluster [DBG] osdmap e35: 6 total, 5 up, 6 in 2024-09-18T08:25:35.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:35 smithi070 bash[22844]: audit 2024-09-18T08:25:34.385899+0000 mon.a (mon.0) 566 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:35.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:35 smithi070 bash[22844]: audit 2024-09-18T08:25:34.385899+0000 mon.a (mon.0) 566 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:35.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:35 smithi070 bash[22844]: audit 2024-09-18T08:25:34.393339+0000 mon.a (mon.0) 567 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:25:35.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:35 smithi070 bash[22844]: audit 2024-09-18T08:25:34.393339+0000 mon.a (mon.0) 567 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:25:35.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:35 smithi070 bash[22844]: audit 2024-09-18T08:25:34.699446+0000 mon.a (mon.0) 568 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:25:35.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:35 smithi070 bash[22844]: audit 2024-09-18T08:25:34.699446+0000 mon.a (mon.0) 568 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:25:35.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:35 smithi070 bash[22844]: audit 2024-09-18T08:25:34.706735+0000 mon.a (mon.0) 569 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:35.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:35 smithi070 bash[22844]: audit 2024-09-18T08:25:34.706735+0000 mon.a (mon.0) 569 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:35.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:35 smithi070 bash[22844]: audit 2024-09-18T08:25:34.714563+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:35.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:35 smithi070 bash[22844]: audit 2024-09-18T08:25:34.714563+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:35.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:35 smithi172 bash[24990]: audit 2024-09-18T08:25:34.379752+0000 mon.a (mon.0) 564 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-18T08:25:35.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:35 smithi172 bash[24990]: audit 2024-09-18T08:25:34.379752+0000 mon.a (mon.0) 564 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-18T08:25:35.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:35 smithi172 bash[24990]: audit 2024-09-18T08:25:34.383739+0000 mon.c (mon.1) 13 : audit [INF] from='osd.5 [v2:172.21.15.172:6808/2478561766,v1:172.21.15.172:6809/2478561766]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:25:35.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:35 smithi172 bash[24990]: audit 2024-09-18T08:25:34.383739+0000 mon.c (mon.1) 13 : audit [INF] from='osd.5 [v2:172.21.15.172:6808/2478561766,v1:172.21.15.172:6809/2478561766]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:25:35.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:35 smithi172 bash[24990]: cluster 2024-09-18T08:25:34.385042+0000 mon.a (mon.0) 565 : cluster [DBG] osdmap e35: 6 total, 5 up, 6 in 2024-09-18T08:25:35.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:35 smithi172 bash[24990]: cluster 2024-09-18T08:25:34.385042+0000 mon.a (mon.0) 565 : cluster [DBG] osdmap e35: 6 total, 5 up, 6 in 2024-09-18T08:25:35.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:35 smithi172 bash[24990]: audit 2024-09-18T08:25:34.385899+0000 mon.a (mon.0) 566 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:35.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:35 smithi172 bash[24990]: audit 2024-09-18T08:25:34.385899+0000 mon.a (mon.0) 566 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:35.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:35 smithi172 bash[24990]: audit 2024-09-18T08:25:34.393339+0000 mon.a (mon.0) 567 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:25:35.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:35 smithi172 bash[24990]: audit 2024-09-18T08:25:34.393339+0000 mon.a (mon.0) 567 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:25:35.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:35 smithi172 bash[24990]: audit 2024-09-18T08:25:34.699446+0000 mon.a (mon.0) 568 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:25:35.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:35 smithi172 bash[24990]: audit 2024-09-18T08:25:34.699446+0000 mon.a (mon.0) 568 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:25:35.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:35 smithi172 bash[24990]: audit 2024-09-18T08:25:34.706735+0000 mon.a (mon.0) 569 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:35.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:35 smithi172 bash[24990]: audit 2024-09-18T08:25:34.706735+0000 mon.a (mon.0) 569 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:35.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:35 smithi172 bash[24990]: audit 2024-09-18T08:25:34.714563+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:35.732 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:35 smithi172 bash[24990]: audit 2024-09-18T08:25:34.714563+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:35.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:35 smithi086 bash[24678]: audit 2024-09-18T08:25:34.379752+0000 mon.a (mon.0) 564 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-18T08:25:35.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:35 smithi086 bash[24678]: audit 2024-09-18T08:25:34.379752+0000 mon.a (mon.0) 564 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-18T08:25:35.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:35 smithi086 bash[24678]: audit 2024-09-18T08:25:34.383739+0000 mon.c (mon.1) 13 : audit [INF] from='osd.5 [v2:172.21.15.172:6808/2478561766,v1:172.21.15.172:6809/2478561766]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:25:35.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:35 smithi086 bash[24678]: audit 2024-09-18T08:25:34.383739+0000 mon.c (mon.1) 13 : audit [INF] from='osd.5 [v2:172.21.15.172:6808/2478561766,v1:172.21.15.172:6809/2478561766]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:25:35.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:35 smithi086 bash[24678]: cluster 2024-09-18T08:25:34.385042+0000 mon.a (mon.0) 565 : cluster [DBG] osdmap e35: 6 total, 5 up, 6 in 2024-09-18T08:25:35.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:35 smithi086 bash[24678]: cluster 2024-09-18T08:25:34.385042+0000 mon.a (mon.0) 565 : cluster [DBG] osdmap e35: 6 total, 5 up, 6 in 2024-09-18T08:25:35.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:35 smithi086 bash[24678]: audit 2024-09-18T08:25:34.385899+0000 mon.a (mon.0) 566 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:35.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:35 smithi086 bash[24678]: audit 2024-09-18T08:25:34.385899+0000 mon.a (mon.0) 566 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:35.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:35 smithi086 bash[24678]: audit 2024-09-18T08:25:34.393339+0000 mon.a (mon.0) 567 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:25:35.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:35 smithi086 bash[24678]: audit 2024-09-18T08:25:34.393339+0000 mon.a (mon.0) 567 : audit [INF] from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi172", "root=default"]} : dispatch 2024-09-18T08:25:35.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:35 smithi086 bash[24678]: audit 2024-09-18T08:25:34.699446+0000 mon.a (mon.0) 568 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:25:35.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:35 smithi086 bash[24678]: audit 2024-09-18T08:25:34.699446+0000 mon.a (mon.0) 568 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:25:35.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:35 smithi086 bash[24678]: audit 2024-09-18T08:25:34.706735+0000 mon.a (mon.0) 569 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:35.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:35 smithi086 bash[24678]: audit 2024-09-18T08:25:34.706735+0000 mon.a (mon.0) 569 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:35.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:35 smithi086 bash[24678]: audit 2024-09-18T08:25:34.714563+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:35.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:35 smithi086 bash[24678]: audit 2024-09-18T08:25:34.714563+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:36.231 INFO:journalctl@ceph.osd.5.smithi172.stdout:Sep 18 08:25:35 smithi172 bash[33390]: debug 2024-09-18T08:25:35.933+0000 7fef389c5640 -1 osd.5 0 waiting for initial osdmap 2024-09-18T08:25:36.231 INFO:journalctl@ceph.osd.5.smithi172.stdout:Sep 18 08:25:35 smithi172 bash[33390]: debug 2024-09-18T08:25:35.973+0000 7fef307e4640 -1 osd.5 36 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-18T08:25:36.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:36 smithi070 bash[22844]: cluster 2024-09-18T08:25:34.933628+0000 mgr.a (mgr.14152) 283 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:36.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:36 smithi070 bash[22844]: cluster 2024-09-18T08:25:34.933628+0000 mgr.a (mgr.14152) 283 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:36.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:36 smithi070 bash[22844]: audit 2024-09-18T08:25:35.395797+0000 mon.a (mon.0) 571 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]': finished 2024-09-18T08:25:36.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:36 smithi070 bash[22844]: audit 2024-09-18T08:25:35.395797+0000 mon.a (mon.0) 571 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]': finished 2024-09-18T08:25:36.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:36 smithi070 bash[22844]: cluster 2024-09-18T08:25:35.399339+0000 mon.a (mon.0) 572 : cluster [DBG] osdmap e36: 6 total, 5 up, 6 in 2024-09-18T08:25:36.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:36 smithi070 bash[22844]: cluster 2024-09-18T08:25:35.399339+0000 mon.a (mon.0) 572 : cluster [DBG] osdmap e36: 6 total, 5 up, 6 in 2024-09-18T08:25:36.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:36 smithi070 bash[22844]: audit 2024-09-18T08:25:35.399600+0000 mon.a (mon.0) 573 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:36.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:36 smithi070 bash[22844]: audit 2024-09-18T08:25:35.399600+0000 mon.a (mon.0) 573 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:36.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:36 smithi070 bash[22844]: audit 2024-09-18T08:25:35.409147+0000 mon.a (mon.0) 574 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:36.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:36 smithi070 bash[22844]: audit 2024-09-18T08:25:35.409147+0000 mon.a (mon.0) 574 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:36.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:36 smithi070 bash[22844]: audit 2024-09-18T08:25:35.946713+0000 mon.a (mon.0) 575 : audit [INF] from='osd.5 ' entity='osd.5' 2024-09-18T08:25:36.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:36 smithi070 bash[22844]: audit 2024-09-18T08:25:35.946713+0000 mon.a (mon.0) 575 : audit [INF] from='osd.5 ' entity='osd.5' 2024-09-18T08:25:36.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:36 smithi172 bash[24990]: cluster 2024-09-18T08:25:34.933628+0000 mgr.a (mgr.14152) 283 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:36.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:36 smithi172 bash[24990]: cluster 2024-09-18T08:25:34.933628+0000 mgr.a (mgr.14152) 283 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:36.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:36 smithi172 bash[24990]: audit 2024-09-18T08:25:35.395797+0000 mon.a (mon.0) 571 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]': finished 2024-09-18T08:25:36.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:36 smithi172 bash[24990]: audit 2024-09-18T08:25:35.395797+0000 mon.a (mon.0) 571 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]': finished 2024-09-18T08:25:36.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:36 smithi172 bash[24990]: cluster 2024-09-18T08:25:35.399339+0000 mon.a (mon.0) 572 : cluster [DBG] osdmap e36: 6 total, 5 up, 6 in 2024-09-18T08:25:36.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:36 smithi172 bash[24990]: cluster 2024-09-18T08:25:35.399339+0000 mon.a (mon.0) 572 : cluster [DBG] osdmap e36: 6 total, 5 up, 6 in 2024-09-18T08:25:36.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:36 smithi172 bash[24990]: audit 2024-09-18T08:25:35.399600+0000 mon.a (mon.0) 573 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:36.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:36 smithi172 bash[24990]: audit 2024-09-18T08:25:35.399600+0000 mon.a (mon.0) 573 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:36.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:36 smithi172 bash[24990]: audit 2024-09-18T08:25:35.409147+0000 mon.a (mon.0) 574 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:36.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:36 smithi172 bash[24990]: audit 2024-09-18T08:25:35.409147+0000 mon.a (mon.0) 574 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:36.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:36 smithi172 bash[24990]: audit 2024-09-18T08:25:35.946713+0000 mon.a (mon.0) 575 : audit [INF] from='osd.5 ' entity='osd.5' 2024-09-18T08:25:36.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:36 smithi172 bash[24990]: audit 2024-09-18T08:25:35.946713+0000 mon.a (mon.0) 575 : audit [INF] from='osd.5 ' entity='osd.5' 2024-09-18T08:25:36.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:36 smithi086 bash[24678]: cluster 2024-09-18T08:25:34.933628+0000 mgr.a (mgr.14152) 283 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:36.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:36 smithi086 bash[24678]: cluster 2024-09-18T08:25:34.933628+0000 mgr.a (mgr.14152) 283 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:25:36.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:36 smithi086 bash[24678]: audit 2024-09-18T08:25:35.395797+0000 mon.a (mon.0) 571 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]': finished 2024-09-18T08:25:36.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:36 smithi086 bash[24678]: audit 2024-09-18T08:25:35.395797+0000 mon.a (mon.0) 571 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]': finished 2024-09-18T08:25:36.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:36 smithi086 bash[24678]: cluster 2024-09-18T08:25:35.399339+0000 mon.a (mon.0) 572 : cluster [DBG] osdmap e36: 6 total, 5 up, 6 in 2024-09-18T08:25:36.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:36 smithi086 bash[24678]: cluster 2024-09-18T08:25:35.399339+0000 mon.a (mon.0) 572 : cluster [DBG] osdmap e36: 6 total, 5 up, 6 in 2024-09-18T08:25:36.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:36 smithi086 bash[24678]: audit 2024-09-18T08:25:35.399600+0000 mon.a (mon.0) 573 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:36.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:36 smithi086 bash[24678]: audit 2024-09-18T08:25:35.399600+0000 mon.a (mon.0) 573 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:36.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:36 smithi086 bash[24678]: audit 2024-09-18T08:25:35.409147+0000 mon.a (mon.0) 574 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:36.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:36 smithi086 bash[24678]: audit 2024-09-18T08:25:35.409147+0000 mon.a (mon.0) 574 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:36.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:36 smithi086 bash[24678]: audit 2024-09-18T08:25:35.946713+0000 mon.a (mon.0) 575 : audit [INF] from='osd.5 ' entity='osd.5' 2024-09-18T08:25:36.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:36 smithi086 bash[24678]: audit 2024-09-18T08:25:35.946713+0000 mon.a (mon.0) 575 : audit [INF] from='osd.5 ' entity='osd.5' 2024-09-18T08:25:37.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:37 smithi070 bash[22844]: cluster 2024-09-18T08:25:35.195012+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:25:37.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:37 smithi070 bash[22844]: cluster 2024-09-18T08:25:35.195012+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:25:37.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:37 smithi070 bash[22844]: cluster 2024-09-18T08:25:35.195063+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:25:37.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:37 smithi070 bash[22844]: cluster 2024-09-18T08:25:35.195063+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:25:37.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:37 smithi070 bash[22844]: cluster 2024-09-18T08:25:36.403924+0000 mon.a (mon.0) 576 : cluster [INF] osd.5 [v2:172.21.15.172:6808/2478561766,v1:172.21.15.172:6809/2478561766] boot 2024-09-18T08:25:37.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:37 smithi070 bash[22844]: cluster 2024-09-18T08:25:36.403924+0000 mon.a (mon.0) 576 : cluster [INF] osd.5 [v2:172.21.15.172:6808/2478561766,v1:172.21.15.172:6809/2478561766] boot 2024-09-18T08:25:37.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:37 smithi070 bash[22844]: cluster 2024-09-18T08:25:36.404056+0000 mon.a (mon.0) 577 : cluster [DBG] osdmap e37: 6 total, 6 up, 6 in 2024-09-18T08:25:37.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:37 smithi070 bash[22844]: cluster 2024-09-18T08:25:36.404056+0000 mon.a (mon.0) 577 : cluster [DBG] osdmap e37: 6 total, 6 up, 6 in 2024-09-18T08:25:37.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:37 smithi070 bash[22844]: audit 2024-09-18T08:25:36.404633+0000 mon.a (mon.0) 578 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:37.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:37 smithi070 bash[22844]: audit 2024-09-18T08:25:36.404633+0000 mon.a (mon.0) 578 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:37.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:37 smithi070 bash[22844]: cluster 2024-09-18T08:25:37.113094+0000 mon.a (mon.0) 579 : cluster [DBG] osdmap e38: 6 total, 6 up, 6 in 2024-09-18T08:25:37.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:37 smithi070 bash[22844]: cluster 2024-09-18T08:25:37.113094+0000 mon.a (mon.0) 579 : cluster [DBG] osdmap e38: 6 total, 6 up, 6 in 2024-09-18T08:25:37.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:37 smithi172 bash[24990]: cluster 2024-09-18T08:25:35.195012+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:25:37.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:37 smithi172 bash[24990]: cluster 2024-09-18T08:25:35.195012+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:25:37.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:37 smithi172 bash[24990]: cluster 2024-09-18T08:25:35.195063+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:25:37.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:37 smithi172 bash[24990]: cluster 2024-09-18T08:25:35.195063+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:25:37.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:37 smithi172 bash[24990]: cluster 2024-09-18T08:25:36.403924+0000 mon.a (mon.0) 576 : cluster [INF] osd.5 [v2:172.21.15.172:6808/2478561766,v1:172.21.15.172:6809/2478561766] boot 2024-09-18T08:25:37.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:37 smithi172 bash[24990]: cluster 2024-09-18T08:25:36.403924+0000 mon.a (mon.0) 576 : cluster [INF] osd.5 [v2:172.21.15.172:6808/2478561766,v1:172.21.15.172:6809/2478561766] boot 2024-09-18T08:25:37.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:37 smithi172 bash[24990]: cluster 2024-09-18T08:25:36.404056+0000 mon.a (mon.0) 577 : cluster [DBG] osdmap e37: 6 total, 6 up, 6 in 2024-09-18T08:25:37.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:37 smithi172 bash[24990]: cluster 2024-09-18T08:25:36.404056+0000 mon.a (mon.0) 577 : cluster [DBG] osdmap e37: 6 total, 6 up, 6 in 2024-09-18T08:25:37.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:37 smithi172 bash[24990]: audit 2024-09-18T08:25:36.404633+0000 mon.a (mon.0) 578 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:37.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:37 smithi172 bash[24990]: audit 2024-09-18T08:25:36.404633+0000 mon.a (mon.0) 578 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:37.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:37 smithi172 bash[24990]: cluster 2024-09-18T08:25:37.113094+0000 mon.a (mon.0) 579 : cluster [DBG] osdmap e38: 6 total, 6 up, 6 in 2024-09-18T08:25:37.731 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:37 smithi172 bash[24990]: cluster 2024-09-18T08:25:37.113094+0000 mon.a (mon.0) 579 : cluster [DBG] osdmap e38: 6 total, 6 up, 6 in 2024-09-18T08:25:37.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:37 smithi086 bash[24678]: cluster 2024-09-18T08:25:35.195012+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:25:37.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:37 smithi086 bash[24678]: cluster 2024-09-18T08:25:35.195012+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-18T08:25:37.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:37 smithi086 bash[24678]: cluster 2024-09-18T08:25:35.195063+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:25:37.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:37 smithi086 bash[24678]: cluster 2024-09-18T08:25:35.195063+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-18T08:25:37.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:37 smithi086 bash[24678]: cluster 2024-09-18T08:25:36.403924+0000 mon.a (mon.0) 576 : cluster [INF] osd.5 [v2:172.21.15.172:6808/2478561766,v1:172.21.15.172:6809/2478561766] boot 2024-09-18T08:25:37.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:37 smithi086 bash[24678]: cluster 2024-09-18T08:25:36.403924+0000 mon.a (mon.0) 576 : cluster [INF] osd.5 [v2:172.21.15.172:6808/2478561766,v1:172.21.15.172:6809/2478561766] boot 2024-09-18T08:25:37.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:37 smithi086 bash[24678]: cluster 2024-09-18T08:25:36.404056+0000 mon.a (mon.0) 577 : cluster [DBG] osdmap e37: 6 total, 6 up, 6 in 2024-09-18T08:25:37.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:37 smithi086 bash[24678]: cluster 2024-09-18T08:25:36.404056+0000 mon.a (mon.0) 577 : cluster [DBG] osdmap e37: 6 total, 6 up, 6 in 2024-09-18T08:25:37.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:37 smithi086 bash[24678]: audit 2024-09-18T08:25:36.404633+0000 mon.a (mon.0) 578 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:37.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:37 smithi086 bash[24678]: audit 2024-09-18T08:25:36.404633+0000 mon.a (mon.0) 578 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-18T08:25:37.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:37 smithi086 bash[24678]: cluster 2024-09-18T08:25:37.113094+0000 mon.a (mon.0) 579 : cluster [DBG] osdmap e38: 6 total, 6 up, 6 in 2024-09-18T08:25:37.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:37 smithi086 bash[24678]: cluster 2024-09-18T08:25:37.113094+0000 mon.a (mon.0) 579 : cluster [DBG] osdmap e38: 6 total, 6 up, 6 in 2024-09-18T08:25:38.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:38 smithi070 bash[22844]: cluster 2024-09-18T08:25:36.934197+0000 mgr.a (mgr.14152) 284 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:38.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:38 smithi070 bash[22844]: cluster 2024-09-18T08:25:36.934197+0000 mgr.a (mgr.14152) 284 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:38.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:38 smithi070 bash[22844]: cluster 2024-09-18T08:25:38.112698+0000 mon.a (mon.0) 580 : cluster [DBG] osdmap e39: 6 total, 6 up, 6 in 2024-09-18T08:25:38.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:38 smithi070 bash[22844]: cluster 2024-09-18T08:25:38.112698+0000 mon.a (mon.0) 580 : cluster [DBG] osdmap e39: 6 total, 6 up, 6 in 2024-09-18T08:25:38.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:38 smithi172 bash[24990]: cluster 2024-09-18T08:25:36.934197+0000 mgr.a (mgr.14152) 284 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:38.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:38 smithi172 bash[24990]: cluster 2024-09-18T08:25:36.934197+0000 mgr.a (mgr.14152) 284 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:38.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:38 smithi172 bash[24990]: cluster 2024-09-18T08:25:38.112698+0000 mon.a (mon.0) 580 : cluster [DBG] osdmap e39: 6 total, 6 up, 6 in 2024-09-18T08:25:38.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:38 smithi172 bash[24990]: cluster 2024-09-18T08:25:38.112698+0000 mon.a (mon.0) 580 : cluster [DBG] osdmap e39: 6 total, 6 up, 6 in 2024-09-18T08:25:38.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:38 smithi086 bash[24678]: cluster 2024-09-18T08:25:36.934197+0000 mgr.a (mgr.14152) 284 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:38.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:38 smithi086 bash[24678]: cluster 2024-09-18T08:25:36.934197+0000 mgr.a (mgr.14152) 284 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:38.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:38 smithi086 bash[24678]: cluster 2024-09-18T08:25:38.112698+0000 mon.a (mon.0) 580 : cluster [DBG] osdmap e39: 6 total, 6 up, 6 in 2024-09-18T08:25:38.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:38 smithi086 bash[24678]: cluster 2024-09-18T08:25:38.112698+0000 mon.a (mon.0) 580 : cluster [DBG] osdmap e39: 6 total, 6 up, 6 in 2024-09-18T08:25:40.062 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:25:40.677 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:40 smithi172 bash[24990]: cluster 2024-09-18T08:25:38.934705+0000 mgr.a (mgr.14152) 285 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:40.678 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:40 smithi172 bash[24990]: cluster 2024-09-18T08:25:38.934705+0000 mgr.a (mgr.14152) 285 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:40.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:40 smithi070 bash[22844]: cluster 2024-09-18T08:25:38.934705+0000 mgr.a (mgr.14152) 285 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:40.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:40 smithi070 bash[22844]: cluster 2024-09-18T08:25:38.934705+0000 mgr.a (mgr.14152) 285 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:40.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:40 smithi086 bash[24678]: cluster 2024-09-18T08:25:38.934705+0000 mgr.a (mgr.14152) 285 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:40.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:40 smithi086 bash[24678]: cluster 2024-09-18T08:25:38.934705+0000 mgr.a (mgr.14152) 285 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:41.386 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:25:41.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:41 smithi070 bash[22844]: audit 2024-09-18T08:25:41.392798+0000 mon.a (mon.0) 581 : audit [DBG] from='client.? 172.21.15.70:0/2786041299' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-18T08:25:41.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:41 smithi070 bash[22844]: audit 2024-09-18T08:25:41.392798+0000 mon.a (mon.0) 581 : audit [DBG] from='client.? 172.21.15.70:0/2786041299' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-18T08:25:41.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:41 smithi172 bash[24990]: audit 2024-09-18T08:25:41.392798+0000 mon.a (mon.0) 581 : audit [DBG] from='client.? 172.21.15.70:0/2786041299' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-18T08:25:41.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:41 smithi172 bash[24990]: audit 2024-09-18T08:25:41.392798+0000 mon.a (mon.0) 581 : audit [DBG] from='client.? 172.21.15.70:0/2786041299' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-18T08:25:41.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:41 smithi086 bash[24678]: audit 2024-09-18T08:25:41.392798+0000 mon.a (mon.0) 581 : audit [DBG] from='client.? 172.21.15.70:0/2786041299' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-18T08:25:41.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:41 smithi086 bash[24678]: audit 2024-09-18T08:25:41.392798+0000 mon.a (mon.0) 581 : audit [DBG] from='client.? 172.21.15.70:0/2786041299' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-18T08:25:42.043 INFO:teuthology.orchestra.run.smithi070.stdout:{"epoch":39,"num_osds":6,"num_up_osds":6,"osd_up_since":1726647936,"num_in_osds":6,"osd_in_since":1726647905,"num_remapped_pgs":0} 2024-09-18T08:25:42.044 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-18T08:25:42.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:42 smithi070 bash[22844]: cluster 2024-09-18T08:25:40.935259+0000 mgr.a (mgr.14152) 286 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 104 KiB/s, 0 objects/s recovering 2024-09-18T08:25:42.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:42 smithi070 bash[22844]: cluster 2024-09-18T08:25:40.935259+0000 mgr.a (mgr.14152) 286 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 104 KiB/s, 0 objects/s recovering 2024-09-18T08:25:42.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:42 smithi172 bash[24990]: cluster 2024-09-18T08:25:40.935259+0000 mgr.a (mgr.14152) 286 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 104 KiB/s, 0 objects/s recovering 2024-09-18T08:25:42.730 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:42 smithi172 bash[24990]: cluster 2024-09-18T08:25:40.935259+0000 mgr.a (mgr.14152) 286 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 104 KiB/s, 0 objects/s recovering 2024-09-18T08:25:42.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:42 smithi086 bash[24678]: cluster 2024-09-18T08:25:40.935259+0000 mgr.a (mgr.14152) 286 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 104 KiB/s, 0 objects/s recovering 2024-09-18T08:25:42.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:42 smithi086 bash[24678]: cluster 2024-09-18T08:25:40.935259+0000 mgr.a (mgr.14152) 286 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 104 KiB/s, 0 objects/s recovering 2024-09-18T08:25:44.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: cluster 2024-09-18T08:25:42.935967+0000 mgr.a (mgr.14152) 287 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 88 KiB/s, 0 objects/s recovering 2024-09-18T08:25:44.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: cluster 2024-09-18T08:25:42.935967+0000 mgr.a (mgr.14152) 287 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 88 KiB/s, 0 objects/s recovering 2024-09-18T08:25:44.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: cephadm 2024-09-18T08:25:43.651219+0000 mgr.a (mgr.14152) 288 : cephadm [INF] Detected new or changed devices on smithi172 2024-09-18T08:25:44.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: cephadm 2024-09-18T08:25:43.651219+0000 mgr.a (mgr.14152) 288 : cephadm [INF] Detected new or changed devices on smithi172 2024-09-18T08:25:44.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: audit 2024-09-18T08:25:43.659122+0000 mon.a (mon.0) 582 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:44.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: audit 2024-09-18T08:25:43.659122+0000 mon.a (mon.0) 582 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:44.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: audit 2024-09-18T08:25:43.667090+0000 mon.a (mon.0) 583 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:44.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: audit 2024-09-18T08:25:43.667090+0000 mon.a (mon.0) 583 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:44.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: audit 2024-09-18T08:25:43.669480+0000 mon.a (mon.0) 584 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-18T08:25:44.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: audit 2024-09-18T08:25:43.669480+0000 mon.a (mon.0) 584 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-18T08:25:44.978 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: audit 2024-09-18T08:25:43.671325+0000 mon.a (mon.0) 585 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-18T08:25:44.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: audit 2024-09-18T08:25:43.671325+0000 mon.a (mon.0) 585 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-18T08:25:44.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: cephadm 2024-09-18T08:25:43.672710+0000 mgr.a (mgr.14152) 289 : cephadm [INF] Adjusting osd_memory_target on smithi172 to 10680M 2024-09-18T08:25:44.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: cephadm 2024-09-18T08:25:43.672710+0000 mgr.a (mgr.14152) 289 : cephadm [INF] Adjusting osd_memory_target on smithi172 to 10680M 2024-09-18T08:25:44.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: audit 2024-09-18T08:25:43.678450+0000 mon.a (mon.0) 586 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:44.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: audit 2024-09-18T08:25:43.678450+0000 mon.a (mon.0) 586 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:44.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: audit 2024-09-18T08:25:43.682558+0000 mon.a (mon.0) 587 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:25:44.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: audit 2024-09-18T08:25:43.682558+0000 mon.a (mon.0) 587 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:25:44.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: audit 2024-09-18T08:25:43.684353+0000 mon.a (mon.0) 588 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:25:44.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: audit 2024-09-18T08:25:43.684353+0000 mon.a (mon.0) 588 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:25:44.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: audit 2024-09-18T08:25:43.694020+0000 mon.a (mon.0) 589 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:44.979 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:44 smithi070 bash[22844]: audit 2024-09-18T08:25:43.694020+0000 mon.a (mon.0) 589 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:44.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: cluster 2024-09-18T08:25:42.935967+0000 mgr.a (mgr.14152) 287 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 88 KiB/s, 0 objects/s recovering 2024-09-18T08:25:44.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: cluster 2024-09-18T08:25:42.935967+0000 mgr.a (mgr.14152) 287 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 88 KiB/s, 0 objects/s recovering 2024-09-18T08:25:44.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: cephadm 2024-09-18T08:25:43.651219+0000 mgr.a (mgr.14152) 288 : cephadm [INF] Detected new or changed devices on smithi172 2024-09-18T08:25:44.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: cephadm 2024-09-18T08:25:43.651219+0000 mgr.a (mgr.14152) 288 : cephadm [INF] Detected new or changed devices on smithi172 2024-09-18T08:25:44.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: audit 2024-09-18T08:25:43.659122+0000 mon.a (mon.0) 582 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:44.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: audit 2024-09-18T08:25:43.659122+0000 mon.a (mon.0) 582 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:44.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: audit 2024-09-18T08:25:43.667090+0000 mon.a (mon.0) 583 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:44.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: audit 2024-09-18T08:25:43.667090+0000 mon.a (mon.0) 583 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:44.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: audit 2024-09-18T08:25:43.669480+0000 mon.a (mon.0) 584 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-18T08:25:44.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: audit 2024-09-18T08:25:43.669480+0000 mon.a (mon.0) 584 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-18T08:25:44.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: audit 2024-09-18T08:25:43.671325+0000 mon.a (mon.0) 585 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-18T08:25:44.981 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: audit 2024-09-18T08:25:43.671325+0000 mon.a (mon.0) 585 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-18T08:25:44.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: cephadm 2024-09-18T08:25:43.672710+0000 mgr.a (mgr.14152) 289 : cephadm [INF] Adjusting osd_memory_target on smithi172 to 10680M 2024-09-18T08:25:44.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: cephadm 2024-09-18T08:25:43.672710+0000 mgr.a (mgr.14152) 289 : cephadm [INF] Adjusting osd_memory_target on smithi172 to 10680M 2024-09-18T08:25:44.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: audit 2024-09-18T08:25:43.678450+0000 mon.a (mon.0) 586 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:44.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: audit 2024-09-18T08:25:43.678450+0000 mon.a (mon.0) 586 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:44.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: audit 2024-09-18T08:25:43.682558+0000 mon.a (mon.0) 587 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:25:44.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: audit 2024-09-18T08:25:43.682558+0000 mon.a (mon.0) 587 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:25:44.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: audit 2024-09-18T08:25:43.684353+0000 mon.a (mon.0) 588 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:25:44.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: audit 2024-09-18T08:25:43.684353+0000 mon.a (mon.0) 588 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:25:44.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: audit 2024-09-18T08:25:43.694020+0000 mon.a (mon.0) 589 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:44.982 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:44 smithi172 bash[24990]: audit 2024-09-18T08:25:43.694020+0000 mon.a (mon.0) 589 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:45.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: cluster 2024-09-18T08:25:42.935967+0000 mgr.a (mgr.14152) 287 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 88 KiB/s, 0 objects/s recovering 2024-09-18T08:25:45.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: cluster 2024-09-18T08:25:42.935967+0000 mgr.a (mgr.14152) 287 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 88 KiB/s, 0 objects/s recovering 2024-09-18T08:25:45.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: cephadm 2024-09-18T08:25:43.651219+0000 mgr.a (mgr.14152) 288 : cephadm [INF] Detected new or changed devices on smithi172 2024-09-18T08:25:45.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: cephadm 2024-09-18T08:25:43.651219+0000 mgr.a (mgr.14152) 288 : cephadm [INF] Detected new or changed devices on smithi172 2024-09-18T08:25:45.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: audit 2024-09-18T08:25:43.659122+0000 mon.a (mon.0) 582 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:45.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: audit 2024-09-18T08:25:43.659122+0000 mon.a (mon.0) 582 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:45.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: audit 2024-09-18T08:25:43.667090+0000 mon.a (mon.0) 583 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:45.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: audit 2024-09-18T08:25:43.667090+0000 mon.a (mon.0) 583 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:45.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: audit 2024-09-18T08:25:43.669480+0000 mon.a (mon.0) 584 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-18T08:25:45.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: audit 2024-09-18T08:25:43.669480+0000 mon.a (mon.0) 584 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-18T08:25:45.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: audit 2024-09-18T08:25:43.671325+0000 mon.a (mon.0) 585 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-18T08:25:45.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: audit 2024-09-18T08:25:43.671325+0000 mon.a (mon.0) 585 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-18T08:25:45.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: cephadm 2024-09-18T08:25:43.672710+0000 mgr.a (mgr.14152) 289 : cephadm [INF] Adjusting osd_memory_target on smithi172 to 10680M 2024-09-18T08:25:45.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: cephadm 2024-09-18T08:25:43.672710+0000 mgr.a (mgr.14152) 289 : cephadm [INF] Adjusting osd_memory_target on smithi172 to 10680M 2024-09-18T08:25:45.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: audit 2024-09-18T08:25:43.678450+0000 mon.a (mon.0) 586 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:45.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: audit 2024-09-18T08:25:43.678450+0000 mon.a (mon.0) 586 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:45.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: audit 2024-09-18T08:25:43.682558+0000 mon.a (mon.0) 587 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:25:45.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: audit 2024-09-18T08:25:43.682558+0000 mon.a (mon.0) 587 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:25:45.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: audit 2024-09-18T08:25:43.684353+0000 mon.a (mon.0) 588 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:25:45.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: audit 2024-09-18T08:25:43.684353+0000 mon.a (mon.0) 588 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:25:45.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: audit 2024-09-18T08:25:43.694020+0000 mon.a (mon.0) 589 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:45.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:44 smithi086 bash[24678]: audit 2024-09-18T08:25:43.694020+0000 mon.a (mon.0) 589 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:25:46.779 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:25:46.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:46 smithi070 bash[22844]: cluster 2024-09-18T08:25:44.936596+0000 mgr.a (mgr.14152) 290 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T08:25:46.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:46 smithi070 bash[22844]: cluster 2024-09-18T08:25:44.936596+0000 mgr.a (mgr.14152) 290 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T08:25:46.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:46 smithi172 bash[24990]: cluster 2024-09-18T08:25:44.936596+0000 mgr.a (mgr.14152) 290 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T08:25:46.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:46 smithi172 bash[24990]: cluster 2024-09-18T08:25:44.936596+0000 mgr.a (mgr.14152) 290 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T08:25:47.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:46 smithi086 bash[24678]: cluster 2024-09-18T08:25:44.936596+0000 mgr.a (mgr.14152) 290 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T08:25:47.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:46 smithi086 bash[24678]: cluster 2024-09-18T08:25:44.936596+0000 mgr.a (mgr.14152) 290 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T08:25:48.154 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:25:48.155 INFO:teuthology.orchestra.run.smithi070.stdout:{"epoch":39,"fsid":"1481c73c-7596-11ef-bceb-c7b262605968","created":"2024-09-18T08:17:20.836853+0000","modified":"2024-09-18T08:25:38.107673+0000","last_up_change":"2024-09-18T08:25:36.395733+0000","last_in_change":"2024-09-18T08:25:05.923409+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-18T08:22:51.266990+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":"21","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":"8044a3a9-164b-481b-aa4b-08f6decc7ed4","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6802","nonce":1321566685},{"type":"v1","addr":"172.21.15.70:6803","nonce":1321566685}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6804","nonce":1321566685},{"type":"v1","addr":"172.21.15.70:6805","nonce":1321566685}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6808","nonce":1321566685},{"type":"v1","addr":"172.21.15.70:6809","nonce":1321566685}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6806","nonce":1321566685},{"type":"v1","addr":"172.21.15.70:6807","nonce":1321566685}]},"public_addr":"172.21.15.70:6803/1321566685","cluster_addr":"172.21.15.70:6805/1321566685","heartbeat_back_addr":"172.21.15.70:6809/1321566685","heartbeat_front_addr":"172.21.15.70:6807/1321566685","state":["exists","up"]},{"osd":1,"uuid":"1fe06e9e-6c21-406e-b6e4-16a43f6449a5","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.70:6810","nonce":354058322},{"type":"v1","addr":"172.21.15.70:6811","nonce":354058322}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6812","nonce":354058322},{"type":"v1","addr":"172.21.15.70:6813","nonce":354058322}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6816","nonce":354058322},{"type":"v1","addr":"172.21.15.70:6817","nonce":354058322}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6814","nonce":354058322},{"type":"v1","addr":"172.21.15.70:6815","nonce":354058322}]},"public_addr":"172.21.15.70:6811/354058322","cluster_addr":"172.21.15.70:6813/354058322","heartbeat_back_addr":"172.21.15.70:6817/354058322","heartbeat_front_addr":"172.21.15.70:6815/354058322","state":["exists","up"]},{"osd":2,"uuid":"85fbd205-5341-40ec-a37c-e4097a161944","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6800","nonce":2009091660},{"type":"v1","addr":"172.21.15.86:6801","nonce":2009091660}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6802","nonce":2009091660},{"type":"v1","addr":"172.21.15.86:6803","nonce":2009091660}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6806","nonce":2009091660},{"type":"v1","addr":"172.21.15.86:6807","nonce":2009091660}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6804","nonce":2009091660},{"type":"v1","addr":"172.21.15.86:6805","nonce":2009091660}]},"public_addr":"172.21.15.86:6801/2009091660","cluster_addr":"172.21.15.86:6803/2009091660","heartbeat_back_addr":"172.21.15.86:6807/2009091660","heartbeat_front_addr":"172.21.15.86:6805/2009091660","state":["exists","up"]},{"osd":3,"uuid":"8b4785a4-6dad-4b2a-8bf2-2485b46f55cf","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6808","nonce":651378475},{"type":"v1","addr":"172.21.15.86:6809","nonce":651378475}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6810","nonce":651378475},{"type":"v1","addr":"172.21.15.86:6811","nonce":651378475}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6814","nonce":651378475},{"type":"v1","addr":"172.21.15.86:6815","nonce":651378475}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6812","nonce":651378475},{"type":"v1","addr":"172.21.15.86:6813","nonce":651378475}]},"public_addr":"172.21.15.86:6809/651378475","cluster_addr":"172.21.15.86:6811/651378475","heartbeat_back_addr":"172.21.15.86:6815/651378475","heartbeat_front_addr":"172.21.15.86:6813/651378475","state":["exists","up"]},{"osd":4,"uuid":"9dbbaa00-39ea-499a-85cb-07a496e1ebc0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6800","nonce":2213904211},{"type":"v1","addr":"172.21.15.172:6801","nonce":2213904211}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6802","nonce":2213904211},{"type":"v1","addr":"172.21.15.172:6803","nonce":2213904211}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6806","nonce":2213904211},{"type":"v1","addr":"172.21.15.172:6807","nonce":2213904211}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6804","nonce":2213904211},{"type":"v1","addr":"172.21.15.172:6805","nonce":2213904211}]},"public_addr":"172.21.15.172:6801/2213904211","cluster_addr":"172.21.15.172:6803/2213904211","heartbeat_back_addr":"172.21.15.172:6807/2213904211","heartbeat_front_addr":"172.21.15.172:6805/2213904211","state":["exists","up"]},{"osd":5,"uuid":"f5e17b51-4491-44dc-a6d7-6faac0d2c645","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6808","nonce":2478561766},{"type":"v1","addr":"172.21.15.172:6809","nonce":2478561766}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6810","nonce":2478561766},{"type":"v1","addr":"172.21.15.172:6811","nonce":2478561766}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6814","nonce":2478561766},{"type":"v1","addr":"172.21.15.172:6815","nonce":2478561766}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6812","nonce":2478561766},{"type":"v1","addr":"172.21.15.172:6813","nonce":2478561766}]},"public_addr":"172.21.15.172:6809/2478561766","cluster_addr":"172.21.15.172:6811/2478561766","heartbeat_back_addr":"172.21.15.172:6815/2478561766","heartbeat_front_addr":"172.21.15.172:6813/2478561766","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-18T08:20:59.870013+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-18T08:21:54.800904+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-18T08:22:49.053416+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-18T08:23:48.064013+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-18T08:24:39.850916+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-18T08:25:35.195065+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.70:6801/1475268349":"2024-09-19T08:18:20.817778+0000","172.21.15.70:0/1113522941":"2024-09-19T08:18:20.817778+0000","172.21.15.70:0/1958179124":"2024-09-19T08:18:20.817778+0000","172.21.15.70:0/3148545613":"2024-09-19T08:18:20.817778+0000","172.21.15.70:0/3967347580":"2024-09-19T08:17:47.661752+0000","172.21.15.70:6800/1475268349":"2024-09-19T08:18:20.817778+0000","172.21.15.70:0/3145642699":"2024-09-19T08:17:47.661752+0000","172.21.15.70:6801/1844512308":"2024-09-19T08:17:47.661752+0000","172.21.15.70:6800/1844512308":"2024-09-19T08:17:47.661752+0000","172.21.15.70:0/818830868":"2024-09-19T08:17:47.661752+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-18T08:25:48.691 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-18T08:22:51.266990+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': '21', '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-18T08:25:48.691 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-18T08:25:48.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:48 smithi070 bash[22844]: cluster 2024-09-18T08:25:46.937196+0000 mgr.a (mgr.14152) 291 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-09-18T08:25:48.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:48 smithi070 bash[22844]: cluster 2024-09-18T08:25:46.937196+0000 mgr.a (mgr.14152) 291 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-09-18T08:25:48.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:48 smithi070 bash[22844]: audit 2024-09-18T08:25:48.159925+0000 mon.a (mon.0) 590 : audit [DBG] from='client.? 172.21.15.70:0/1471941514' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-18T08:25:48.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:48 smithi070 bash[22844]: audit 2024-09-18T08:25:48.159925+0000 mon.a (mon.0) 590 : audit [DBG] from='client.? 172.21.15.70:0/1471941514' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-18T08:25:48.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:48 smithi172 bash[24990]: cluster 2024-09-18T08:25:46.937196+0000 mgr.a (mgr.14152) 291 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-09-18T08:25:48.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:48 smithi172 bash[24990]: cluster 2024-09-18T08:25:46.937196+0000 mgr.a (mgr.14152) 291 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-09-18T08:25:48.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:48 smithi172 bash[24990]: audit 2024-09-18T08:25:48.159925+0000 mon.a (mon.0) 590 : audit [DBG] from='client.? 172.21.15.70:0/1471941514' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-18T08:25:48.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:48 smithi172 bash[24990]: audit 2024-09-18T08:25:48.159925+0000 mon.a (mon.0) 590 : audit [DBG] from='client.? 172.21.15.70:0/1471941514' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-18T08:25:49.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:48 smithi086 bash[24678]: cluster 2024-09-18T08:25:46.937196+0000 mgr.a (mgr.14152) 291 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-09-18T08:25:49.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:48 smithi086 bash[24678]: cluster 2024-09-18T08:25:46.937196+0000 mgr.a (mgr.14152) 291 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-09-18T08:25:49.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:48 smithi086 bash[24678]: audit 2024-09-18T08:25:48.159925+0000 mon.a (mon.0) 590 : audit [DBG] from='client.? 172.21.15.70:0/1471941514' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-18T08:25:49.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:48 smithi086 bash[24678]: audit 2024-09-18T08:25:48.159925+0000 mon.a (mon.0) 590 : audit [DBG] from='client.? 172.21.15.70:0/1471941514' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-18T08:25:50.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:50 smithi070 bash[22844]: cluster 2024-09-18T08:25:48.937752+0000 mgr.a (mgr.14152) 292 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 53 KiB/s, 0 objects/s recovering 2024-09-18T08:25:50.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:50 smithi070 bash[22844]: cluster 2024-09-18T08:25:48.937752+0000 mgr.a (mgr.14152) 292 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 53 KiB/s, 0 objects/s recovering 2024-09-18T08:25:50.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:50 smithi172 bash[24990]: cluster 2024-09-18T08:25:48.937752+0000 mgr.a (mgr.14152) 292 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 53 KiB/s, 0 objects/s recovering 2024-09-18T08:25:50.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:50 smithi172 bash[24990]: cluster 2024-09-18T08:25:48.937752+0000 mgr.a (mgr.14152) 292 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 53 KiB/s, 0 objects/s recovering 2024-09-18T08:25:51.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:50 smithi086 bash[24678]: cluster 2024-09-18T08:25:48.937752+0000 mgr.a (mgr.14152) 292 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 53 KiB/s, 0 objects/s recovering 2024-09-18T08:25:51.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:50 smithi086 bash[24678]: cluster 2024-09-18T08:25:48.937752+0000 mgr.a (mgr.14152) 292 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 53 KiB/s, 0 objects/s recovering 2024-09-18T08:25:52.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:52 smithi070 bash[22844]: cluster 2024-09-18T08:25:50.938321+0000 mgr.a (mgr.14152) 293 : cluster [DBG] pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-18T08:25:52.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:52 smithi070 bash[22844]: cluster 2024-09-18T08:25:50.938321+0000 mgr.a (mgr.14152) 293 : cluster [DBG] pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-18T08:25:52.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:52 smithi172 bash[24990]: cluster 2024-09-18T08:25:50.938321+0000 mgr.a (mgr.14152) 293 : cluster [DBG] pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-18T08:25:52.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:52 smithi172 bash[24990]: cluster 2024-09-18T08:25:50.938321+0000 mgr.a (mgr.14152) 293 : cluster [DBG] pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-18T08:25:53.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:52 smithi086 bash[24678]: cluster 2024-09-18T08:25:50.938321+0000 mgr.a (mgr.14152) 293 : cluster [DBG] pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-18T08:25:53.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:52 smithi086 bash[24678]: cluster 2024-09-18T08:25:50.938321+0000 mgr.a (mgr.14152) 293 : cluster [DBG] pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-18T08:25:53.439 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:25:54.757 INFO:teuthology.orchestra.run.smithi070.stdout:pg_num: 1 2024-09-18T08:25:54.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:54 smithi070 bash[22844]: cluster 2024-09-18T08:25:52.938915+0000 mgr.a (mgr.14152) 294 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:54.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:54 smithi070 bash[22844]: cluster 2024-09-18T08:25:52.938915+0000 mgr.a (mgr.14152) 294 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:54.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:54 smithi172 bash[24990]: cluster 2024-09-18T08:25:52.938915+0000 mgr.a (mgr.14152) 294 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:54.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:54 smithi172 bash[24990]: cluster 2024-09-18T08:25:52.938915+0000 mgr.a (mgr.14152) 294 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:55.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:54 smithi086 bash[24678]: cluster 2024-09-18T08:25:52.938915+0000 mgr.a (mgr.14152) 294 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:55.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:54 smithi086 bash[24678]: cluster 2024-09-18T08:25:52.938915+0000 mgr.a (mgr.14152) 294 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:55.330 INFO:tasks.cephadm:Setting up client nodes... 2024-09-18T08:25:55.331 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph config log 1 --format=json 2024-09-18T08:25:55.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:55 smithi070 bash[22844]: audit 2024-09-18T08:25:54.764047+0000 mon.a (mon.0) 591 : audit [DBG] from='client.? 172.21.15.70:0/3428614984' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-18T08:25:55.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:55 smithi070 bash[22844]: audit 2024-09-18T08:25:54.764047+0000 mon.a (mon.0) 591 : audit [DBG] from='client.? 172.21.15.70:0/3428614984' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-18T08:25:55.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:55 smithi172 bash[24990]: audit 2024-09-18T08:25:54.764047+0000 mon.a (mon.0) 591 : audit [DBG] from='client.? 172.21.15.70:0/3428614984' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-18T08:25:55.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:55 smithi172 bash[24990]: audit 2024-09-18T08:25:54.764047+0000 mon.a (mon.0) 591 : audit [DBG] from='client.? 172.21.15.70:0/3428614984' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-18T08:25:56.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:55 smithi086 bash[24678]: audit 2024-09-18T08:25:54.764047+0000 mon.a (mon.0) 591 : audit [DBG] from='client.? 172.21.15.70:0/3428614984' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-18T08:25:56.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:55 smithi086 bash[24678]: audit 2024-09-18T08:25:54.764047+0000 mon.a (mon.0) 591 : audit [DBG] from='client.? 172.21.15.70:0/3428614984' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-18T08:25:56.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:56 smithi070 bash[22844]: cluster 2024-09-18T08:25:54.939461+0000 mgr.a (mgr.14152) 295 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:56.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:56 smithi070 bash[22844]: cluster 2024-09-18T08:25:54.939461+0000 mgr.a (mgr.14152) 295 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:56.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:56 smithi172 bash[24990]: cluster 2024-09-18T08:25:54.939461+0000 mgr.a (mgr.14152) 295 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:56.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:56 smithi172 bash[24990]: cluster 2024-09-18T08:25:54.939461+0000 mgr.a (mgr.14152) 295 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:57.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:56 smithi086 bash[24678]: cluster 2024-09-18T08:25:54.939461+0000 mgr.a (mgr.14152) 295 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:57.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:56 smithi086 bash[24678]: cluster 2024-09-18T08:25:54.939461+0000 mgr.a (mgr.14152) 295 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:58.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:58 smithi070 bash[22844]: cluster 2024-09-18T08:25:56.940034+0000 mgr.a (mgr.14152) 296 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:58.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:25:58 smithi070 bash[22844]: cluster 2024-09-18T08:25:56.940034+0000 mgr.a (mgr.14152) 296 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:58.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:58 smithi172 bash[24990]: cluster 2024-09-18T08:25:56.940034+0000 mgr.a (mgr.14152) 296 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:58.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:25:58 smithi172 bash[24990]: cluster 2024-09-18T08:25:56.940034+0000 mgr.a (mgr.14152) 296 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:59.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:58 smithi086 bash[24678]: cluster 2024-09-18T08:25:56.940034+0000 mgr.a (mgr.14152) 296 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:25:59.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:25:58 smithi086 bash[24678]: cluster 2024-09-18T08:25:56.940034+0000 mgr.a (mgr.14152) 296 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:00.085 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:26:00.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:00 smithi070 bash[22844]: cluster 2024-09-18T08:25:58.940668+0000 mgr.a (mgr.14152) 297 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:00.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:00 smithi070 bash[22844]: cluster 2024-09-18T08:25:58.940668+0000 mgr.a (mgr.14152) 297 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:00.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:00 smithi172 bash[24990]: cluster 2024-09-18T08:25:58.940668+0000 mgr.a (mgr.14152) 297 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:00.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:00 smithi172 bash[24990]: cluster 2024-09-18T08:25:58.940668+0000 mgr.a (mgr.14152) 297 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:01.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:00 smithi086 bash[24678]: cluster 2024-09-18T08:25:58.940668+0000 mgr.a (mgr.14152) 297 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:01.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:00 smithi086 bash[24678]: cluster 2024-09-18T08:25:58.940668+0000 mgr.a (mgr.14152) 297 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:01.412 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:26:01.968 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:01 smithi070 bash[22844]: audit 2024-09-18T08:26:01.419190+0000 mon.a (mon.0) 592 : audit [DBG] from='client.? 172.21.15.70:0/150492161' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-18T08:26:01.968 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:01 smithi070 bash[22844]: audit 2024-09-18T08:26:01.419190+0000 mon.a (mon.0) 592 : audit [DBG] from='client.? 172.21.15.70:0/150492161' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-18T08:26:01.969 INFO:teuthology.orchestra.run.smithi070.stdout:[{"version":20,"timestamp":"2024-09-18T08:25:43.673333+0000","name":"","changes":[{"name":"osd/host:smithi172/osd_memory_target","previous_value":"22399190220","new_value":"11199595110"}]}] 2024-09-18T08:26:01.969 INFO:tasks.ceph_manager:config epoch is 20 2024-09-18T08:26:01.969 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-18T08:26:01.970 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-18T08:26:01.970 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph mgr dump --format=json 2024-09-18T08:26:01.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:01 smithi172 bash[24990]: audit 2024-09-18T08:26:01.419190+0000 mon.a (mon.0) 592 : audit [DBG] from='client.? 172.21.15.70:0/150492161' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-18T08:26:01.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:01 smithi172 bash[24990]: audit 2024-09-18T08:26:01.419190+0000 mon.a (mon.0) 592 : audit [DBG] from='client.? 172.21.15.70:0/150492161' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-18T08:26:02.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:01 smithi086 bash[24678]: audit 2024-09-18T08:26:01.419190+0000 mon.a (mon.0) 592 : audit [DBG] from='client.? 172.21.15.70:0/150492161' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-18T08:26:02.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:01 smithi086 bash[24678]: audit 2024-09-18T08:26:01.419190+0000 mon.a (mon.0) 592 : audit [DBG] from='client.? 172.21.15.70:0/150492161' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-18T08:26:02.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:02 smithi070 bash[22844]: cluster 2024-09-18T08:26:00.941361+0000 mgr.a (mgr.14152) 298 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:02.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:02 smithi070 bash[22844]: cluster 2024-09-18T08:26:00.941361+0000 mgr.a (mgr.14152) 298 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:02.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:02 smithi172 bash[24990]: cluster 2024-09-18T08:26:00.941361+0000 mgr.a (mgr.14152) 298 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:02.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:02 smithi172 bash[24990]: cluster 2024-09-18T08:26:00.941361+0000 mgr.a (mgr.14152) 298 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:03.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:02 smithi086 bash[24678]: cluster 2024-09-18T08:26:00.941361+0000 mgr.a (mgr.14152) 298 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:03.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:02 smithi086 bash[24678]: cluster 2024-09-18T08:26:00.941361+0000 mgr.a (mgr.14152) 298 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:04.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:04 smithi070 bash[22844]: cluster 2024-09-18T08:26:02.941968+0000 mgr.a (mgr.14152) 299 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:04.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:04 smithi070 bash[22844]: cluster 2024-09-18T08:26:02.941968+0000 mgr.a (mgr.14152) 299 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:04.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:04 smithi172 bash[24990]: cluster 2024-09-18T08:26:02.941968+0000 mgr.a (mgr.14152) 299 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:04.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:04 smithi172 bash[24990]: cluster 2024-09-18T08:26:02.941968+0000 mgr.a (mgr.14152) 299 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:05.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:04 smithi086 bash[24678]: cluster 2024-09-18T08:26:02.941968+0000 mgr.a (mgr.14152) 299 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:05.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:04 smithi086 bash[24678]: cluster 2024-09-18T08:26:02.941968+0000 mgr.a (mgr.14152) 299 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:06.709 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:26:06.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:06 smithi070 bash[22844]: cluster 2024-09-18T08:26:04.942551+0000 mgr.a (mgr.14152) 300 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:06.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:06 smithi070 bash[22844]: cluster 2024-09-18T08:26:04.942551+0000 mgr.a (mgr.14152) 300 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:06.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:06 smithi172 bash[24990]: cluster 2024-09-18T08:26:04.942551+0000 mgr.a (mgr.14152) 300 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:06.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:06 smithi172 bash[24990]: cluster 2024-09-18T08:26:04.942551+0000 mgr.a (mgr.14152) 300 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:07.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:06 smithi086 bash[24678]: cluster 2024-09-18T08:26:04.942551+0000 mgr.a (mgr.14152) 300 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:07.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:06 smithi086 bash[24678]: cluster 2024-09-18T08:26:04.942551+0000 mgr.a (mgr.14152) 300 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:08.126 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:26:08.745 INFO:teuthology.orchestra.run.smithi070.stdout:{"epoch":15,"flags":0,"active_gid":14152,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6800","nonce":2353401869},{"type":"v1","addr":"172.21.15.70:6801","nonce":2353401869}]},"active_addr":"172.21.15.70:6801/2353401869","active_change":"2024-09-18T08:18:20.817997+0000","active_mgr_features":4540719139924082687,"available":true,"standbys":[{"gid":24107,"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.0","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.0","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.70: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.70:0","nonce":911494154}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.70:0","nonce":1935588655}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.70:0","nonce":3138457421}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.70:0","nonce":3165058776}]}]} 2024-09-18T08:26:08.750 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-18T08:26:08.750 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-18T08:26:08.750 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-18T08:26:08.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:08 smithi070 bash[22844]: cluster 2024-09-18T08:26:06.943127+0000 mgr.a (mgr.14152) 301 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:08.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:08 smithi070 bash[22844]: cluster 2024-09-18T08:26:06.943127+0000 mgr.a (mgr.14152) 301 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:08.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:08 smithi070 bash[22844]: audit 2024-09-18T08:26:08.121736+0000 mon.a (mon.0) 593 : audit [DBG] from='client.? 172.21.15.70:0/2045051199' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-18T08:26:08.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:08 smithi070 bash[22844]: audit 2024-09-18T08:26:08.121736+0000 mon.a (mon.0) 593 : audit [DBG] from='client.? 172.21.15.70:0/2045051199' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-18T08:26:08.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:08 smithi172 bash[24990]: cluster 2024-09-18T08:26:06.943127+0000 mgr.a (mgr.14152) 301 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:08.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:08 smithi172 bash[24990]: cluster 2024-09-18T08:26:06.943127+0000 mgr.a (mgr.14152) 301 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:08.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:08 smithi172 bash[24990]: audit 2024-09-18T08:26:08.121736+0000 mon.a (mon.0) 593 : audit [DBG] from='client.? 172.21.15.70:0/2045051199' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-18T08:26:08.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:08 smithi172 bash[24990]: audit 2024-09-18T08:26:08.121736+0000 mon.a (mon.0) 593 : audit [DBG] from='client.? 172.21.15.70:0/2045051199' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-18T08:26:09.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:08 smithi086 bash[24678]: cluster 2024-09-18T08:26:06.943127+0000 mgr.a (mgr.14152) 301 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:09.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:08 smithi086 bash[24678]: cluster 2024-09-18T08:26:06.943127+0000 mgr.a (mgr.14152) 301 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:09.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:08 smithi086 bash[24678]: audit 2024-09-18T08:26:08.121736+0000 mon.a (mon.0) 593 : audit [DBG] from='client.? 172.21.15.70:0/2045051199' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-18T08:26:09.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:08 smithi086 bash[24678]: audit 2024-09-18T08:26:08.121736+0000 mon.a (mon.0) 593 : audit [DBG] from='client.? 172.21.15.70:0/2045051199' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-18T08:26:10.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:10 smithi070 bash[22844]: cluster 2024-09-18T08:26:08.943706+0000 mgr.a (mgr.14152) 302 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:10.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:10 smithi070 bash[22844]: cluster 2024-09-18T08:26:08.943706+0000 mgr.a (mgr.14152) 302 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:10.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:10 smithi172 bash[24990]: cluster 2024-09-18T08:26:08.943706+0000 mgr.a (mgr.14152) 302 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:10.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:10 smithi172 bash[24990]: cluster 2024-09-18T08:26:08.943706+0000 mgr.a (mgr.14152) 302 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:11.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:10 smithi086 bash[24678]: cluster 2024-09-18T08:26:08.943706+0000 mgr.a (mgr.14152) 302 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:11.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:10 smithi086 bash[24678]: cluster 2024-09-18T08:26:08.943706+0000 mgr.a (mgr.14152) 302 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:12.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:12 smithi070 bash[22844]: cluster 2024-09-18T08:26:10.944292+0000 mgr.a (mgr.14152) 303 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:12.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:12 smithi070 bash[22844]: cluster 2024-09-18T08:26:10.944292+0000 mgr.a (mgr.14152) 303 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:12.979 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:12 smithi172 bash[24990]: cluster 2024-09-18T08:26:10.944292+0000 mgr.a (mgr.14152) 303 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:12.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:12 smithi172 bash[24990]: cluster 2024-09-18T08:26:10.944292+0000 mgr.a (mgr.14152) 303 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:13.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:12 smithi086 bash[24678]: cluster 2024-09-18T08:26:10.944292+0000 mgr.a (mgr.14152) 303 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:13.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:12 smithi086 bash[24678]: cluster 2024-09-18T08:26:10.944292+0000 mgr.a (mgr.14152) 303 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:13.497 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:26:14.836 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:26:14.836 INFO:teuthology.orchestra.run.smithi070.stdout:{"epoch":39,"fsid":"1481c73c-7596-11ef-bceb-c7b262605968","created":"2024-09-18T08:17:20.836853+0000","modified":"2024-09-18T08:25:38.107673+0000","last_up_change":"2024-09-18T08:25:36.395733+0000","last_in_change":"2024-09-18T08:25:05.923409+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-18T08:22:51.266990+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":"21","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":"8044a3a9-164b-481b-aa4b-08f6decc7ed4","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6802","nonce":1321566685},{"type":"v1","addr":"172.21.15.70:6803","nonce":1321566685}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6804","nonce":1321566685},{"type":"v1","addr":"172.21.15.70:6805","nonce":1321566685}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6808","nonce":1321566685},{"type":"v1","addr":"172.21.15.70:6809","nonce":1321566685}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6806","nonce":1321566685},{"type":"v1","addr":"172.21.15.70:6807","nonce":1321566685}]},"public_addr":"172.21.15.70:6803/1321566685","cluster_addr":"172.21.15.70:6805/1321566685","heartbeat_back_addr":"172.21.15.70:6809/1321566685","heartbeat_front_addr":"172.21.15.70:6807/1321566685","state":["exists","up"]},{"osd":1,"uuid":"1fe06e9e-6c21-406e-b6e4-16a43f6449a5","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.70:6810","nonce":354058322},{"type":"v1","addr":"172.21.15.70:6811","nonce":354058322}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6812","nonce":354058322},{"type":"v1","addr":"172.21.15.70:6813","nonce":354058322}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6816","nonce":354058322},{"type":"v1","addr":"172.21.15.70:6817","nonce":354058322}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6814","nonce":354058322},{"type":"v1","addr":"172.21.15.70:6815","nonce":354058322}]},"public_addr":"172.21.15.70:6811/354058322","cluster_addr":"172.21.15.70:6813/354058322","heartbeat_back_addr":"172.21.15.70:6817/354058322","heartbeat_front_addr":"172.21.15.70:6815/354058322","state":["exists","up"]},{"osd":2,"uuid":"85fbd205-5341-40ec-a37c-e4097a161944","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6800","nonce":2009091660},{"type":"v1","addr":"172.21.15.86:6801","nonce":2009091660}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6802","nonce":2009091660},{"type":"v1","addr":"172.21.15.86:6803","nonce":2009091660}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6806","nonce":2009091660},{"type":"v1","addr":"172.21.15.86:6807","nonce":2009091660}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6804","nonce":2009091660},{"type":"v1","addr":"172.21.15.86:6805","nonce":2009091660}]},"public_addr":"172.21.15.86:6801/2009091660","cluster_addr":"172.21.15.86:6803/2009091660","heartbeat_back_addr":"172.21.15.86:6807/2009091660","heartbeat_front_addr":"172.21.15.86:6805/2009091660","state":["exists","up"]},{"osd":3,"uuid":"8b4785a4-6dad-4b2a-8bf2-2485b46f55cf","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6808","nonce":651378475},{"type":"v1","addr":"172.21.15.86:6809","nonce":651378475}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6810","nonce":651378475},{"type":"v1","addr":"172.21.15.86:6811","nonce":651378475}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6814","nonce":651378475},{"type":"v1","addr":"172.21.15.86:6815","nonce":651378475}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6812","nonce":651378475},{"type":"v1","addr":"172.21.15.86:6813","nonce":651378475}]},"public_addr":"172.21.15.86:6809/651378475","cluster_addr":"172.21.15.86:6811/651378475","heartbeat_back_addr":"172.21.15.86:6815/651378475","heartbeat_front_addr":"172.21.15.86:6813/651378475","state":["exists","up"]},{"osd":4,"uuid":"9dbbaa00-39ea-499a-85cb-07a496e1ebc0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6800","nonce":2213904211},{"type":"v1","addr":"172.21.15.172:6801","nonce":2213904211}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6802","nonce":2213904211},{"type":"v1","addr":"172.21.15.172:6803","nonce":2213904211}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6806","nonce":2213904211},{"type":"v1","addr":"172.21.15.172:6807","nonce":2213904211}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6804","nonce":2213904211},{"type":"v1","addr":"172.21.15.172:6805","nonce":2213904211}]},"public_addr":"172.21.15.172:6801/2213904211","cluster_addr":"172.21.15.172:6803/2213904211","heartbeat_back_addr":"172.21.15.172:6807/2213904211","heartbeat_front_addr":"172.21.15.172:6805/2213904211","state":["exists","up"]},{"osd":5,"uuid":"f5e17b51-4491-44dc-a6d7-6faac0d2c645","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6808","nonce":2478561766},{"type":"v1","addr":"172.21.15.172:6809","nonce":2478561766}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6810","nonce":2478561766},{"type":"v1","addr":"172.21.15.172:6811","nonce":2478561766}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6814","nonce":2478561766},{"type":"v1","addr":"172.21.15.172:6815","nonce":2478561766}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6812","nonce":2478561766},{"type":"v1","addr":"172.21.15.172:6813","nonce":2478561766}]},"public_addr":"172.21.15.172:6809/2478561766","cluster_addr":"172.21.15.172:6811/2478561766","heartbeat_back_addr":"172.21.15.172:6815/2478561766","heartbeat_front_addr":"172.21.15.172:6813/2478561766","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-18T08:20:59.870013+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-18T08:21:54.800904+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-18T08:22:49.053416+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-18T08:23:48.064013+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-18T08:24:39.850916+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-18T08:25:35.195065+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.70:6801/1475268349":"2024-09-19T08:18:20.817778+0000","172.21.15.70:0/1113522941":"2024-09-19T08:18:20.817778+0000","172.21.15.70:0/1958179124":"2024-09-19T08:18:20.817778+0000","172.21.15.70:0/3148545613":"2024-09-19T08:18:20.817778+0000","172.21.15.70:0/3967347580":"2024-09-19T08:17:47.661752+0000","172.21.15.70:6800/1475268349":"2024-09-19T08:18:20.817778+0000","172.21.15.70:0/3145642699":"2024-09-19T08:17:47.661752+0000","172.21.15.70:6801/1844512308":"2024-09-19T08:17:47.661752+0000","172.21.15.70:6800/1844512308":"2024-09-19T08:17:47.661752+0000","172.21.15.70:0/818830868":"2024-09-19T08:17:47.661752+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-18T08:26:14.848 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:14 smithi070 bash[22844]: cluster 2024-09-18T08:26:12.944862+0000 mgr.a (mgr.14152) 304 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:14.848 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:14 smithi070 bash[22844]: cluster 2024-09-18T08:26:12.944862+0000 mgr.a (mgr.14152) 304 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:14.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:14 smithi172 bash[24990]: cluster 2024-09-18T08:26:12.944862+0000 mgr.a (mgr.14152) 304 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:14.980 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:14 smithi172 bash[24990]: cluster 2024-09-18T08:26:12.944862+0000 mgr.a (mgr.14152) 304 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:15.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:14 smithi086 bash[24678]: cluster 2024-09-18T08:26:12.944862+0000 mgr.a (mgr.14152) 304 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:15.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:14 smithi086 bash[24678]: cluster 2024-09-18T08:26:12.944862+0000 mgr.a (mgr.14152) 304 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:15.425 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-18T08:26:15.425 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-18T08:26:16.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:15 smithi086 bash[24678]: audit 2024-09-18T08:26:14.841619+0000 mon.a (mon.0) 594 : audit [DBG] from='client.? 172.21.15.70:0/3490977652' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-18T08:26:16.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:15 smithi086 bash[24678]: audit 2024-09-18T08:26:14.841619+0000 mon.a (mon.0) 594 : audit [DBG] from='client.? 172.21.15.70:0/3490977652' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-18T08:26:16.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:15 smithi070 bash[22844]: audit 2024-09-18T08:26:14.841619+0000 mon.a (mon.0) 594 : audit [DBG] from='client.? 172.21.15.70:0/3490977652' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-18T08:26:16.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:15 smithi070 bash[22844]: audit 2024-09-18T08:26:14.841619+0000 mon.a (mon.0) 594 : audit [DBG] from='client.? 172.21.15.70:0/3490977652' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-18T08:26:16.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:15 smithi172 bash[24990]: audit 2024-09-18T08:26:14.841619+0000 mon.a (mon.0) 594 : audit [DBG] from='client.? 172.21.15.70:0/3490977652' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-18T08:26:16.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:15 smithi172 bash[24990]: audit 2024-09-18T08:26:14.841619+0000 mon.a (mon.0) 594 : audit [DBG] from='client.? 172.21.15.70:0/3490977652' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-18T08:26:17.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:16 smithi086 bash[24678]: cluster 2024-09-18T08:26:14.945240+0000 mgr.a (mgr.14152) 305 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:17.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:16 smithi086 bash[24678]: cluster 2024-09-18T08:26:14.945240+0000 mgr.a (mgr.14152) 305 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:17.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:16 smithi070 bash[22844]: cluster 2024-09-18T08:26:14.945240+0000 mgr.a (mgr.14152) 305 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:17.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:16 smithi070 bash[22844]: cluster 2024-09-18T08:26:14.945240+0000 mgr.a (mgr.14152) 305 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:17.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:16 smithi172 bash[24990]: cluster 2024-09-18T08:26:14.945240+0000 mgr.a (mgr.14152) 305 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:17.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:16 smithi172 bash[24990]: cluster 2024-09-18T08:26:14.945240+0000 mgr.a (mgr.14152) 305 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:19.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:18 smithi086 bash[24678]: cluster 2024-09-18T08:26:16.945751+0000 mgr.a (mgr.14152) 306 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:19.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:18 smithi086 bash[24678]: cluster 2024-09-18T08:26:16.945751+0000 mgr.a (mgr.14152) 306 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:19.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:18 smithi070 bash[22844]: cluster 2024-09-18T08:26:16.945751+0000 mgr.a (mgr.14152) 306 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:19.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:18 smithi070 bash[22844]: cluster 2024-09-18T08:26:16.945751+0000 mgr.a (mgr.14152) 306 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:19.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:18 smithi172 bash[24990]: cluster 2024-09-18T08:26:16.945751+0000 mgr.a (mgr.14152) 306 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:19.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:18 smithi172 bash[24990]: cluster 2024-09-18T08:26:16.945751+0000 mgr.a (mgr.14152) 306 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:20.165 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:26:21.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:20 smithi086 bash[24678]: cluster 2024-09-18T08:26:18.946372+0000 mgr.a (mgr.14152) 307 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:21.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:20 smithi086 bash[24678]: cluster 2024-09-18T08:26:18.946372+0000 mgr.a (mgr.14152) 307 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:21.102 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:20 smithi070 bash[22844]: cluster 2024-09-18T08:26:18.946372+0000 mgr.a (mgr.14152) 307 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:21.102 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:20 smithi070 bash[22844]: cluster 2024-09-18T08:26:18.946372+0000 mgr.a (mgr.14152) 307 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:21.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:20 smithi172 bash[24990]: cluster 2024-09-18T08:26:18.946372+0000 mgr.a (mgr.14152) 307 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:21.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:20 smithi172 bash[24990]: cluster 2024-09-18T08:26:18.946372+0000 mgr.a (mgr.14152) 307 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:21.446 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:26:21.447 INFO:teuthology.orchestra.run.smithi070.stdout:{"epoch":39,"fsid":"1481c73c-7596-11ef-bceb-c7b262605968","created":"2024-09-18T08:17:20.836853+0000","modified":"2024-09-18T08:25:38.107673+0000","last_up_change":"2024-09-18T08:25:36.395733+0000","last_in_change":"2024-09-18T08:25:05.923409+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-18T08:22:51.266990+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":"21","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":"8044a3a9-164b-481b-aa4b-08f6decc7ed4","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6802","nonce":1321566685},{"type":"v1","addr":"172.21.15.70:6803","nonce":1321566685}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6804","nonce":1321566685},{"type":"v1","addr":"172.21.15.70:6805","nonce":1321566685}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6808","nonce":1321566685},{"type":"v1","addr":"172.21.15.70:6809","nonce":1321566685}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6806","nonce":1321566685},{"type":"v1","addr":"172.21.15.70:6807","nonce":1321566685}]},"public_addr":"172.21.15.70:6803/1321566685","cluster_addr":"172.21.15.70:6805/1321566685","heartbeat_back_addr":"172.21.15.70:6809/1321566685","heartbeat_front_addr":"172.21.15.70:6807/1321566685","state":["exists","up"]},{"osd":1,"uuid":"1fe06e9e-6c21-406e-b6e4-16a43f6449a5","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.70:6810","nonce":354058322},{"type":"v1","addr":"172.21.15.70:6811","nonce":354058322}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6812","nonce":354058322},{"type":"v1","addr":"172.21.15.70:6813","nonce":354058322}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6816","nonce":354058322},{"type":"v1","addr":"172.21.15.70:6817","nonce":354058322}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6814","nonce":354058322},{"type":"v1","addr":"172.21.15.70:6815","nonce":354058322}]},"public_addr":"172.21.15.70:6811/354058322","cluster_addr":"172.21.15.70:6813/354058322","heartbeat_back_addr":"172.21.15.70:6817/354058322","heartbeat_front_addr":"172.21.15.70:6815/354058322","state":["exists","up"]},{"osd":2,"uuid":"85fbd205-5341-40ec-a37c-e4097a161944","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6800","nonce":2009091660},{"type":"v1","addr":"172.21.15.86:6801","nonce":2009091660}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6802","nonce":2009091660},{"type":"v1","addr":"172.21.15.86:6803","nonce":2009091660}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6806","nonce":2009091660},{"type":"v1","addr":"172.21.15.86:6807","nonce":2009091660}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6804","nonce":2009091660},{"type":"v1","addr":"172.21.15.86:6805","nonce":2009091660}]},"public_addr":"172.21.15.86:6801/2009091660","cluster_addr":"172.21.15.86:6803/2009091660","heartbeat_back_addr":"172.21.15.86:6807/2009091660","heartbeat_front_addr":"172.21.15.86:6805/2009091660","state":["exists","up"]},{"osd":3,"uuid":"8b4785a4-6dad-4b2a-8bf2-2485b46f55cf","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6808","nonce":651378475},{"type":"v1","addr":"172.21.15.86:6809","nonce":651378475}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6810","nonce":651378475},{"type":"v1","addr":"172.21.15.86:6811","nonce":651378475}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6814","nonce":651378475},{"type":"v1","addr":"172.21.15.86:6815","nonce":651378475}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6812","nonce":651378475},{"type":"v1","addr":"172.21.15.86:6813","nonce":651378475}]},"public_addr":"172.21.15.86:6809/651378475","cluster_addr":"172.21.15.86:6811/651378475","heartbeat_back_addr":"172.21.15.86:6815/651378475","heartbeat_front_addr":"172.21.15.86:6813/651378475","state":["exists","up"]},{"osd":4,"uuid":"9dbbaa00-39ea-499a-85cb-07a496e1ebc0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6800","nonce":2213904211},{"type":"v1","addr":"172.21.15.172:6801","nonce":2213904211}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6802","nonce":2213904211},{"type":"v1","addr":"172.21.15.172:6803","nonce":2213904211}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6806","nonce":2213904211},{"type":"v1","addr":"172.21.15.172:6807","nonce":2213904211}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6804","nonce":2213904211},{"type":"v1","addr":"172.21.15.172:6805","nonce":2213904211}]},"public_addr":"172.21.15.172:6801/2213904211","cluster_addr":"172.21.15.172:6803/2213904211","heartbeat_back_addr":"172.21.15.172:6807/2213904211","heartbeat_front_addr":"172.21.15.172:6805/2213904211","state":["exists","up"]},{"osd":5,"uuid":"f5e17b51-4491-44dc-a6d7-6faac0d2c645","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6808","nonce":2478561766},{"type":"v1","addr":"172.21.15.172:6809","nonce":2478561766}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6810","nonce":2478561766},{"type":"v1","addr":"172.21.15.172:6811","nonce":2478561766}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6814","nonce":2478561766},{"type":"v1","addr":"172.21.15.172:6815","nonce":2478561766}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6812","nonce":2478561766},{"type":"v1","addr":"172.21.15.172:6813","nonce":2478561766}]},"public_addr":"172.21.15.172:6809/2478561766","cluster_addr":"172.21.15.172:6811/2478561766","heartbeat_back_addr":"172.21.15.172:6815/2478561766","heartbeat_front_addr":"172.21.15.172:6813/2478561766","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-18T08:20:59.870013+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-18T08:21:54.800904+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-18T08:22:49.053416+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-18T08:23:48.064013+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-18T08:24:39.850916+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-18T08:25:35.195065+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.70:6801/1475268349":"2024-09-19T08:18:20.817778+0000","172.21.15.70:0/1113522941":"2024-09-19T08:18:20.817778+0000","172.21.15.70:0/1958179124":"2024-09-19T08:18:20.817778+0000","172.21.15.70:0/3148545613":"2024-09-19T08:18:20.817778+0000","172.21.15.70:0/3967347580":"2024-09-19T08:17:47.661752+0000","172.21.15.70:6800/1475268349":"2024-09-19T08:18:20.817778+0000","172.21.15.70:0/3145642699":"2024-09-19T08:17:47.661752+0000","172.21.15.70:6801/1844512308":"2024-09-19T08:17:47.661752+0000","172.21.15.70:6800/1844512308":"2024-09-19T08:17:47.661752+0000","172.21.15.70:0/818830868":"2024-09-19T08:17:47.661752+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-18T08:26:22.047 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:21 smithi070 bash[22844]: audit 2024-09-18T08:26:21.452966+0000 mon.a (mon.0) 595 : audit [DBG] from='client.? 172.21.15.70:0/2762387752' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-18T08:26:22.048 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:21 smithi070 bash[22844]: audit 2024-09-18T08:26:21.452966+0000 mon.a (mon.0) 595 : audit [DBG] from='client.? 172.21.15.70:0/2762387752' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-18T08:26:22.050 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-18T08:26:22.051 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-18T08:26:22.052 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-18T08:26:22.053 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-18T08:26:22.053 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-18T08:26:22.054 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-18T08:26:22.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:21 smithi086 bash[24678]: audit 2024-09-18T08:26:21.452966+0000 mon.a (mon.0) 595 : audit [DBG] from='client.? 172.21.15.70:0/2762387752' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-18T08:26:22.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:21 smithi086 bash[24678]: audit 2024-09-18T08:26:21.452966+0000 mon.a (mon.0) 595 : audit [DBG] from='client.? 172.21.15.70:0/2762387752' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-18T08:26:22.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:21 smithi172 bash[24990]: audit 2024-09-18T08:26:21.452966+0000 mon.a (mon.0) 595 : audit [DBG] from='client.? 172.21.15.70:0/2762387752' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-18T08:26:22.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:21 smithi172 bash[24990]: audit 2024-09-18T08:26:21.452966+0000 mon.a (mon.0) 595 : audit [DBG] from='client.? 172.21.15.70:0/2762387752' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-18T08:26:23.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:22 smithi086 bash[24678]: cluster 2024-09-18T08:26:20.946945+0000 mgr.a (mgr.14152) 308 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:23.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:22 smithi086 bash[24678]: cluster 2024-09-18T08:26:20.946945+0000 mgr.a (mgr.14152) 308 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:23.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:22 smithi070 bash[22844]: cluster 2024-09-18T08:26:20.946945+0000 mgr.a (mgr.14152) 308 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:23.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:22 smithi070 bash[22844]: cluster 2024-09-18T08:26:20.946945+0000 mgr.a (mgr.14152) 308 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:23.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:22 smithi172 bash[24990]: cluster 2024-09-18T08:26:20.946945+0000 mgr.a (mgr.14152) 308 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:23.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:22 smithi172 bash[24990]: cluster 2024-09-18T08:26:20.946945+0000 mgr.a (mgr.14152) 308 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:25.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:24 smithi086 bash[24678]: cluster 2024-09-18T08:26:22.947487+0000 mgr.a (mgr.14152) 309 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:25.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:24 smithi086 bash[24678]: cluster 2024-09-18T08:26:22.947487+0000 mgr.a (mgr.14152) 309 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:25.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:24 smithi070 bash[22844]: cluster 2024-09-18T08:26:22.947487+0000 mgr.a (mgr.14152) 309 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:25.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:24 smithi070 bash[22844]: cluster 2024-09-18T08:26:22.947487+0000 mgr.a (mgr.14152) 309 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:25.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:24 smithi172 bash[24990]: cluster 2024-09-18T08:26:22.947487+0000 mgr.a (mgr.14152) 309 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:25.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:24 smithi172 bash[24990]: cluster 2024-09-18T08:26:22.947487+0000 mgr.a (mgr.14152) 309 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:26.814 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:26:26.815 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:26:26.815 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:26:26.816 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:26:26.816 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:26:26.816 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:26:27.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:26 smithi086 bash[24678]: cluster 2024-09-18T08:26:24.948066+0000 mgr.a (mgr.14152) 310 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:27.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:26 smithi086 bash[24678]: cluster 2024-09-18T08:26:24.948066+0000 mgr.a (mgr.14152) 310 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:27.107 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:26 smithi070 bash[22844]: cluster 2024-09-18T08:26:24.948066+0000 mgr.a (mgr.14152) 310 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:27.107 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:26 smithi070 bash[22844]: cluster 2024-09-18T08:26:24.948066+0000 mgr.a (mgr.14152) 310 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:27.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:26 smithi172 bash[24990]: cluster 2024-09-18T08:26:24.948066+0000 mgr.a (mgr.14152) 310 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:27.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:26 smithi172 bash[24990]: cluster 2024-09-18T08:26:24.948066+0000 mgr.a (mgr.14152) 310 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:28.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:28 smithi070 bash[22844]: cluster 2024-09-18T08:26:26.948605+0000 mgr.a (mgr.14152) 311 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:28.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:28 smithi070 bash[22844]: cluster 2024-09-18T08:26:26.948605+0000 mgr.a (mgr.14152) 311 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:29.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:28 smithi086 bash[24678]: cluster 2024-09-18T08:26:26.948605+0000 mgr.a (mgr.14152) 311 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:29.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:28 smithi086 bash[24678]: cluster 2024-09-18T08:26:26.948605+0000 mgr.a (mgr.14152) 311 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:29.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:28 smithi172 bash[24990]: cluster 2024-09-18T08:26:26.948605+0000 mgr.a (mgr.14152) 311 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:29.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:28 smithi172 bash[24990]: cluster 2024-09-18T08:26:26.948605+0000 mgr.a (mgr.14152) 311 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:30.622 INFO:teuthology.orchestra.run.smithi070.stdout:34359738437 2024-09-18T08:26:30.623 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-18T08:26:30.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:30 smithi070 bash[22844]: cluster 2024-09-18T08:26:28.948992+0000 mgr.a (mgr.14152) 312 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:30.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:30 smithi070 bash[22844]: cluster 2024-09-18T08:26:28.948992+0000 mgr.a (mgr.14152) 312 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:31.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:30 smithi086 bash[24678]: cluster 2024-09-18T08:26:28.948992+0000 mgr.a (mgr.14152) 312 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:31.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:30 smithi086 bash[24678]: cluster 2024-09-18T08:26:28.948992+0000 mgr.a (mgr.14152) 312 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:31.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:30 smithi172 bash[24990]: cluster 2024-09-18T08:26:28.948992+0000 mgr.a (mgr.14152) 312 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:31.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:30 smithi172 bash[24990]: cluster 2024-09-18T08:26:28.948992+0000 mgr.a (mgr.14152) 312 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:31.424 INFO:teuthology.orchestra.run.smithi070.stdout:107374182434 2024-09-18T08:26:31.424 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-18T08:26:32.066 INFO:teuthology.orchestra.run.smithi070.stdout:158913789965 2024-09-18T08:26:32.066 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-18T08:26:32.558 INFO:teuthology.orchestra.run.smithi070.stdout:77309411375 2024-09-18T08:26:32.559 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-18T08:26:32.835 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:32 smithi070 bash[22844]: cluster 2024-09-18T08:26:30.949297+0000 mgr.a (mgr.14152) 313 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:32.835 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:32 smithi070 bash[22844]: cluster 2024-09-18T08:26:30.949297+0000 mgr.a (mgr.14152) 313 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:32.836 INFO:teuthology.orchestra.run.smithi070.stdout:55834574905 2024-09-18T08:26:32.837 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-18T08:26:32.887 INFO:teuthology.orchestra.run.smithi070.stdout:133143986201 2024-09-18T08:26:32.888 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-18T08:26:33.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:32 smithi086 bash[24678]: cluster 2024-09-18T08:26:30.949297+0000 mgr.a (mgr.14152) 313 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:33.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:32 smithi086 bash[24678]: cluster 2024-09-18T08:26:30.949297+0000 mgr.a (mgr.14152) 313 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:33.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:32 smithi172 bash[24990]: cluster 2024-09-18T08:26:30.949297+0000 mgr.a (mgr.14152) 313 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:33.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:32 smithi172 bash[24990]: cluster 2024-09-18T08:26:30.949297+0000 mgr.a (mgr.14152) 313 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:35.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:34 smithi086 bash[24678]: cluster 2024-09-18T08:26:32.949856+0000 mgr.a (mgr.14152) 314 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:35.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:34 smithi086 bash[24678]: cluster 2024-09-18T08:26:32.949856+0000 mgr.a (mgr.14152) 314 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:35.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:34 smithi070 bash[22844]: cluster 2024-09-18T08:26:32.949856+0000 mgr.a (mgr.14152) 314 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:35.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:34 smithi070 bash[22844]: cluster 2024-09-18T08:26:32.949856+0000 mgr.a (mgr.14152) 314 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:35.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:34 smithi172 bash[24990]: cluster 2024-09-18T08:26:32.949856+0000 mgr.a (mgr.14152) 314 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:35.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:34 smithi172 bash[24990]: cluster 2024-09-18T08:26:32.949856+0000 mgr.a (mgr.14152) 314 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:35.363 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:26:35.364 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:26:36.372 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:26:36.372 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:26:36.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:36 smithi070 bash[22844]: cluster 2024-09-18T08:26:34.950439+0000 mgr.a (mgr.14152) 315 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:36.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:36 smithi070 bash[22844]: cluster 2024-09-18T08:26:34.950439+0000 mgr.a (mgr.14152) 315 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:37.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:36 smithi086 bash[24678]: cluster 2024-09-18T08:26:34.950439+0000 mgr.a (mgr.14152) 315 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:37.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:36 smithi086 bash[24678]: cluster 2024-09-18T08:26:34.950439+0000 mgr.a (mgr.14152) 315 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:37.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:36 smithi172 bash[24990]: cluster 2024-09-18T08:26:34.950439+0000 mgr.a (mgr.14152) 315 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:37.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:36 smithi172 bash[24990]: cluster 2024-09-18T08:26:34.950439+0000 mgr.a (mgr.14152) 315 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:37.380 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:26:37.380 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:26:37.881 INFO:teuthology.orchestra.run.smithi070.stdout:34359738438 2024-09-18T08:26:38.045 INFO:teuthology.orchestra.run.smithi070.stdout:107374182436 2024-09-18T08:26:39.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:38 smithi086 bash[24678]: cluster 2024-09-18T08:26:36.951029+0000 mgr.a (mgr.14152) 316 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:39.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:38 smithi086 bash[24678]: cluster 2024-09-18T08:26:36.951029+0000 mgr.a (mgr.14152) 316 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:39.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:38 smithi086 bash[24678]: audit 2024-09-18T08:26:37.889323+0000 mon.a (mon.0) 596 : audit [DBG] from='client.? 172.21.15.70:0/342328399' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-18T08:26:39.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:38 smithi086 bash[24678]: audit 2024-09-18T08:26:37.889323+0000 mon.a (mon.0) 596 : audit [DBG] from='client.? 172.21.15.70:0/342328399' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-18T08:26:39.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:38 smithi086 bash[24678]: audit 2024-09-18T08:26:38.052129+0000 mon.a (mon.0) 597 : audit [DBG] from='client.? 172.21.15.70:0/1230047185' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-18T08:26:39.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:38 smithi086 bash[24678]: audit 2024-09-18T08:26:38.052129+0000 mon.a (mon.0) 597 : audit [DBG] from='client.? 172.21.15.70:0/1230047185' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-18T08:26:39.227 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:38 smithi070 bash[22844]: cluster 2024-09-18T08:26:36.951029+0000 mgr.a (mgr.14152) 316 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:39.227 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:38 smithi070 bash[22844]: cluster 2024-09-18T08:26:36.951029+0000 mgr.a (mgr.14152) 316 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:39.227 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:38 smithi070 bash[22844]: audit 2024-09-18T08:26:37.889323+0000 mon.a (mon.0) 596 : audit [DBG] from='client.? 172.21.15.70:0/342328399' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-18T08:26:39.227 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:38 smithi070 bash[22844]: audit 2024-09-18T08:26:37.889323+0000 mon.a (mon.0) 596 : audit [DBG] from='client.? 172.21.15.70:0/342328399' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-18T08:26:39.227 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:38 smithi070 bash[22844]: audit 2024-09-18T08:26:38.052129+0000 mon.a (mon.0) 597 : audit [DBG] from='client.? 172.21.15.70:0/1230047185' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-18T08:26:39.228 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:38 smithi070 bash[22844]: audit 2024-09-18T08:26:38.052129+0000 mon.a (mon.0) 597 : audit [DBG] from='client.? 172.21.15.70:0/1230047185' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-18T08:26:39.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:38 smithi172 bash[24990]: cluster 2024-09-18T08:26:36.951029+0000 mgr.a (mgr.14152) 316 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:39.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:38 smithi172 bash[24990]: cluster 2024-09-18T08:26:36.951029+0000 mgr.a (mgr.14152) 316 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:39.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:38 smithi172 bash[24990]: audit 2024-09-18T08:26:37.889323+0000 mon.a (mon.0) 596 : audit [DBG] from='client.? 172.21.15.70:0/342328399' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-18T08:26:39.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:38 smithi172 bash[24990]: audit 2024-09-18T08:26:37.889323+0000 mon.a (mon.0) 596 : audit [DBG] from='client.? 172.21.15.70:0/342328399' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-18T08:26:39.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:38 smithi172 bash[24990]: audit 2024-09-18T08:26:38.052129+0000 mon.a (mon.0) 597 : audit [DBG] from='client.? 172.21.15.70:0/1230047185' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-18T08:26:39.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:38 smithi172 bash[24990]: audit 2024-09-18T08:26:38.052129+0000 mon.a (mon.0) 597 : audit [DBG] from='client.? 172.21.15.70:0/1230047185' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-18T08:26:40.028 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182434 got 107374182436 for osd.3 2024-09-18T08:26:40.029 DEBUG:teuthology.parallel:result is None 2024-09-18T08:26:40.206 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738437 got 34359738438 for osd.0 2024-09-18T08:26:40.206 DEBUG:teuthology.parallel:result is None 2024-09-18T08:26:40.723 INFO:teuthology.orchestra.run.smithi070.stdout:158913789967 2024-09-18T08:26:40.763 INFO:teuthology.orchestra.run.smithi070.stdout:77309411377 2024-09-18T08:26:40.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:40 smithi070 bash[22844]: cluster 2024-09-18T08:26:38.951604+0000 mgr.a (mgr.14152) 317 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:40.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:40 smithi070 bash[22844]: cluster 2024-09-18T08:26:38.951604+0000 mgr.a (mgr.14152) 317 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:40.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:40 smithi070 bash[22844]: audit 2024-09-18T08:26:40.731053+0000 mon.a (mon.0) 598 : audit [DBG] from='client.? 172.21.15.70:0/1006052958' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-18T08:26:40.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:40 smithi070 bash[22844]: audit 2024-09-18T08:26:40.731053+0000 mon.a (mon.0) 598 : audit [DBG] from='client.? 172.21.15.70:0/1006052958' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-18T08:26:40.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:40 smithi070 bash[22844]: audit 2024-09-18T08:26:40.770651+0000 mon.a (mon.0) 599 : audit [DBG] from='client.? 172.21.15.70:0/1249349830' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-18T08:26:40.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:40 smithi070 bash[22844]: audit 2024-09-18T08:26:40.770651+0000 mon.a (mon.0) 599 : audit [DBG] from='client.? 172.21.15.70:0/1249349830' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-18T08:26:41.006 INFO:teuthology.orchestra.run.smithi070.stdout:133143986203 2024-09-18T08:26:41.047 INFO:teuthology.orchestra.run.smithi070.stdout:55834574907 2024-09-18T08:26:41.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:40 smithi086 bash[24678]: cluster 2024-09-18T08:26:38.951604+0000 mgr.a (mgr.14152) 317 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:41.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:40 smithi086 bash[24678]: cluster 2024-09-18T08:26:38.951604+0000 mgr.a (mgr.14152) 317 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:41.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:40 smithi086 bash[24678]: audit 2024-09-18T08:26:40.731053+0000 mon.a (mon.0) 598 : audit [DBG] from='client.? 172.21.15.70:0/1006052958' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-18T08:26:41.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:40 smithi086 bash[24678]: audit 2024-09-18T08:26:40.731053+0000 mon.a (mon.0) 598 : audit [DBG] from='client.? 172.21.15.70:0/1006052958' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-18T08:26:41.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:40 smithi086 bash[24678]: audit 2024-09-18T08:26:40.770651+0000 mon.a (mon.0) 599 : audit [DBG] from='client.? 172.21.15.70:0/1249349830' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-18T08:26:41.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:40 smithi086 bash[24678]: audit 2024-09-18T08:26:40.770651+0000 mon.a (mon.0) 599 : audit [DBG] from='client.? 172.21.15.70:0/1249349830' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-18T08:26:41.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:40 smithi172 bash[24990]: cluster 2024-09-18T08:26:38.951604+0000 mgr.a (mgr.14152) 317 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:41.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:40 smithi172 bash[24990]: cluster 2024-09-18T08:26:38.951604+0000 mgr.a (mgr.14152) 317 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:41.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:40 smithi172 bash[24990]: audit 2024-09-18T08:26:40.731053+0000 mon.a (mon.0) 598 : audit [DBG] from='client.? 172.21.15.70:0/1006052958' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-18T08:26:41.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:40 smithi172 bash[24990]: audit 2024-09-18T08:26:40.731053+0000 mon.a (mon.0) 598 : audit [DBG] from='client.? 172.21.15.70:0/1006052958' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-18T08:26:41.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:40 smithi172 bash[24990]: audit 2024-09-18T08:26:40.770651+0000 mon.a (mon.0) 599 : audit [DBG] from='client.? 172.21.15.70:0/1249349830' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-18T08:26:41.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:40 smithi172 bash[24990]: audit 2024-09-18T08:26:40.770651+0000 mon.a (mon.0) 599 : audit [DBG] from='client.? 172.21.15.70:0/1249349830' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-18T08:26:41.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:41 smithi070 bash[22844]: audit 2024-09-18T08:26:41.014477+0000 mon.a (mon.0) 600 : audit [DBG] from='client.? 172.21.15.70:0/780586917' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-18T08:26:41.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:41 smithi070 bash[22844]: audit 2024-09-18T08:26:41.014477+0000 mon.a (mon.0) 600 : audit [DBG] from='client.? 172.21.15.70:0/780586917' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-18T08:26:41.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:41 smithi070 bash[22844]: audit 2024-09-18T08:26:41.055090+0000 mon.a (mon.0) 601 : audit [DBG] from='client.? 172.21.15.70:0/520734060' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-18T08:26:41.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:41 smithi070 bash[22844]: audit 2024-09-18T08:26:41.055090+0000 mon.a (mon.0) 601 : audit [DBG] from='client.? 172.21.15.70:0/520734060' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-18T08:26:42.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:41 smithi086 bash[24678]: audit 2024-09-18T08:26:41.014477+0000 mon.a (mon.0) 600 : audit [DBG] from='client.? 172.21.15.70:0/780586917' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-18T08:26:42.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:41 smithi086 bash[24678]: audit 2024-09-18T08:26:41.014477+0000 mon.a (mon.0) 600 : audit [DBG] from='client.? 172.21.15.70:0/780586917' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-18T08:26:42.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:41 smithi086 bash[24678]: audit 2024-09-18T08:26:41.055090+0000 mon.a (mon.0) 601 : audit [DBG] from='client.? 172.21.15.70:0/520734060' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-18T08:26:42.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:41 smithi086 bash[24678]: audit 2024-09-18T08:26:41.055090+0000 mon.a (mon.0) 601 : audit [DBG] from='client.? 172.21.15.70:0/520734060' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-18T08:26:42.222 INFO:tasks.cephadm.ceph_manager.ceph:need seq 158913789965 got 158913789967 for osd.5 2024-09-18T08:26:42.223 DEBUG:teuthology.parallel:result is None 2024-09-18T08:26:42.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:41 smithi172 bash[24990]: audit 2024-09-18T08:26:41.014477+0000 mon.a (mon.0) 600 : audit [DBG] from='client.? 172.21.15.70:0/780586917' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-18T08:26:42.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:41 smithi172 bash[24990]: audit 2024-09-18T08:26:41.014477+0000 mon.a (mon.0) 600 : audit [DBG] from='client.? 172.21.15.70:0/780586917' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-18T08:26:42.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:41 smithi172 bash[24990]: audit 2024-09-18T08:26:41.055090+0000 mon.a (mon.0) 601 : audit [DBG] from='client.? 172.21.15.70:0/520734060' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-18T08:26:42.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:41 smithi172 bash[24990]: audit 2024-09-18T08:26:41.055090+0000 mon.a (mon.0) 601 : audit [DBG] from='client.? 172.21.15.70:0/520734060' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-18T08:26:42.383 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411375 got 77309411377 for osd.2 2024-09-18T08:26:42.384 DEBUG:teuthology.parallel:result is None 2024-09-18T08:26:42.578 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574905 got 55834574907 for osd.1 2024-09-18T08:26:42.578 DEBUG:teuthology.parallel:result is None 2024-09-18T08:26:42.632 INFO:tasks.cephadm.ceph_manager.ceph:need seq 133143986201 got 133143986203 for osd.4 2024-09-18T08:26:42.632 DEBUG:teuthology.parallel:result is None 2024-09-18T08:26:42.632 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-18T08:26:42.633 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-18T08:26:42.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:42 smithi070 bash[22844]: cluster 2024-09-18T08:26:40.952104+0000 mgr.a (mgr.14152) 318 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:42.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:42 smithi070 bash[22844]: cluster 2024-09-18T08:26:40.952104+0000 mgr.a (mgr.14152) 318 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:43.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:42 smithi086 bash[24678]: cluster 2024-09-18T08:26:40.952104+0000 mgr.a (mgr.14152) 318 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:43.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:42 smithi086 bash[24678]: cluster 2024-09-18T08:26:40.952104+0000 mgr.a (mgr.14152) 318 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:43.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:42 smithi172 bash[24990]: cluster 2024-09-18T08:26:40.952104+0000 mgr.a (mgr.14152) 318 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:43.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:42 smithi172 bash[24990]: cluster 2024-09-18T08:26:40.952104+0000 mgr.a (mgr.14152) 318 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:44.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:43 smithi086 bash[24678]: audit 2024-09-18T08:26:43.752371+0000 mon.a (mon.0) 602 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:26:44.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:43 smithi086 bash[24678]: audit 2024-09-18T08:26:43.752371+0000 mon.a (mon.0) 602 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:26:44.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:43 smithi070 bash[22844]: audit 2024-09-18T08:26:43.752371+0000 mon.a (mon.0) 602 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:26:44.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:43 smithi070 bash[22844]: audit 2024-09-18T08:26:43.752371+0000 mon.a (mon.0) 602 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:26:44.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:43 smithi172 bash[24990]: audit 2024-09-18T08:26:43.752371+0000 mon.a (mon.0) 602 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:26:44.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:43 smithi172 bash[24990]: audit 2024-09-18T08:26:43.752371+0000 mon.a (mon.0) 602 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:26:45.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:44 smithi086 bash[24678]: cluster 2024-09-18T08:26:42.952645+0000 mgr.a (mgr.14152) 319 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:45.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:44 smithi086 bash[24678]: cluster 2024-09-18T08:26:42.952645+0000 mgr.a (mgr.14152) 319 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:45.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:44 smithi086 bash[24678]: audit 2024-09-18T08:26:44.573061+0000 mon.a (mon.0) 603 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:26:45.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:44 smithi086 bash[24678]: audit 2024-09-18T08:26:44.573061+0000 mon.a (mon.0) 603 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:26:45.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:44 smithi086 bash[24678]: audit 2024-09-18T08:26:44.574618+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:26:45.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:44 smithi086 bash[24678]: audit 2024-09-18T08:26:44.574618+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:26:45.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:44 smithi086 bash[24678]: audit 2024-09-18T08:26:44.583946+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:26:45.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:44 smithi086 bash[24678]: audit 2024-09-18T08:26:44.583946+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:26:45.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:44 smithi070 bash[22844]: cluster 2024-09-18T08:26:42.952645+0000 mgr.a (mgr.14152) 319 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:45.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:44 smithi070 bash[22844]: cluster 2024-09-18T08:26:42.952645+0000 mgr.a (mgr.14152) 319 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:45.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:44 smithi070 bash[22844]: audit 2024-09-18T08:26:44.573061+0000 mon.a (mon.0) 603 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:26:45.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:44 smithi070 bash[22844]: audit 2024-09-18T08:26:44.573061+0000 mon.a (mon.0) 603 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:26:45.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:44 smithi070 bash[22844]: audit 2024-09-18T08:26:44.574618+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:26:45.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:44 smithi070 bash[22844]: audit 2024-09-18T08:26:44.574618+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:26:45.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:44 smithi070 bash[22844]: audit 2024-09-18T08:26:44.583946+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:26:45.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:44 smithi070 bash[22844]: audit 2024-09-18T08:26:44.583946+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:26:45.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:44 smithi172 bash[24990]: cluster 2024-09-18T08:26:42.952645+0000 mgr.a (mgr.14152) 319 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:45.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:44 smithi172 bash[24990]: cluster 2024-09-18T08:26:42.952645+0000 mgr.a (mgr.14152) 319 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:45.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:44 smithi172 bash[24990]: audit 2024-09-18T08:26:44.573061+0000 mon.a (mon.0) 603 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:26:45.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:44 smithi172 bash[24990]: audit 2024-09-18T08:26:44.573061+0000 mon.a (mon.0) 603 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:26:45.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:44 smithi172 bash[24990]: audit 2024-09-18T08:26:44.574618+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:26:45.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:44 smithi172 bash[24990]: audit 2024-09-18T08:26:44.574618+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:26:45.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:44 smithi172 bash[24990]: audit 2024-09-18T08:26:44.583946+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:26:45.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:44 smithi172 bash[24990]: audit 2024-09-18T08:26:44.583946+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:26:47.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:46 smithi086 bash[24678]: cluster 2024-09-18T08:26:44.953231+0000 mgr.a (mgr.14152) 320 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:47.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:46 smithi086 bash[24678]: cluster 2024-09-18T08:26:44.953231+0000 mgr.a (mgr.14152) 320 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:47.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:46 smithi070 bash[22844]: cluster 2024-09-18T08:26:44.953231+0000 mgr.a (mgr.14152) 320 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:47.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:46 smithi070 bash[22844]: cluster 2024-09-18T08:26:44.953231+0000 mgr.a (mgr.14152) 320 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:47.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:46 smithi172 bash[24990]: cluster 2024-09-18T08:26:44.953231+0000 mgr.a (mgr.14152) 320 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:47.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:46 smithi172 bash[24990]: cluster 2024-09-18T08:26:44.953231+0000 mgr.a (mgr.14152) 320 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:47.378 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:26:48.665 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:26:48.666 INFO:teuthology.orchestra.run.smithi070.stderr:dumped all 2024-09-18T08:26:48.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:48 smithi070 bash[22844]: cluster 2024-09-18T08:26:46.953735+0000 mgr.a (mgr.14152) 321 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:48.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:48 smithi070 bash[22844]: cluster 2024-09-18T08:26:46.953735+0000 mgr.a (mgr.14152) 321 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:49.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:48 smithi086 bash[24678]: cluster 2024-09-18T08:26:46.953735+0000 mgr.a (mgr.14152) 321 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:49.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:48 smithi086 bash[24678]: cluster 2024-09-18T08:26:46.953735+0000 mgr.a (mgr.14152) 321 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:49.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:48 smithi172 bash[24990]: cluster 2024-09-18T08:26:46.953735+0000 mgr.a (mgr.14152) 321 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:49.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:48 smithi172 bash[24990]: cluster 2024-09-18T08:26:46.953735+0000 mgr.a (mgr.14152) 321 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:49.291 INFO:teuthology.orchestra.run.smithi070.stdout:{"pg_ready":true,"pg_map":{"version":282,"stamp":"2024-09-18T08:26:46.953487+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":178472,"kb_used_data":3804,"kb_used_omap":9,"kb_used_meta":174518,"kb_avail":562292440,"statfs":{"total":575970213888,"available":575787458560,"internally_reserved":0,"allocated":3895296,"data_stored":2577090,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9568,"internal_metadata":178707104},"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.003314"},"pg_stats":[{"pgid":"1.0","version":"20'92","reported_seq":65,"reported_epoch":39,"state":"active+clean","last_fresh":"2024-09-18T08:25:38.331737+0000","last_change":"2024-09-18T08:25:38.330777+0000","last_active":"2024-09-18T08:25:38.331737+0000","last_peered":"2024-09-18T08:25:38.331737+0000","last_clean":"2024-09-18T08:25:38.331737+0000","last_became_active":"2024-09-18T08:25:38.318703+0000","last_became_peered":"2024-09-18T08:25:38.318703+0000","last_unstale":"2024-09-18T08:25:38.331737+0000","last_undegraded":"2024-09-18T08:25:38.331737+0000","last_fullsized":"2024-09-18T08:25:38.331737+0000","mapping_epoch":38,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":39,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-18T08:22:52.047267+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-18T08:22:52.047267+0000","last_clean_scrub_stamp":"2024-09-18T08:22:52.047267+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-19T17:54:53.325335+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":2969600,"data_stored":2951840,"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":37,"seq":158913789969,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32120,"kb_used_data":924,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713032,"statfs":{"total":95995035648,"available":95962144768,"internally_reserved":0,"allocated":946176,"data_stored":724699,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":31,"seq":133143986204,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31532,"kb_used_data":344,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713620,"statfs":{"total":95995035648,"available":95962746880,"internally_reserved":0,"allocated":352256,"data_stored":134331,"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":25,"seq":107374182438,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27952,"kb_used_data":924,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717200,"statfs":{"total":95995035648,"available":95966412800,"internally_reserved":0,"allocated":946176,"data_stored":724699,"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":77309411378,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27956,"kb_used_data":924,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717196,"statfs":{"total":95995035648,"available":95966408704,"internally_reserved":0,"allocated":946176,"data_stored":724699,"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":55834574908,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27376,"kb_used_data":344,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717776,"statfs":{"total":95995035648,"available":95967002624,"internally_reserved":0,"allocated":352256,"data_stored":134331,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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":34359738440,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31536,"kb_used_data":344,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713616,"statfs":{"total":95995035648,"available":95962742784,"internally_reserved":0,"allocated":352256,"data_stored":134331,"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":0,"data_stored":0,"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-18T08:26:49.292 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-18T08:26:50.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:49 smithi086 bash[24678]: audit 2024-09-18T08:26:48.672632+0000 mgr.a (mgr.14152) 322 : audit [DBG] from='client.14454 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:26:50.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:49 smithi086 bash[24678]: audit 2024-09-18T08:26:48.672632+0000 mgr.a (mgr.14152) 322 : audit [DBG] from='client.14454 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:26:50.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:49 smithi070 bash[22844]: audit 2024-09-18T08:26:48.672632+0000 mgr.a (mgr.14152) 322 : audit [DBG] from='client.14454 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:26:50.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:49 smithi070 bash[22844]: audit 2024-09-18T08:26:48.672632+0000 mgr.a (mgr.14152) 322 : audit [DBG] from='client.14454 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:26:50.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:49 smithi172 bash[24990]: audit 2024-09-18T08:26:48.672632+0000 mgr.a (mgr.14152) 322 : audit [DBG] from='client.14454 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:26:50.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:49 smithi172 bash[24990]: audit 2024-09-18T08:26:48.672632+0000 mgr.a (mgr.14152) 322 : audit [DBG] from='client.14454 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:26:51.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:50 smithi086 bash[24678]: cluster 2024-09-18T08:26:48.954338+0000 mgr.a (mgr.14152) 323 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:51.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:50 smithi086 bash[24678]: cluster 2024-09-18T08:26:48.954338+0000 mgr.a (mgr.14152) 323 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:51.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:50 smithi070 bash[22844]: cluster 2024-09-18T08:26:48.954338+0000 mgr.a (mgr.14152) 323 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:51.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:50 smithi070 bash[22844]: cluster 2024-09-18T08:26:48.954338+0000 mgr.a (mgr.14152) 323 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:51.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:50 smithi172 bash[24990]: cluster 2024-09-18T08:26:48.954338+0000 mgr.a (mgr.14152) 323 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:51.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:50 smithi172 bash[24990]: cluster 2024-09-18T08:26:48.954338+0000 mgr.a (mgr.14152) 323 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:53.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:52 smithi086 bash[24678]: cluster 2024-09-18T08:26:50.954905+0000 mgr.a (mgr.14152) 324 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:53.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:52 smithi086 bash[24678]: cluster 2024-09-18T08:26:50.954905+0000 mgr.a (mgr.14152) 324 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:53.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:52 smithi070 bash[22844]: cluster 2024-09-18T08:26:50.954905+0000 mgr.a (mgr.14152) 324 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:53.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:52 smithi070 bash[22844]: cluster 2024-09-18T08:26:50.954905+0000 mgr.a (mgr.14152) 324 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:53.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:52 smithi172 bash[24990]: cluster 2024-09-18T08:26:50.954905+0000 mgr.a (mgr.14152) 324 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:53.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:52 smithi172 bash[24990]: cluster 2024-09-18T08:26:50.954905+0000 mgr.a (mgr.14152) 324 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:54.041 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:26:55.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:54 smithi086 bash[24678]: cluster 2024-09-18T08:26:52.955501+0000 mgr.a (mgr.14152) 325 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:55.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:54 smithi086 bash[24678]: cluster 2024-09-18T08:26:52.955501+0000 mgr.a (mgr.14152) 325 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:55.088 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:54 smithi070 bash[22844]: cluster 2024-09-18T08:26:52.955501+0000 mgr.a (mgr.14152) 325 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:55.088 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:54 smithi070 bash[22844]: cluster 2024-09-18T08:26:52.955501+0000 mgr.a (mgr.14152) 325 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:55.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:54 smithi172 bash[24990]: cluster 2024-09-18T08:26:52.955501+0000 mgr.a (mgr.14152) 325 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:55.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:54 smithi172 bash[24990]: cluster 2024-09-18T08:26:52.955501+0000 mgr.a (mgr.14152) 325 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:55.405 INFO:teuthology.orchestra.run.smithi070.stderr:dumped all 2024-09-18T08:26:55.405 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:26:56.014 INFO:teuthology.orchestra.run.smithi070.stdout:{"pg_ready":true,"pg_map":{"version":286,"stamp":"2024-09-18T08:26:54.955807+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":178472,"kb_used_data":3804,"kb_used_omap":9,"kb_used_meta":174518,"kb_avail":562292440,"statfs":{"total":575970213888,"available":575787458560,"internally_reserved":0,"allocated":3895296,"data_stored":2577090,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9568,"internal_metadata":178707104},"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.003422"},"pg_stats":[{"pgid":"1.0","version":"20'92","reported_seq":65,"reported_epoch":39,"state":"active+clean","last_fresh":"2024-09-18T08:25:38.331737+0000","last_change":"2024-09-18T08:25:38.330777+0000","last_active":"2024-09-18T08:25:38.331737+0000","last_peered":"2024-09-18T08:25:38.331737+0000","last_clean":"2024-09-18T08:25:38.331737+0000","last_became_active":"2024-09-18T08:25:38.318703+0000","last_became_peered":"2024-09-18T08:25:38.318703+0000","last_unstale":"2024-09-18T08:25:38.331737+0000","last_undegraded":"2024-09-18T08:25:38.331737+0000","last_fullsized":"2024-09-18T08:25:38.331737+0000","mapping_epoch":38,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":39,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-18T08:22:52.047267+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-18T08:22:52.047267+0000","last_clean_scrub_stamp":"2024-09-18T08:22:52.047267+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-19T17:54:53.325335+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":2969600,"data_stored":2951840,"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":37,"seq":158913789970,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32120,"kb_used_data":924,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713032,"statfs":{"total":95995035648,"available":95962144768,"internally_reserved":0,"allocated":946176,"data_stored":724699,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":31,"seq":133143986206,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31532,"kb_used_data":344,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713620,"statfs":{"total":95995035648,"available":95962746880,"internally_reserved":0,"allocated":352256,"data_stored":134331,"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":25,"seq":107374182440,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27952,"kb_used_data":924,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717200,"statfs":{"total":95995035648,"available":95966412800,"internally_reserved":0,"allocated":946176,"data_stored":724699,"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":27956,"kb_used_data":924,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717196,"statfs":{"total":95995035648,"available":95966408704,"internally_reserved":0,"allocated":946176,"data_stored":724699,"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":55834574910,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27376,"kb_used_data":344,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717776,"statfs":{"total":95995035648,"available":95967002624,"internally_reserved":0,"allocated":352256,"data_stored":134331,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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":31536,"kb_used_data":344,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713616,"statfs":{"total":95995035648,"available":95962742784,"internally_reserved":0,"allocated":352256,"data_stored":134331,"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":0,"data_stored":0,"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-18T08:26:56.014 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-18T08:26:56.015 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-18T08:26:56.015 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-18T08:26:56.015 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- ceph health --format=json 2024-09-18T08:26:57.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:56 smithi070 bash[22844]: cluster 2024-09-18T08:26:54.956063+0000 mgr.a (mgr.14152) 326 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:57.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:56 smithi070 bash[22844]: cluster 2024-09-18T08:26:54.956063+0000 mgr.a (mgr.14152) 326 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:57.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:56 smithi070 bash[22844]: audit 2024-09-18T08:26:55.412063+0000 mgr.a (mgr.14152) 327 : audit [DBG] from='client.14460 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:26:57.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:56 smithi070 bash[22844]: audit 2024-09-18T08:26:55.412063+0000 mgr.a (mgr.14152) 327 : audit [DBG] from='client.14460 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:26:57.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:56 smithi172 bash[24990]: cluster 2024-09-18T08:26:54.956063+0000 mgr.a (mgr.14152) 326 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:57.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:56 smithi172 bash[24990]: cluster 2024-09-18T08:26:54.956063+0000 mgr.a (mgr.14152) 326 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:57.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:56 smithi172 bash[24990]: audit 2024-09-18T08:26:55.412063+0000 mgr.a (mgr.14152) 327 : audit [DBG] from='client.14460 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:26:57.230 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:56 smithi172 bash[24990]: audit 2024-09-18T08:26:55.412063+0000 mgr.a (mgr.14152) 327 : audit [DBG] from='client.14460 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:26:57.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:56 smithi086 bash[24678]: cluster 2024-09-18T08:26:54.956063+0000 mgr.a (mgr.14152) 326 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:57.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:56 smithi086 bash[24678]: cluster 2024-09-18T08:26:54.956063+0000 mgr.a (mgr.14152) 326 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:57.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:56 smithi086 bash[24678]: audit 2024-09-18T08:26:55.412063+0000 mgr.a (mgr.14152) 327 : audit [DBG] from='client.14460 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:26:57.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:56 smithi086 bash[24678]: audit 2024-09-18T08:26:55.412063+0000 mgr.a (mgr.14152) 327 : audit [DBG] from='client.14460 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:26:59.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:58 smithi070 bash[22844]: cluster 2024-09-18T08:26:56.956625+0000 mgr.a (mgr.14152) 328 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:59.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:26:58 smithi070 bash[22844]: cluster 2024-09-18T08:26:56.956625+0000 mgr.a (mgr.14152) 328 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:59.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:58 smithi172 bash[24990]: cluster 2024-09-18T08:26:56.956625+0000 mgr.a (mgr.14152) 328 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:59.233 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:26:58 smithi172 bash[24990]: cluster 2024-09-18T08:26:56.956625+0000 mgr.a (mgr.14152) 328 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:59.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:58 smithi086 bash[24678]: cluster 2024-09-18T08:26:56.956625+0000 mgr.a (mgr.14152) 328 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:26:59.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:26:58 smithi086 bash[24678]: cluster 2024-09-18T08:26:56.956625+0000 mgr.a (mgr.14152) 328 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:00.750 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:27:01.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:00 smithi070 bash[22844]: cluster 2024-09-18T08:26:58.957171+0000 mgr.a (mgr.14152) 329 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:01.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:00 smithi070 bash[22844]: cluster 2024-09-18T08:26:58.957171+0000 mgr.a (mgr.14152) 329 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:01.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:27:00 smithi172 bash[24990]: cluster 2024-09-18T08:26:58.957171+0000 mgr.a (mgr.14152) 329 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:01.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:27:00 smithi172 bash[24990]: cluster 2024-09-18T08:26:58.957171+0000 mgr.a (mgr.14152) 329 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:01.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:00 smithi086 bash[24678]: cluster 2024-09-18T08:26:58.957171+0000 mgr.a (mgr.14152) 329 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:01.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:00 smithi086 bash[24678]: cluster 2024-09-18T08:26:58.957171+0000 mgr.a (mgr.14152) 329 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:02.137 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-18T08:27:02.137 INFO:teuthology.orchestra.run.smithi070.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-18T08:27:02.749 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-18T08:27:02.749 INFO:tasks.cephadm:Setup complete, yielding 2024-09-18T08:27:02.750 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-18T08:27:02.759 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi070.front.sepia.ceph.com 2024-09-18T08:27:02.760 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e7fb7b56dbae911c82c9a0310bb8cf8c37e8363e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1481c73c-7596-11ef-bceb-c7b262605968 -- bash -c 'set -ex 2024-09-18T08:27:02.760 DEBUG:teuthology.orchestra.run.smithi070:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-09-18T08:27:02.760 DEBUG:teuthology.orchestra.run.smithi070:> for host in $HOSTNAMES; do 2024-09-18T08:27:02.760 DEBUG:teuthology.orchestra.run.smithi070:> # find the hostname for "host.c" which will have no mgr 2024-09-18T08:27:02.760 DEBUG:teuthology.orchestra.run.smithi070:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-09-18T08:27:02.760 DEBUG:teuthology.orchestra.run.smithi070:> if [ "$HAS_MGRS" == "false" ]; then 2024-09-18T08:27:02.760 DEBUG:teuthology.orchestra.run.smithi070:> HOST_C="${host}" 2024-09-18T08:27:02.760 DEBUG:teuthology.orchestra.run.smithi070:> fi 2024-09-18T08:27:02.760 DEBUG:teuthology.orchestra.run.smithi070:> done 2024-09-18T08:27:02.760 DEBUG:teuthology.orchestra.run.smithi070:> # One last thing to worry about before draining the host 2024-09-18T08:27:02.760 DEBUG:teuthology.orchestra.run.smithi070:> # is that the teuthology test tends to put the explicit 2024-09-18T08:27:02.760 DEBUG:teuthology.orchestra.run.smithi070:> # hostnames in the placement for the mon service. 2024-09-18T08:27:02.761 DEBUG:teuthology.orchestra.run.smithi070:> # We want to make sure we can drain without providing 2024-09-18T08:27:02.761 DEBUG:teuthology.orchestra.run.smithi070:> # --force and there is a check for the host being removed 2024-09-18T08:27:02.761 DEBUG:teuthology.orchestra.run.smithi070:> # being listed explicitly in the placements. Therefore, 2024-09-18T08:27:02.761 DEBUG:teuthology.orchestra.run.smithi070:> # we should remove it from the mon placement. 2024-09-18T08:27:02.761 DEBUG:teuthology.orchestra.run.smithi070:> ceph orch ls mon --export > mon.yaml 2024-09-18T08:27:02.761 DEBUG:teuthology.orchestra.run.smithi070:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2024-09-18T08:27:02.761 DEBUG:teuthology.orchestra.run.smithi070:> ceph orch apply -i mon_adjusted.yaml 2024-09-18T08:27:02.761 DEBUG:teuthology.orchestra.run.smithi070:> # now drain that host 2024-09-18T08:27:02.761 DEBUG:teuthology.orchestra.run.smithi070:> ceph orch host drain $HOST_C --zap-osd-devices 2024-09-18T08:27:02.761 DEBUG:teuthology.orchestra.run.smithi070:> # wait for drain to complete 2024-09-18T08:27:02.761 DEBUG:teuthology.orchestra.run.smithi070:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-18T08:27:02.761 DEBUG:teuthology.orchestra.run.smithi070:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-09-18T08:27:02.761 DEBUG:teuthology.orchestra.run.smithi070:> sleep 15 2024-09-18T08:27:02.761 DEBUG:teuthology.orchestra.run.smithi070:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-18T08:27:02.761 DEBUG:teuthology.orchestra.run.smithi070:> done 2024-09-18T08:27:02.762 DEBUG:teuthology.orchestra.run.smithi070:> # we want to check the ability to remove the host from 2024-09-18T08:27:02.762 DEBUG:teuthology.orchestra.run.smithi070:> # the CRUSH map, so we should first verify the host is in 2024-09-18T08:27:02.762 DEBUG:teuthology.orchestra.run.smithi070:> # the CRUSH map. 2024-09-18T08:27:02.762 DEBUG:teuthology.orchestra.run.smithi070:> ceph osd getcrushmap -o compiled-crushmap 2024-09-18T08:27:02.762 DEBUG:teuthology.orchestra.run.smithi070:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-18T08:27:02.762 DEBUG:teuthology.orchestra.run.smithi070:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-18T08:27:02.762 DEBUG:teuthology.orchestra.run.smithi070:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-18T08:27:02.762 DEBUG:teuthology.orchestra.run.smithi070:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-09-18T08:27:02.762 DEBUG:teuthology.orchestra.run.smithi070:> exit 1 2024-09-18T08:27:02.762 DEBUG:teuthology.orchestra.run.smithi070:> fi 2024-09-18T08:27:02.762 DEBUG:teuthology.orchestra.run.smithi070:> # If the drain was successful, we should be able to remove the 2024-09-18T08:27:02.762 DEBUG:teuthology.orchestra.run.smithi070:> # host without force with no issues. If there are still daemons 2024-09-18T08:27:02.762 DEBUG:teuthology.orchestra.run.smithi070:> # we will get a response telling us to drain the host and a 2024-09-18T08:27:02.762 DEBUG:teuthology.orchestra.run.smithi070:> # non-zero return code 2024-09-18T08:27:02.762 DEBUG:teuthology.orchestra.run.smithi070:> ceph orch host rm $HOST_C --rm-crush-entry 2024-09-18T08:27:02.762 DEBUG:teuthology.orchestra.run.smithi070:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-09-18T08:27:02.763 DEBUG:teuthology.orchestra.run.smithi070:> sleep 30 2024-09-18T08:27:02.763 DEBUG:teuthology.orchestra.run.smithi070:> ceph osd getcrushmap -o compiled-crushmap 2024-09-18T08:27:02.763 DEBUG:teuthology.orchestra.run.smithi070:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-18T08:27:02.763 DEBUG:teuthology.orchestra.run.smithi070:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-18T08:27:02.763 DEBUG:teuthology.orchestra.run.smithi070:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-18T08:27:02.763 DEBUG:teuthology.orchestra.run.smithi070:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-09-18T08:27:02.763 DEBUG:teuthology.orchestra.run.smithi070:> exit 1 2024-09-18T08:27:02.763 DEBUG:teuthology.orchestra.run.smithi070:> fi 2024-09-18T08:27:02.763 DEBUG:teuthology.orchestra.run.smithi070:> ' 2024-09-18T08:27:03.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:02 smithi070 bash[22844]: cluster 2024-09-18T08:27:00.957723+0000 mgr.a (mgr.14152) 330 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:03.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:02 smithi070 bash[22844]: cluster 2024-09-18T08:27:00.957723+0000 mgr.a (mgr.14152) 330 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:03.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:02 smithi070 bash[22844]: audit 2024-09-18T08:27:02.144726+0000 mon.a (mon.0) 606 : audit [DBG] from='client.? 172.21.15.70:0/803826340' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-18T08:27:03.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:02 smithi070 bash[22844]: audit 2024-09-18T08:27:02.144726+0000 mon.a (mon.0) 606 : audit [DBG] from='client.? 172.21.15.70:0/803826340' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-18T08:27:03.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:27:02 smithi172 bash[24990]: cluster 2024-09-18T08:27:00.957723+0000 mgr.a (mgr.14152) 330 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:03.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:27:02 smithi172 bash[24990]: cluster 2024-09-18T08:27:00.957723+0000 mgr.a (mgr.14152) 330 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:03.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:27:02 smithi172 bash[24990]: audit 2024-09-18T08:27:02.144726+0000 mon.a (mon.0) 606 : audit [DBG] from='client.? 172.21.15.70:0/803826340' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-18T08:27:03.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:27:02 smithi172 bash[24990]: audit 2024-09-18T08:27:02.144726+0000 mon.a (mon.0) 606 : audit [DBG] from='client.? 172.21.15.70:0/803826340' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-18T08:27:03.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:02 smithi086 bash[24678]: cluster 2024-09-18T08:27:00.957723+0000 mgr.a (mgr.14152) 330 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:03.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:02 smithi086 bash[24678]: cluster 2024-09-18T08:27:00.957723+0000 mgr.a (mgr.14152) 330 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:03.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:02 smithi086 bash[24678]: audit 2024-09-18T08:27:02.144726+0000 mon.a (mon.0) 606 : audit [DBG] from='client.? 172.21.15.70:0/803826340' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-18T08:27:03.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:02 smithi086 bash[24678]: audit 2024-09-18T08:27:02.144726+0000 mon.a (mon.0) 606 : audit [DBG] from='client.? 172.21.15.70:0/803826340' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-18T08:27:05.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:04 smithi070 bash[22844]: cluster 2024-09-18T08:27:02.958242+0000 mgr.a (mgr.14152) 331 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:05.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:04 smithi070 bash[22844]: cluster 2024-09-18T08:27:02.958242+0000 mgr.a (mgr.14152) 331 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:05.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:27:04 smithi172 bash[24990]: cluster 2024-09-18T08:27:02.958242+0000 mgr.a (mgr.14152) 331 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:05.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:27:04 smithi172 bash[24990]: cluster 2024-09-18T08:27:02.958242+0000 mgr.a (mgr.14152) 331 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:05.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:04 smithi086 bash[24678]: cluster 2024-09-18T08:27:02.958242+0000 mgr.a (mgr.14152) 331 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:05.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:04 smithi086 bash[24678]: cluster 2024-09-18T08:27:02.958242+0000 mgr.a (mgr.14152) 331 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:07.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:06 smithi070 bash[22844]: cluster 2024-09-18T08:27:04.958797+0000 mgr.a (mgr.14152) 332 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:07.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:06 smithi070 bash[22844]: cluster 2024-09-18T08:27:04.958797+0000 mgr.a (mgr.14152) 332 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:07.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:27:06 smithi172 bash[24990]: cluster 2024-09-18T08:27:04.958797+0000 mgr.a (mgr.14152) 332 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:07.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:27:06 smithi172 bash[24990]: cluster 2024-09-18T08:27:04.958797+0000 mgr.a (mgr.14152) 332 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:07.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:06 smithi086 bash[24678]: cluster 2024-09-18T08:27:04.958797+0000 mgr.a (mgr.14152) 332 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:07.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:06 smithi086 bash[24678]: cluster 2024-09-18T08:27:04.958797+0000 mgr.a (mgr.14152) 332 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:07.500 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/mon.a/config 2024-09-18T08:27:08.511 INFO:teuthology.orchestra.run.smithi070.stderr:++ ceph orch host ls --format json 2024-09-18T08:27:08.512 INFO:teuthology.orchestra.run.smithi070.stderr:++ jq -r '.[] | .hostname' 2024-09-18T08:27:08.811 INFO:teuthology.orchestra.run.smithi070.stderr:+ HOSTNAMES='smithi070 2024-09-18T08:27:08.812 INFO:teuthology.orchestra.run.smithi070.stderr:smithi086 2024-09-18T08:27:08.812 INFO:teuthology.orchestra.run.smithi070.stderr:smithi172' 2024-09-18T08:27:08.812 INFO:teuthology.orchestra.run.smithi070.stderr:+ for host in $HOSTNAMES 2024-09-18T08:27:08.812 INFO:teuthology.orchestra.run.smithi070.stderr:++ ceph orch ps --hostname smithi070 --format json 2024-09-18T08:27:08.812 INFO:teuthology.orchestra.run.smithi070.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-18T08:27:09.127 INFO:teuthology.orchestra.run.smithi070.stderr:+ HAS_MGRS=true 2024-09-18T08:27:09.128 INFO:teuthology.orchestra.run.smithi070.stderr:+ '[' true == false ']' 2024-09-18T08:27:09.128 INFO:teuthology.orchestra.run.smithi070.stderr:+ for host in $HOSTNAMES 2024-09-18T08:27:09.128 INFO:teuthology.orchestra.run.smithi070.stderr:++ ceph orch ps --hostname smithi086 --format json 2024-09-18T08:27:09.128 INFO:teuthology.orchestra.run.smithi070.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-18T08:27:09.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:08 smithi070 bash[22844]: cluster 2024-09-18T08:27:06.959357+0000 mgr.a (mgr.14152) 333 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:09.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:08 smithi070 bash[22844]: cluster 2024-09-18T08:27:06.959357+0000 mgr.a (mgr.14152) 333 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:09.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:27:08 smithi172 bash[24990]: cluster 2024-09-18T08:27:06.959357+0000 mgr.a (mgr.14152) 333 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:09.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:27:08 smithi172 bash[24990]: cluster 2024-09-18T08:27:06.959357+0000 mgr.a (mgr.14152) 333 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:09.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:08 smithi086 bash[24678]: cluster 2024-09-18T08:27:06.959357+0000 mgr.a (mgr.14152) 333 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:09.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:08 smithi086 bash[24678]: cluster 2024-09-18T08:27:06.959357+0000 mgr.a (mgr.14152) 333 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:09.426 INFO:teuthology.orchestra.run.smithi070.stderr:+ HAS_MGRS=true 2024-09-18T08:27:09.426 INFO:teuthology.orchestra.run.smithi070.stderr:+ '[' true == false ']' 2024-09-18T08:27:09.426 INFO:teuthology.orchestra.run.smithi070.stderr:+ for host in $HOSTNAMES 2024-09-18T08:27:09.426 INFO:teuthology.orchestra.run.smithi070.stderr:++ ceph orch ps --hostname smithi172 --format json 2024-09-18T08:27:09.426 INFO:teuthology.orchestra.run.smithi070.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-18T08:27:09.725 INFO:teuthology.orchestra.run.smithi070.stderr:+ HAS_MGRS=false 2024-09-18T08:27:09.725 INFO:teuthology.orchestra.run.smithi070.stderr:+ '[' false == false ']' 2024-09-18T08:27:09.725 INFO:teuthology.orchestra.run.smithi070.stderr:+ HOST_C=smithi172 2024-09-18T08:27:09.725 INFO:teuthology.orchestra.run.smithi070.stderr:+ ceph orch ls mon --export 2024-09-18T08:27:10.043 INFO:teuthology.orchestra.run.smithi070.stderr:+ sed /smithi172/d mon.yaml 2024-09-18T08:27:10.044 INFO:teuthology.orchestra.run.smithi070.stderr:+ ceph orch apply -i mon_adjusted.yaml 2024-09-18T08:27:10.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:09 smithi070 bash[22844]: audit 2024-09-18T08:27:08.806671+0000 mgr.a (mgr.14152) 334 : audit [DBG] from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:27:10.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:09 smithi070 bash[22844]: audit 2024-09-18T08:27:08.806671+0000 mgr.a (mgr.14152) 334 : audit [DBG] from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:27:10.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:27:09 smithi172 bash[24990]: audit 2024-09-18T08:27:08.806671+0000 mgr.a (mgr.14152) 334 : audit [DBG] from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:27:10.229 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:27:09 smithi172 bash[24990]: audit 2024-09-18T08:27:08.806671+0000 mgr.a (mgr.14152) 334 : audit [DBG] from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:27:10.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:09 smithi086 bash[24678]: audit 2024-09-18T08:27:08.806671+0000 mgr.a (mgr.14152) 334 : audit [DBG] from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:27:10.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:09 smithi086 bash[24678]: audit 2024-09-18T08:27:08.806671+0000 mgr.a (mgr.14152) 334 : audit [DBG] from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-18T08:27:10.340 INFO:teuthology.orchestra.run.smithi070.stdout:Scheduled mon update... 2024-09-18T08:27:10.353 INFO:teuthology.orchestra.run.smithi070.stderr:+ ceph orch host drain smithi172 --zap-osd-devices 2024-09-18T08:27:11.479 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:27:11 smithi172 systemd[1]: ceph-1481c73c-7596-11ef-bceb-c7b262605968@mon.c.service: Deactivated successfully. 2024-09-18T08:27:12.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: audit 2024-09-18T08:27:10.029274+0000 mgr.a (mgr.14152) 339 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:12.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: audit 2024-09-18T08:27:10.029274+0000 mgr.a (mgr.14152) 339 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:12.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: audit 2024-09-18T08:27:10.339426+0000 mgr.a (mgr.14152) 340 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:12.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: audit 2024-09-18T08:27:10.339426+0000 mgr.a (mgr.14152) 340 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:12.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cephadm 2024-09-18T08:27:10.341696+0000 mgr.a (mgr.14152) 341 : cephadm [INF] Saving service mon spec with placement smithi070:172.21.15.70=a;smithi086:172.21.15.86=b;count:3 2024-09-18T08:27:12.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cephadm 2024-09-18T08:27:10.341696+0000 mgr.a (mgr.14152) 341 : cephadm [INF] Saving service mon spec with placement smithi070:172.21.15.70=a;smithi086:172.21.15.86=b;count:3 2024-09-18T08:27:12.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cephadm 2024-09-18T08:27:10.361498+0000 mgr.a (mgr.14152) 342 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-18T08:27:12.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cephadm 2024-09-18T08:27:10.361498+0000 mgr.a (mgr.14152) 342 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-18T08:27:12.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cephadm 2024-09-18T08:27:10.361568+0000 mgr.a (mgr.14152) 343 : cephadm [INF] Removing monitor c from monmap... 2024-09-18T08:27:12.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cephadm 2024-09-18T08:27:10.361568+0000 mgr.a (mgr.14152) 343 : cephadm [INF] Removing monitor c from monmap... 2024-09-18T08:27:12.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: audit 2024-09-18T08:27:10.363064+0000 mon.a (mon.0) 615 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-09-18T08:27:12.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: audit 2024-09-18T08:27:10.363064+0000 mon.a (mon.0) 615 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-09-18T08:27:12.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: audit 2024-09-18T08:27:10.366324+0000 mon.a (mon.0) 616 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:27:12.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: audit 2024-09-18T08:27:10.366324+0000 mon.a (mon.0) 616 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:27:12.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: audit 2024-09-18T08:27:10.367513+0000 mon.a (mon.0) 617 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:27:12.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: audit 2024-09-18T08:27:10.367513+0000 mon.a (mon.0) 617 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:27:12.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:10.372267+0000 mon.b (mon.1) 17 : cluster [INF] mon.b calling monitor election 2024-09-18T08:27:12.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:10.372267+0000 mon.b (mon.1) 17 : cluster [INF] mon.b calling monitor election 2024-09-18T08:27:12.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:10.960270+0000 mgr.a (mgr.14152) 344 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:12.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:10.960270+0000 mgr.a (mgr.14152) 344 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:12.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.366896+0000 mon.a (mon.0) 618 : cluster [INF] mon.a calling monitor election 2024-09-18T08:27:12.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.366896+0000 mon.a (mon.0) 618 : cluster [INF] mon.a calling monitor election 2024-09-18T08:27:12.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.389107+0000 mon.a (mon.0) 619 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-18T08:27:12.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.389107+0000 mon.a (mon.0) 619 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-18T08:27:12.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.395828+0000 mon.a (mon.0) 620 : cluster [DBG] monmap epoch 4 2024-09-18T08:27:12.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.395828+0000 mon.a (mon.0) 620 : cluster [DBG] monmap epoch 4 2024-09-18T08:27:12.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.395860+0000 mon.a (mon.0) 621 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:27:12.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.395860+0000 mon.a (mon.0) 621 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:27:12.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.395879+0000 mon.a (mon.0) 622 : cluster [DBG] last_changed 2024-09-18T08:27:10.361776+0000 2024-09-18T08:27:12.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.395879+0000 mon.a (mon.0) 622 : cluster [DBG] last_changed 2024-09-18T08:27:10.361776+0000 2024-09-18T08:27:12.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.395899+0000 mon.a (mon.0) 623 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:27:12.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.395899+0000 mon.a (mon.0) 623 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:27:12.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.395925+0000 mon.a (mon.0) 624 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:27:12.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.395925+0000 mon.a (mon.0) 624 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:27:12.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.395950+0000 mon.a (mon.0) 625 : cluster [DBG] election_strategy: 1 2024-09-18T08:27:12.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.395950+0000 mon.a (mon.0) 625 : cluster [DBG] election_strategy: 1 2024-09-18T08:27:12.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.395973+0000 mon.a (mon.0) 626 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:27:12.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.395973+0000 mon.a (mon.0) 626 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:27:12.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.395997+0000 mon.a (mon.0) 627 : cluster [DBG] 1: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-18T08:27:12.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.395997+0000 mon.a (mon.0) 627 : cluster [DBG] 1: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-18T08:27:12.729 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.397038+0000 mon.a (mon.0) 628 : cluster [DBG] fsmap 2024-09-18T08:27:12.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.397038+0000 mon.a (mon.0) 628 : cluster [DBG] fsmap 2024-09-18T08:27:12.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.397089+0000 mon.a (mon.0) 629 : cluster [DBG] osdmap e39: 6 total, 6 up, 6 in 2024-09-18T08:27:12.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.397089+0000 mon.a (mon.0) 629 : cluster [DBG] osdmap e39: 6 total, 6 up, 6 in 2024-09-18T08:27:12.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.397643+0000 mon.a (mon.0) 630 : cluster [DBG] mgrmap e15: a(active, since 8m), standbys: b 2024-09-18T08:27:12.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.397643+0000 mon.a (mon.0) 630 : cluster [DBG] mgrmap e15: a(active, since 8m), standbys: b 2024-09-18T08:27:12.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.397885+0000 mon.a (mon.0) 631 : cluster [INF] overall HEALTH_OK 2024-09-18T08:27:12.730 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:12 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.397885+0000 mon.a (mon.0) 631 : cluster [INF] overall HEALTH_OK 2024-09-18T08:27:12.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: audit 2024-09-18T08:27:10.029274+0000 mgr.a (mgr.14152) 339 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:12.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: audit 2024-09-18T08:27:10.029274+0000 mgr.a (mgr.14152) 339 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:12.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: audit 2024-09-18T08:27:10.339426+0000 mgr.a (mgr.14152) 340 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:12.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: audit 2024-09-18T08:27:10.339426+0000 mgr.a (mgr.14152) 340 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:12.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cephadm 2024-09-18T08:27:10.341696+0000 mgr.a (mgr.14152) 341 : cephadm [INF] Saving service mon spec with placement smithi070:172.21.15.70=a;smithi086:172.21.15.86=b;count:3 2024-09-18T08:27:12.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cephadm 2024-09-18T08:27:10.341696+0000 mgr.a (mgr.14152) 341 : cephadm [INF] Saving service mon spec with placement smithi070:172.21.15.70=a;smithi086:172.21.15.86=b;count:3 2024-09-18T08:27:12.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cephadm 2024-09-18T08:27:10.361498+0000 mgr.a (mgr.14152) 342 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-18T08:27:12.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cephadm 2024-09-18T08:27:10.361498+0000 mgr.a (mgr.14152) 342 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-18T08:27:12.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cephadm 2024-09-18T08:27:10.361568+0000 mgr.a (mgr.14152) 343 : cephadm [INF] Removing monitor c from monmap... 2024-09-18T08:27:12.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cephadm 2024-09-18T08:27:10.361568+0000 mgr.a (mgr.14152) 343 : cephadm [INF] Removing monitor c from monmap... 2024-09-18T08:27:12.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: audit 2024-09-18T08:27:10.363064+0000 mon.a (mon.0) 615 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-09-18T08:27:12.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: audit 2024-09-18T08:27:10.363064+0000 mon.a (mon.0) 615 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-09-18T08:27:12.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: audit 2024-09-18T08:27:10.366324+0000 mon.a (mon.0) 616 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:27:12.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: audit 2024-09-18T08:27:10.366324+0000 mon.a (mon.0) 616 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-18T08:27:12.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: audit 2024-09-18T08:27:10.367513+0000 mon.a (mon.0) 617 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:27:12.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: audit 2024-09-18T08:27:10.367513+0000 mon.a (mon.0) 617 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-18T08:27:12.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:10.372267+0000 mon.b (mon.1) 17 : cluster [INF] mon.b calling monitor election 2024-09-18T08:27:12.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:10.372267+0000 mon.b (mon.1) 17 : cluster [INF] mon.b calling monitor election 2024-09-18T08:27:12.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:10.960270+0000 mgr.a (mgr.14152) 344 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:12.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:10.960270+0000 mgr.a (mgr.14152) 344 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:12.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.366896+0000 mon.a (mon.0) 618 : cluster [INF] mon.a calling monitor election 2024-09-18T08:27:12.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.366896+0000 mon.a (mon.0) 618 : cluster [INF] mon.a calling monitor election 2024-09-18T08:27:12.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.389107+0000 mon.a (mon.0) 619 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-18T08:27:12.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.389107+0000 mon.a (mon.0) 619 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-18T08:27:12.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.395828+0000 mon.a (mon.0) 620 : cluster [DBG] monmap epoch 4 2024-09-18T08:27:12.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.395828+0000 mon.a (mon.0) 620 : cluster [DBG] monmap epoch 4 2024-09-18T08:27:12.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.395860+0000 mon.a (mon.0) 621 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:27:12.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.395860+0000 mon.a (mon.0) 621 : cluster [DBG] fsid 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:27:12.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.395879+0000 mon.a (mon.0) 622 : cluster [DBG] last_changed 2024-09-18T08:27:10.361776+0000 2024-09-18T08:27:12.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.395879+0000 mon.a (mon.0) 622 : cluster [DBG] last_changed 2024-09-18T08:27:10.361776+0000 2024-09-18T08:27:12.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.395899+0000 mon.a (mon.0) 623 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:27:12.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.395899+0000 mon.a (mon.0) 623 : cluster [DBG] created 2024-09-18T08:17:16.299901+0000 2024-09-18T08:27:12.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.395925+0000 mon.a (mon.0) 624 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:27:12.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.395925+0000 mon.a (mon.0) 624 : cluster [DBG] min_mon_release 19 (squid) 2024-09-18T08:27:12.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.395950+0000 mon.a (mon.0) 625 : cluster [DBG] election_strategy: 1 2024-09-18T08:27:12.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.395950+0000 mon.a (mon.0) 625 : cluster [DBG] election_strategy: 1 2024-09-18T08:27:12.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.395973+0000 mon.a (mon.0) 626 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:27:12.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.395973+0000 mon.a (mon.0) 626 : cluster [DBG] 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-18T08:27:12.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.395997+0000 mon.a (mon.0) 627 : cluster [DBG] 1: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-18T08:27:12.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.395997+0000 mon.a (mon.0) 627 : cluster [DBG] 1: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-18T08:27:12.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.397038+0000 mon.a (mon.0) 628 : cluster [DBG] fsmap 2024-09-18T08:27:12.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.397038+0000 mon.a (mon.0) 628 : cluster [DBG] fsmap 2024-09-18T08:27:12.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.397089+0000 mon.a (mon.0) 629 : cluster [DBG] osdmap e39: 6 total, 6 up, 6 in 2024-09-18T08:27:12.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.397089+0000 mon.a (mon.0) 629 : cluster [DBG] osdmap e39: 6 total, 6 up, 6 in 2024-09-18T08:27:12.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.397643+0000 mon.a (mon.0) 630 : cluster [DBG] mgrmap e15: a(active, since 8m), standbys: b 2024-09-18T08:27:12.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.397643+0000 mon.a (mon.0) 630 : cluster [DBG] mgrmap e15: a(active, since 8m), standbys: b 2024-09-18T08:27:12.842 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.397885+0000 mon.a (mon.0) 631 : cluster [INF] overall HEALTH_OK 2024-09-18T08:27:12.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:12 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.397885+0000 mon.a (mon.0) 631 : cluster [INF] overall HEALTH_OK 2024-09-18T08:27:13.657 INFO:teuthology.orchestra.run.smithi070.stdout:Scheduled to remove the following daemons from host 'smithi172' 2024-09-18T08:27:13.657 INFO:teuthology.orchestra.run.smithi070.stdout:type id 2024-09-18T08:27:13.657 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------- --------------- 2024-09-18T08:27:13.658 INFO:teuthology.orchestra.run.smithi070.stdout:mon c 2024-09-18T08:27:13.658 INFO:teuthology.orchestra.run.smithi070.stdout:osd 4 2024-09-18T08:27:13.658 INFO:teuthology.orchestra.run.smithi070.stdout:osd 5 2024-09-18T08:27:13.669 INFO:teuthology.orchestra.run.smithi070.stderr:++ ceph orch ps --hostname smithi172 2024-09-18T08:27:13.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:13 smithi070 bash[22844]: cephadm 2024-09-18T08:27:12.399909+0000 mgr.a (mgr.14152) 345 : cephadm [INF] Removing daemon mon.c from smithi172 -- ports [] 2024-09-18T08:27:13.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:13 smithi070 bash[22844]: cephadm 2024-09-18T08:27:12.399909+0000 mgr.a (mgr.14152) 345 : cephadm [INF] Removing daemon mon.c from smithi172 -- ports [] 2024-09-18T08:27:13.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:13 smithi086 bash[24678]: cephadm 2024-09-18T08:27:12.399909+0000 mgr.a (mgr.14152) 345 : cephadm [INF] Removing daemon mon.c from smithi172 -- ports [] 2024-09-18T08:27:13.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:13 smithi086 bash[24678]: cephadm 2024-09-18T08:27:12.399909+0000 mgr.a (mgr.14152) 345 : cephadm [INF] Removing daemon mon.c from smithi172 -- ports [] 2024-09-18T08:27:13.985 INFO:teuthology.orchestra.run.smithi070.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-18T08:27:13.985 INFO:teuthology.orchestra.run.smithi070.stderr:mon.c smithi172 running (7m) 104s ago 7m 37.8M 2048M 19.3.0-4983-ge7fb7b56 b22e1e37ddf1 278bc3ccf8ea 2024-09-18T08:27:13.985 INFO:teuthology.orchestra.run.smithi070.stderr:osd.4 smithi172 running (2m) 104s ago 2m 40.9M 10.4G 19.3.0-4983-ge7fb7b56 b22e1e37ddf1 96c4b5e60089 2024-09-18T08:27:13.985 INFO:teuthology.orchestra.run.smithi070.stderr:osd.5 smithi172 running (106s) 104s ago 110s - 10.4G 19.3.0-4983-ge7fb7b56 b22e1e37ddf1 86914a212599 ' 2024-09-18T08:27:13.986 INFO:teuthology.orchestra.run.smithi070.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-18T08:27:13.986 INFO:teuthology.orchestra.run.smithi070.stderr:mon.c smithi172 running (7m) 104s ago 7m 37.8M 2048M 19.3.0-4983-ge7fb7b56 b22e1e37ddf1 278bc3ccf8ea 2024-09-18T08:27:13.986 INFO:teuthology.orchestra.run.smithi070.stderr:osd.4 smithi172 running (2m) 104s ago 2m 40.9M 10.4G 19.3.0-4983-ge7fb7b56 b22e1e37ddf1 96c4b5e60089 2024-09-18T08:27:13.986 INFO:teuthology.orchestra.run.smithi070.stderr:osd.5 smithi172 running (106s) 104s ago 110s - 10.4G 19.3.0-4983-ge7fb7b56 b22e1e37ddf1 86914a212599 ' '!=' 'No daemons reported' ']' 2024-09-18T08:27:13.986 INFO:teuthology.orchestra.run.smithi070.stderr:+ sleep 15 2024-09-18T08:27:14.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:14 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.960825+0000 mgr.a (mgr.14152) 346 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:14.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:14 smithi070 bash[22844]: cluster 2024-09-18T08:27:12.960825+0000 mgr.a (mgr.14152) 346 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:14.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:14 smithi070 bash[22844]: audit 2024-09-18T08:27:13.650676+0000 mgr.a (mgr.14152) 347 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi172", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:14.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:14 smithi070 bash[22844]: audit 2024-09-18T08:27:13.650676+0000 mgr.a (mgr.14152) 347 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi172", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:14.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:14 smithi070 bash[22844]: audit 2024-09-18T08:27:13.655705+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:14.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:14 smithi070 bash[22844]: audit 2024-09-18T08:27:13.655705+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:14.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:14 smithi070 bash[22844]: cephadm 2024-09-18T08:27:13.656309+0000 mgr.a (mgr.14152) 348 : cephadm [INF] Added label _no_schedule to host smithi172 2024-09-18T08:27:14.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:14 smithi070 bash[22844]: cephadm 2024-09-18T08:27:13.656309+0000 mgr.a (mgr.14152) 348 : cephadm [INF] Added label _no_schedule to host smithi172 2024-09-18T08:27:14.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:14 smithi070 bash[22844]: audit 2024-09-18T08:27:13.660988+0000 mon.a (mon.0) 633 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:14.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:14 smithi070 bash[22844]: audit 2024-09-18T08:27:13.660988+0000 mon.a (mon.0) 633 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:14.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:14 smithi070 bash[22844]: cephadm 2024-09-18T08:27:13.661646+0000 mgr.a (mgr.14152) 349 : cephadm [INF] Added label _no_conf_keyring to host smithi172 2024-09-18T08:27:14.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:14 smithi070 bash[22844]: cephadm 2024-09-18T08:27:13.661646+0000 mgr.a (mgr.14152) 349 : cephadm [INF] Added label _no_conf_keyring to host smithi172 2024-09-18T08:27:14.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:14 smithi070 bash[22844]: audit 2024-09-18T08:27:13.662687+0000 mon.a (mon.0) 634 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-18T08:27:14.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:14 smithi070 bash[22844]: audit 2024-09-18T08:27:13.662687+0000 mon.a (mon.0) 634 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-18T08:27:14.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:14 smithi070 bash[22844]: cephadm 2024-09-18T08:27:13.663622+0000 mgr.a (mgr.14152) 350 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-18T08:27:14.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:14 smithi070 bash[22844]: cephadm 2024-09-18T08:27:13.663622+0000 mgr.a (mgr.14152) 350 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-18T08:27:14.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:14 smithi070 bash[22844]: audit 2024-09-18T08:27:13.664432+0000 mon.a (mon.0) 635 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-18T08:27:14.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:14 smithi070 bash[22844]: audit 2024-09-18T08:27:13.664432+0000 mon.a (mon.0) 635 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-18T08:27:14.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:14 smithi070 bash[22844]: cephadm 2024-09-18T08:27:13.665437+0000 mgr.a (mgr.14152) 351 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-18T08:27:14.977 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:14 smithi070 bash[22844]: cephadm 2024-09-18T08:27:13.665437+0000 mgr.a (mgr.14152) 351 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-18T08:27:15.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:14 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.960825+0000 mgr.a (mgr.14152) 346 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:15.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:14 smithi086 bash[24678]: cluster 2024-09-18T08:27:12.960825+0000 mgr.a (mgr.14152) 346 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:15.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:14 smithi086 bash[24678]: audit 2024-09-18T08:27:13.650676+0000 mgr.a (mgr.14152) 347 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi172", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:15.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:14 smithi086 bash[24678]: audit 2024-09-18T08:27:13.650676+0000 mgr.a (mgr.14152) 347 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi172", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:15.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:14 smithi086 bash[24678]: audit 2024-09-18T08:27:13.655705+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:15.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:14 smithi086 bash[24678]: audit 2024-09-18T08:27:13.655705+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:15.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:14 smithi086 bash[24678]: cephadm 2024-09-18T08:27:13.656309+0000 mgr.a (mgr.14152) 348 : cephadm [INF] Added label _no_schedule to host smithi172 2024-09-18T08:27:15.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:14 smithi086 bash[24678]: cephadm 2024-09-18T08:27:13.656309+0000 mgr.a (mgr.14152) 348 : cephadm [INF] Added label _no_schedule to host smithi172 2024-09-18T08:27:15.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:14 smithi086 bash[24678]: audit 2024-09-18T08:27:13.660988+0000 mon.a (mon.0) 633 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:15.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:14 smithi086 bash[24678]: audit 2024-09-18T08:27:13.660988+0000 mon.a (mon.0) 633 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:15.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:14 smithi086 bash[24678]: cephadm 2024-09-18T08:27:13.661646+0000 mgr.a (mgr.14152) 349 : cephadm [INF] Added label _no_conf_keyring to host smithi172 2024-09-18T08:27:15.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:14 smithi086 bash[24678]: cephadm 2024-09-18T08:27:13.661646+0000 mgr.a (mgr.14152) 349 : cephadm [INF] Added label _no_conf_keyring to host smithi172 2024-09-18T08:27:15.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:14 smithi086 bash[24678]: audit 2024-09-18T08:27:13.662687+0000 mon.a (mon.0) 634 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-18T08:27:15.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:14 smithi086 bash[24678]: audit 2024-09-18T08:27:13.662687+0000 mon.a (mon.0) 634 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-18T08:27:15.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:14 smithi086 bash[24678]: cephadm 2024-09-18T08:27:13.663622+0000 mgr.a (mgr.14152) 350 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-18T08:27:15.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:14 smithi086 bash[24678]: cephadm 2024-09-18T08:27:13.663622+0000 mgr.a (mgr.14152) 350 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-18T08:27:15.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:14 smithi086 bash[24678]: audit 2024-09-18T08:27:13.664432+0000 mon.a (mon.0) 635 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-18T08:27:15.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:14 smithi086 bash[24678]: audit 2024-09-18T08:27:13.664432+0000 mon.a (mon.0) 635 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-18T08:27:15.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:14 smithi086 bash[24678]: cephadm 2024-09-18T08:27:13.665437+0000 mgr.a (mgr.14152) 351 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-18T08:27:15.090 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:14 smithi086 bash[24678]: cephadm 2024-09-18T08:27:13.665437+0000 mgr.a (mgr.14152) 351 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-18T08:27:15.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:15 smithi070 bash[22844]: audit 2024-09-18T08:27:13.970205+0000 mgr.a (mgr.14152) 352 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi172", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:15.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:15 smithi070 bash[22844]: audit 2024-09-18T08:27:13.970205+0000 mgr.a (mgr.14152) 352 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi172", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:16.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:15 smithi086 bash[24678]: audit 2024-09-18T08:27:13.970205+0000 mgr.a (mgr.14152) 352 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi172", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:16.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:15 smithi086 bash[24678]: audit 2024-09-18T08:27:13.970205+0000 mgr.a (mgr.14152) 352 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi172", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:16.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:16 smithi070 bash[22844]: cluster 2024-09-18T08:27:14.961390+0000 mgr.a (mgr.14152) 353 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:16.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:16 smithi070 bash[22844]: cluster 2024-09-18T08:27:14.961390+0000 mgr.a (mgr.14152) 353 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:17.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:16 smithi086 bash[24678]: cluster 2024-09-18T08:27:14.961390+0000 mgr.a (mgr.14152) 353 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:17.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:16 smithi086 bash[24678]: cluster 2024-09-18T08:27:14.961390+0000 mgr.a (mgr.14152) 353 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:17.729 INFO:journalctl@ceph.mon.c.smithi172.stdout:Sep 18 08:27:17 smithi172 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:27:17.729 INFO:journalctl@ceph.osd.4.smithi172.stdout:Sep 18 08:27:17 smithi172 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:27:17.730 INFO:journalctl@ceph.osd.5.smithi172.stdout:Sep 18 08:27:17 smithi172 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:27:18.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:18 smithi070 bash[22844]: cluster 2024-09-18T08:27:16.961930+0000 mgr.a (mgr.14152) 354 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:18.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:18 smithi070 bash[22844]: cluster 2024-09-18T08:27:16.961930+0000 mgr.a (mgr.14152) 354 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:18.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:18 smithi070 bash[22844]: audit 2024-09-18T08:27:17.721005+0000 mon.a (mon.0) 636 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:18.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:18 smithi070 bash[22844]: audit 2024-09-18T08:27:17.721005+0000 mon.a (mon.0) 636 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:18.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:18 smithi070 bash[22844]: audit 2024-09-18T08:27:17.728400+0000 mon.a (mon.0) 637 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:18.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:18 smithi070 bash[22844]: audit 2024-09-18T08:27:17.728400+0000 mon.a (mon.0) 637 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:18.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:18 smithi070 bash[22844]: audit 2024-09-18T08:27:17.776533+0000 mon.a (mon.0) 638 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:27:18.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:18 smithi070 bash[22844]: audit 2024-09-18T08:27:17.776533+0000 mon.a (mon.0) 638 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:27:19.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:18 smithi086 bash[24678]: cluster 2024-09-18T08:27:16.961930+0000 mgr.a (mgr.14152) 354 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:19.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:18 smithi086 bash[24678]: cluster 2024-09-18T08:27:16.961930+0000 mgr.a (mgr.14152) 354 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:19.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:18 smithi086 bash[24678]: audit 2024-09-18T08:27:17.721005+0000 mon.a (mon.0) 636 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:19.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:18 smithi086 bash[24678]: audit 2024-09-18T08:27:17.721005+0000 mon.a (mon.0) 636 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:19.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:18 smithi086 bash[24678]: audit 2024-09-18T08:27:17.728400+0000 mon.a (mon.0) 637 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:19.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:18 smithi086 bash[24678]: audit 2024-09-18T08:27:17.728400+0000 mon.a (mon.0) 637 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:19.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:18 smithi086 bash[24678]: audit 2024-09-18T08:27:17.776533+0000 mon.a (mon.0) 638 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:27:19.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:18 smithi086 bash[24678]: audit 2024-09-18T08:27:17.776533+0000 mon.a (mon.0) 638 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:27:20.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:20 smithi070 bash[22844]: cluster 2024-09-18T08:27:18.962431+0000 mgr.a (mgr.14152) 355 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:20.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:20 smithi070 bash[22844]: cluster 2024-09-18T08:27:18.962431+0000 mgr.a (mgr.14152) 355 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:21.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:20 smithi086 bash[24678]: cluster 2024-09-18T08:27:18.962431+0000 mgr.a (mgr.14152) 355 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:21.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:20 smithi086 bash[24678]: cluster 2024-09-18T08:27:18.962431+0000 mgr.a (mgr.14152) 355 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:22.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:22 smithi070 bash[22844]: cluster 2024-09-18T08:27:20.962983+0000 mgr.a (mgr.14152) 356 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:22.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:22 smithi070 bash[22844]: cluster 2024-09-18T08:27:20.962983+0000 mgr.a (mgr.14152) 356 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:22.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:22 smithi070 bash[22844]: audit 2024-09-18T08:27:22.467445+0000 mon.a (mon.0) 639 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:22.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:22 smithi070 bash[22844]: audit 2024-09-18T08:27:22.467445+0000 mon.a (mon.0) 639 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:23.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:22 smithi086 bash[24678]: cluster 2024-09-18T08:27:20.962983+0000 mgr.a (mgr.14152) 356 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:23.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:22 smithi086 bash[24678]: cluster 2024-09-18T08:27:20.962983+0000 mgr.a (mgr.14152) 356 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:23.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:22 smithi086 bash[24678]: audit 2024-09-18T08:27:22.467445+0000 mon.a (mon.0) 639 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:23.087 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:22 smithi086 bash[24678]: audit 2024-09-18T08:27:22.467445+0000 mon.a (mon.0) 639 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.313 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: cluster 2024-09-18T08:27:22.963566+0000 mgr.a (mgr.14152) 357 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:24.313 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: cluster 2024-09-18T08:27:22.963566+0000 mgr.a (mgr.14152) 357 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:24.313 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.013272+0000 mon.a (mon.0) 640 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.313 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.013272+0000 mon.a (mon.0) 640 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.313 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.021226+0000 mon.a (mon.0) 641 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.313 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.021226+0000 mon.a (mon.0) 641 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.313 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.023090+0000 mon.a (mon.0) 642 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:24.313 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.023090+0000 mon.a (mon.0) 642 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:24.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.025181+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:27:24.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.025181+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:27:24.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: cephadm 2024-09-18T08:27:23.027626+0000 mgr.a (mgr.14152) 358 : cephadm [INF] Updating smithi070:/etc/ceph/ceph.conf 2024-09-18T08:27:24.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: cephadm 2024-09-18T08:27:23.027626+0000 mgr.a (mgr.14152) 358 : cephadm [INF] Updating smithi070:/etc/ceph/ceph.conf 2024-09-18T08:27:24.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: cephadm 2024-09-18T08:27:23.028305+0000 mgr.a (mgr.14152) 359 : cephadm [INF] Updating smithi086:/etc/ceph/ceph.conf 2024-09-18T08:27:24.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: cephadm 2024-09-18T08:27:23.028305+0000 mgr.a (mgr.14152) 359 : cephadm [INF] Updating smithi086:/etc/ceph/ceph.conf 2024-09-18T08:27:24.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: cephadm 2024-09-18T08:27:23.029575+0000 mgr.a (mgr.14152) 360 : cephadm [INF] Removing smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:27:24.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: cephadm 2024-09-18T08:27:23.029575+0000 mgr.a (mgr.14152) 360 : cephadm [INF] Removing smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:27:24.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: cephadm 2024-09-18T08:27:23.067372+0000 mgr.a (mgr.14152) 361 : cephadm [INF] Removing smithi172:/etc/ceph/ceph.client.admin.keyring 2024-09-18T08:27:24.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: cephadm 2024-09-18T08:27:23.067372+0000 mgr.a (mgr.14152) 361 : cephadm [INF] Removing smithi172:/etc/ceph/ceph.client.admin.keyring 2024-09-18T08:27:24.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: cephadm 2024-09-18T08:27:23.098741+0000 mgr.a (mgr.14152) 362 : cephadm [INF] Removing smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T08:27:24.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: cephadm 2024-09-18T08:27:23.098741+0000 mgr.a (mgr.14152) 362 : cephadm [INF] Removing smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T08:27:24.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.135795+0000 mon.a (mon.0) 644 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.315 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.135795+0000 mon.a (mon.0) 644 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.315 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.144043+0000 mon.a (mon.0) 645 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.315 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.144043+0000 mon.a (mon.0) 645 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.315 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: cephadm 2024-09-18T08:27:23.196429+0000 mgr.a (mgr.14152) 363 : cephadm [INF] Updating smithi086:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:27:24.315 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: cephadm 2024-09-18T08:27:23.196429+0000 mgr.a (mgr.14152) 363 : cephadm [INF] Updating smithi086:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:27:24.315 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: cephadm 2024-09-18T08:27:23.196645+0000 mgr.a (mgr.14152) 364 : cephadm [INF] Updating smithi070:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:27:24.316 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: cephadm 2024-09-18T08:27:23.196645+0000 mgr.a (mgr.14152) 364 : cephadm [INF] Updating smithi070:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:27:24.316 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.287370+0000 mon.a (mon.0) 646 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.316 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.287370+0000 mon.a (mon.0) 646 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.316 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.294629+0000 mon.a (mon.0) 647 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.316 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.294629+0000 mon.a (mon.0) 647 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.316 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.301937+0000 mon.a (mon.0) 648 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.316 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.301937+0000 mon.a (mon.0) 648 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.316 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.308568+0000 mon.a (mon.0) 649 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.316 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.308568+0000 mon.a (mon.0) 649 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.316 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.310906+0000 mon.a (mon.0) 650 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-18T08:27:24.316 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.310906+0000 mon.a (mon.0) 650 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-18T08:27:24.316 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.311162+0000 mgr.a (mgr.14152) 365 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T08:27:24.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.311162+0000 mgr.a (mgr.14152) 365 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T08:27:24.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.312604+0000 mon.a (mon.0) 651 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-18T08:27:24.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.312604+0000 mon.a (mon.0) 651 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-18T08:27:24.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.312828+0000 mgr.a (mgr.14152) 366 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T08:27:24.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.312828+0000 mgr.a (mgr.14152) 366 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T08:27:24.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.314139+0000 mon.a (mon.0) 652 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2024-09-18T08:27:24.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.314139+0000 mon.a (mon.0) 652 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2024-09-18T08:27:24.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.314359+0000 mgr.a (mgr.14152) 367 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-18T08:27:24.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.314359+0000 mgr.a (mgr.14152) 367 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-18T08:27:24.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.315645+0000 mon.a (mon.0) 653 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2024-09-18T08:27:24.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: audit 2024-09-18T08:27:23.315645+0000 mon.a (mon.0) 653 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2024-09-18T08:27:24.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:24 smithi070 bash[22844]: debug 2024-09-18T08:27:24.318+0000 7fd887c8a640 -1 mon.a@0(leader).osd e40 definitely_dead 0 2024-09-18T08:27:24.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: cluster 2024-09-18T08:27:22.963566+0000 mgr.a (mgr.14152) 357 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:24.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: cluster 2024-09-18T08:27:22.963566+0000 mgr.a (mgr.14152) 357 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:24.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.013272+0000 mon.a (mon.0) 640 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.013272+0000 mon.a (mon.0) 640 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.021226+0000 mon.a (mon.0) 641 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.021226+0000 mon.a (mon.0) 641 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.023090+0000 mon.a (mon.0) 642 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:24.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.023090+0000 mon.a (mon.0) 642 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:24.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.025181+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:27:24.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.025181+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:27:24.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: cephadm 2024-09-18T08:27:23.027626+0000 mgr.a (mgr.14152) 358 : cephadm [INF] Updating smithi070:/etc/ceph/ceph.conf 2024-09-18T08:27:24.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: cephadm 2024-09-18T08:27:23.027626+0000 mgr.a (mgr.14152) 358 : cephadm [INF] Updating smithi070:/etc/ceph/ceph.conf 2024-09-18T08:27:24.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: cephadm 2024-09-18T08:27:23.028305+0000 mgr.a (mgr.14152) 359 : cephadm [INF] Updating smithi086:/etc/ceph/ceph.conf 2024-09-18T08:27:24.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: cephadm 2024-09-18T08:27:23.028305+0000 mgr.a (mgr.14152) 359 : cephadm [INF] Updating smithi086:/etc/ceph/ceph.conf 2024-09-18T08:27:24.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: cephadm 2024-09-18T08:27:23.029575+0000 mgr.a (mgr.14152) 360 : cephadm [INF] Removing smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:27:24.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: cephadm 2024-09-18T08:27:23.029575+0000 mgr.a (mgr.14152) 360 : cephadm [INF] Removing smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:27:24.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: cephadm 2024-09-18T08:27:23.067372+0000 mgr.a (mgr.14152) 361 : cephadm [INF] Removing smithi172:/etc/ceph/ceph.client.admin.keyring 2024-09-18T08:27:24.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: cephadm 2024-09-18T08:27:23.067372+0000 mgr.a (mgr.14152) 361 : cephadm [INF] Removing smithi172:/etc/ceph/ceph.client.admin.keyring 2024-09-18T08:27:24.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: cephadm 2024-09-18T08:27:23.098741+0000 mgr.a (mgr.14152) 362 : cephadm [INF] Removing smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T08:27:24.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: cephadm 2024-09-18T08:27:23.098741+0000 mgr.a (mgr.14152) 362 : cephadm [INF] Removing smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-18T08:27:24.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.135795+0000 mon.a (mon.0) 644 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.135795+0000 mon.a (mon.0) 644 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.144043+0000 mon.a (mon.0) 645 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.340 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.144043+0000 mon.a (mon.0) 645 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: cephadm 2024-09-18T08:27:23.196429+0000 mgr.a (mgr.14152) 363 : cephadm [INF] Updating smithi086:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:27:24.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: cephadm 2024-09-18T08:27:23.196429+0000 mgr.a (mgr.14152) 363 : cephadm [INF] Updating smithi086:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:27:24.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: cephadm 2024-09-18T08:27:23.196645+0000 mgr.a (mgr.14152) 364 : cephadm [INF] Updating smithi070:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:27:24.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: cephadm 2024-09-18T08:27:23.196645+0000 mgr.a (mgr.14152) 364 : cephadm [INF] Updating smithi070:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-18T08:27:24.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.287370+0000 mon.a (mon.0) 646 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.287370+0000 mon.a (mon.0) 646 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.294629+0000 mon.a (mon.0) 647 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.294629+0000 mon.a (mon.0) 647 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.301937+0000 mon.a (mon.0) 648 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.301937+0000 mon.a (mon.0) 648 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.308568+0000 mon.a (mon.0) 649 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.308568+0000 mon.a (mon.0) 649 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:24.341 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.310906+0000 mon.a (mon.0) 650 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-18T08:27:24.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.310906+0000 mon.a (mon.0) 650 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-18T08:27:24.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.311162+0000 mgr.a (mgr.14152) 365 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T08:27:24.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.311162+0000 mgr.a (mgr.14152) 365 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T08:27:24.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.312604+0000 mon.a (mon.0) 651 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-18T08:27:24.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.312604+0000 mon.a (mon.0) 651 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-18T08:27:24.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.312828+0000 mgr.a (mgr.14152) 366 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T08:27:24.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.312828+0000 mgr.a (mgr.14152) 366 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T08:27:24.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.314139+0000 mon.a (mon.0) 652 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2024-09-18T08:27:24.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.314139+0000 mon.a (mon.0) 652 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2024-09-18T08:27:24.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.314359+0000 mgr.a (mgr.14152) 367 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-18T08:27:24.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.314359+0000 mgr.a (mgr.14152) 367 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-18T08:27:24.342 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.315645+0000 mon.a (mon.0) 653 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2024-09-18T08:27:24.343 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:24 smithi086 bash[24678]: audit 2024-09-18T08:27:23.315645+0000 mon.a (mon.0) 653 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2024-09-18T08:27:25.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:25 smithi086 bash[24678]: audit 2024-09-18T08:27:24.307512+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-18T08:27:25.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:25 smithi086 bash[24678]: audit 2024-09-18T08:27:24.307512+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-18T08:27:25.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:25 smithi086 bash[24678]: cluster 2024-09-18T08:27:24.312556+0000 mon.a (mon.0) 655 : cluster [DBG] osdmap e40: 6 total, 6 up, 6 in 2024-09-18T08:27:25.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:25 smithi086 bash[24678]: cluster 2024-09-18T08:27:24.312556+0000 mon.a (mon.0) 655 : cluster [DBG] osdmap e40: 6 total, 6 up, 6 in 2024-09-18T08:27:25.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:25 smithi086 bash[24678]: cephadm 2024-09-18T08:27:24.313658+0000 mgr.a (mgr.14152) 368 : cephadm [INF] osd.5 weight is now 0.0 2024-09-18T08:27:25.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:25 smithi086 bash[24678]: cephadm 2024-09-18T08:27:24.313658+0000 mgr.a (mgr.14152) 368 : cephadm [INF] osd.5 weight is now 0.0 2024-09-18T08:27:25.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:25 smithi086 bash[24678]: audit 2024-09-18T08:27:24.314583+0000 mon.a (mon.0) 656 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-18T08:27:25.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:25 smithi086 bash[24678]: audit 2024-09-18T08:27:24.314583+0000 mon.a (mon.0) 656 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-18T08:27:25.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:25 smithi086 bash[24678]: audit 2024-09-18T08:27:24.314948+0000 mgr.a (mgr.14152) 369 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T08:27:25.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:25 smithi086 bash[24678]: audit 2024-09-18T08:27:24.314948+0000 mgr.a (mgr.14152) 369 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T08:27:25.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:25 smithi086 bash[24678]: audit 2024-09-18T08:27:24.317389+0000 mon.a (mon.0) 657 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2024-09-18T08:27:25.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:25 smithi086 bash[24678]: audit 2024-09-18T08:27:24.317389+0000 mon.a (mon.0) 657 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2024-09-18T08:27:25.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:25 smithi086 bash[24678]: audit 2024-09-18T08:27:24.317747+0000 mgr.a (mgr.14152) 370 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-18T08:27:25.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:25 smithi086 bash[24678]: audit 2024-09-18T08:27:24.317747+0000 mgr.a (mgr.14152) 370 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-18T08:27:25.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:25 smithi086 bash[24678]: audit 2024-09-18T08:27:24.319978+0000 mon.a (mon.0) 658 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2024-09-18T08:27:25.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:25 smithi086 bash[24678]: audit 2024-09-18T08:27:24.319978+0000 mon.a (mon.0) 658 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2024-09-18T08:27:25.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:25 smithi070 bash[22844]: audit 2024-09-18T08:27:24.307512+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-18T08:27:25.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:25 smithi070 bash[22844]: audit 2024-09-18T08:27:24.307512+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-18T08:27:25.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:25 smithi070 bash[22844]: cluster 2024-09-18T08:27:24.312556+0000 mon.a (mon.0) 655 : cluster [DBG] osdmap e40: 6 total, 6 up, 6 in 2024-09-18T08:27:25.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:25 smithi070 bash[22844]: cluster 2024-09-18T08:27:24.312556+0000 mon.a (mon.0) 655 : cluster [DBG] osdmap e40: 6 total, 6 up, 6 in 2024-09-18T08:27:25.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:25 smithi070 bash[22844]: cephadm 2024-09-18T08:27:24.313658+0000 mgr.a (mgr.14152) 368 : cephadm [INF] osd.5 weight is now 0.0 2024-09-18T08:27:25.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:25 smithi070 bash[22844]: cephadm 2024-09-18T08:27:24.313658+0000 mgr.a (mgr.14152) 368 : cephadm [INF] osd.5 weight is now 0.0 2024-09-18T08:27:25.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:25 smithi070 bash[22844]: audit 2024-09-18T08:27:24.314583+0000 mon.a (mon.0) 656 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-18T08:27:25.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:25 smithi070 bash[22844]: audit 2024-09-18T08:27:24.314583+0000 mon.a (mon.0) 656 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-18T08:27:25.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:25 smithi070 bash[22844]: audit 2024-09-18T08:27:24.314948+0000 mgr.a (mgr.14152) 369 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T08:27:25.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:25 smithi070 bash[22844]: audit 2024-09-18T08:27:24.314948+0000 mgr.a (mgr.14152) 369 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T08:27:25.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:25 smithi070 bash[22844]: audit 2024-09-18T08:27:24.317389+0000 mon.a (mon.0) 657 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2024-09-18T08:27:25.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:25 smithi070 bash[22844]: audit 2024-09-18T08:27:24.317389+0000 mon.a (mon.0) 657 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2024-09-18T08:27:25.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:25 smithi070 bash[22844]: audit 2024-09-18T08:27:24.317747+0000 mgr.a (mgr.14152) 370 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-18T08:27:25.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:25 smithi070 bash[22844]: audit 2024-09-18T08:27:24.317747+0000 mgr.a (mgr.14152) 370 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-18T08:27:25.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:25 smithi070 bash[22844]: audit 2024-09-18T08:27:24.319978+0000 mon.a (mon.0) 658 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2024-09-18T08:27:25.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:25 smithi070 bash[22844]: audit 2024-09-18T08:27:24.319978+0000 mon.a (mon.0) 658 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2024-09-18T08:27:26.229 INFO:journalctl@ceph.osd.4.smithi172.stdout:Sep 18 08:27:25 smithi172 systemd[1]: Stopping Ceph osd.4 for 1481c73c-7596-11ef-bceb-c7b262605968... 2024-09-18T08:27:26.229 INFO:journalctl@ceph.osd.4.smithi172.stdout:Sep 18 08:27:26 smithi172 bash[27804]: debug 2024-09-18T08:27:26.011+0000 7f1d1d690640 -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-18T08:27:26.229 INFO:journalctl@ceph.osd.4.smithi172.stdout:Sep 18 08:27:26 smithi172 bash[27804]: debug 2024-09-18T08:27:26.011+0000 7f1d1d690640 -1 osd.4 40 *** Got signal Terminated *** 2024-09-18T08:27:26.230 INFO:journalctl@ceph.osd.4.smithi172.stdout:Sep 18 08:27:26 smithi172 bash[27804]: debug 2024-09-18T08:27:26.011+0000 7f1d1d690640 -1 osd.4 40 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-18T08:27:26.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:26 smithi086 bash[24678]: cluster 2024-09-18T08:27:24.964092+0000 mgr.a (mgr.14152) 371 : cluster [DBG] pgmap v302: 1 pgs: 1 peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:26.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:26 smithi086 bash[24678]: cluster 2024-09-18T08:27:24.964092+0000 mgr.a (mgr.14152) 371 : cluster [DBG] pgmap v302: 1 pgs: 1 peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:26.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:26 smithi086 bash[24678]: cluster 2024-09-18T08:27:25.307571+0000 mon.a (mon.0) 659 : cluster [WRN] Health check failed: Reduced data availability: 1 pg peering (PG_AVAILABILITY) 2024-09-18T08:27:26.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:26 smithi086 bash[24678]: cluster 2024-09-18T08:27:25.307571+0000 mon.a (mon.0) 659 : cluster [WRN] Health check failed: Reduced data availability: 1 pg peering (PG_AVAILABILITY) 2024-09-18T08:27:26.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:26 smithi086 bash[24678]: cluster 2024-09-18T08:27:25.308444+0000 mon.a (mon.0) 660 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-18T08:27:26.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:26 smithi086 bash[24678]: cluster 2024-09-18T08:27:25.308444+0000 mon.a (mon.0) 660 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-18T08:27:26.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:26 smithi086 bash[24678]: audit 2024-09-18T08:27:25.316098+0000 mon.a (mon.0) 661 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-18T08:27:26.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:26 smithi086 bash[24678]: audit 2024-09-18T08:27:25.316098+0000 mon.a (mon.0) 661 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-18T08:27:26.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:26 smithi086 bash[24678]: cluster 2024-09-18T08:27:25.323220+0000 mon.a (mon.0) 662 : cluster [DBG] osdmap e41: 6 total, 5 up, 6 in 2024-09-18T08:27:26.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:26 smithi086 bash[24678]: cluster 2024-09-18T08:27:25.323220+0000 mon.a (mon.0) 662 : cluster [DBG] osdmap e41: 6 total, 5 up, 6 in 2024-09-18T08:27:26.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:26 smithi086 bash[24678]: cephadm 2024-09-18T08:27:25.324654+0000 mgr.a (mgr.14152) 372 : cephadm [INF] osd.4 now down 2024-09-18T08:27:26.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:26 smithi086 bash[24678]: cephadm 2024-09-18T08:27:25.324654+0000 mgr.a (mgr.14152) 372 : cephadm [INF] osd.4 now down 2024-09-18T08:27:26.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:26 smithi086 bash[24678]: cephadm 2024-09-18T08:27:25.325143+0000 mgr.a (mgr.14152) 373 : cephadm [INF] Removing daemon osd.4 from smithi172 -- ports [] 2024-09-18T08:27:26.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:26 smithi086 bash[24678]: cephadm 2024-09-18T08:27:25.325143+0000 mgr.a (mgr.14152) 373 : cephadm [INF] Removing daemon osd.4 from smithi172 -- ports [] 2024-09-18T08:27:26.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:26 smithi070 bash[22844]: cluster 2024-09-18T08:27:24.964092+0000 mgr.a (mgr.14152) 371 : cluster [DBG] pgmap v302: 1 pgs: 1 peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:26.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:26 smithi070 bash[22844]: cluster 2024-09-18T08:27:24.964092+0000 mgr.a (mgr.14152) 371 : cluster [DBG] pgmap v302: 1 pgs: 1 peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:26.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:26 smithi070 bash[22844]: cluster 2024-09-18T08:27:25.307571+0000 mon.a (mon.0) 659 : cluster [WRN] Health check failed: Reduced data availability: 1 pg peering (PG_AVAILABILITY) 2024-09-18T08:27:26.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:26 smithi070 bash[22844]: cluster 2024-09-18T08:27:25.307571+0000 mon.a (mon.0) 659 : cluster [WRN] Health check failed: Reduced data availability: 1 pg peering (PG_AVAILABILITY) 2024-09-18T08:27:26.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:26 smithi070 bash[22844]: cluster 2024-09-18T08:27:25.308444+0000 mon.a (mon.0) 660 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-18T08:27:26.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:26 smithi070 bash[22844]: cluster 2024-09-18T08:27:25.308444+0000 mon.a (mon.0) 660 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-18T08:27:26.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:26 smithi070 bash[22844]: audit 2024-09-18T08:27:25.316098+0000 mon.a (mon.0) 661 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-18T08:27:26.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:26 smithi070 bash[22844]: audit 2024-09-18T08:27:25.316098+0000 mon.a (mon.0) 661 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-18T08:27:26.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:26 smithi070 bash[22844]: cluster 2024-09-18T08:27:25.323220+0000 mon.a (mon.0) 662 : cluster [DBG] osdmap e41: 6 total, 5 up, 6 in 2024-09-18T08:27:26.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:26 smithi070 bash[22844]: cluster 2024-09-18T08:27:25.323220+0000 mon.a (mon.0) 662 : cluster [DBG] osdmap e41: 6 total, 5 up, 6 in 2024-09-18T08:27:26.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:26 smithi070 bash[22844]: cephadm 2024-09-18T08:27:25.324654+0000 mgr.a (mgr.14152) 372 : cephadm [INF] osd.4 now down 2024-09-18T08:27:26.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:26 smithi070 bash[22844]: cephadm 2024-09-18T08:27:25.324654+0000 mgr.a (mgr.14152) 372 : cephadm [INF] osd.4 now down 2024-09-18T08:27:26.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:26 smithi070 bash[22844]: cephadm 2024-09-18T08:27:25.325143+0000 mgr.a (mgr.14152) 373 : cephadm [INF] Removing daemon osd.4 from smithi172 -- ports [] 2024-09-18T08:27:26.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:26 smithi070 bash[22844]: cephadm 2024-09-18T08:27:25.325143+0000 mgr.a (mgr.14152) 373 : cephadm [INF] Removing daemon osd.4 from smithi172 -- ports [] 2024-09-18T08:27:27.339 INFO:journalctl@ceph.osd.4.smithi172.stdout:Sep 18 08:27:27 smithi172 bash[36811]: ceph-1481c73c-7596-11ef-bceb-c7b262605968-osd-4 2024-09-18T08:27:27.339 INFO:journalctl@ceph.osd.4.smithi172.stdout:Sep 18 08:27:27 smithi172 bash[36878]: Error response from daemon: No such container: ceph-1481c73c-7596-11ef-bceb-c7b262605968-osd-4 2024-09-18T08:27:27.587 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:27 smithi086 bash[24678]: cluster 2024-09-18T08:27:26.323438+0000 mon.a (mon.0) 663 : cluster [DBG] osdmap e42: 6 total, 5 up, 6 in 2024-09-18T08:27:27.587 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:27 smithi086 bash[24678]: cluster 2024-09-18T08:27:26.323438+0000 mon.a (mon.0) 663 : cluster [DBG] osdmap e42: 6 total, 5 up, 6 in 2024-09-18T08:27:27.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:27 smithi070 bash[22844]: cluster 2024-09-18T08:27:26.323438+0000 mon.a (mon.0) 663 : cluster [DBG] osdmap e42: 6 total, 5 up, 6 in 2024-09-18T08:27:27.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:27 smithi070 bash[22844]: cluster 2024-09-18T08:27:26.323438+0000 mon.a (mon.0) 663 : cluster [DBG] osdmap e42: 6 total, 5 up, 6 in 2024-09-18T08:27:28.587 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:28 smithi086 bash[24678]: cluster 2024-09-18T08:27:26.964659+0000 mgr.a (mgr.14152) 374 : cluster [DBG] pgmap v305: 1 pgs: 1 peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:28.587 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:28 smithi086 bash[24678]: cluster 2024-09-18T08:27:26.964659+0000 mgr.a (mgr.14152) 374 : cluster [DBG] pgmap v305: 1 pgs: 1 peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:28.587 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:28 smithi086 bash[24678]: cluster 2024-09-18T08:27:27.339526+0000 mon.a (mon.0) 664 : cluster [DBG] osdmap e43: 6 total, 5 up, 6 in 2024-09-18T08:27:28.587 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:28 smithi086 bash[24678]: cluster 2024-09-18T08:27:27.339526+0000 mon.a (mon.0) 664 : cluster [DBG] osdmap e43: 6 total, 5 up, 6 in 2024-09-18T08:27:28.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:28 smithi070 bash[22844]: cluster 2024-09-18T08:27:26.964659+0000 mgr.a (mgr.14152) 374 : cluster [DBG] pgmap v305: 1 pgs: 1 peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:28.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:28 smithi070 bash[22844]: cluster 2024-09-18T08:27:26.964659+0000 mgr.a (mgr.14152) 374 : cluster [DBG] pgmap v305: 1 pgs: 1 peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:28.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:28 smithi070 bash[22844]: cluster 2024-09-18T08:27:27.339526+0000 mon.a (mon.0) 664 : cluster [DBG] osdmap e43: 6 total, 5 up, 6 in 2024-09-18T08:27:28.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:28 smithi070 bash[22844]: cluster 2024-09-18T08:27:27.339526+0000 mon.a (mon.0) 664 : cluster [DBG] osdmap e43: 6 total, 5 up, 6 in 2024-09-18T08:27:28.988 INFO:teuthology.orchestra.run.smithi070.stderr:++ ceph orch ps --hostname smithi172 2024-09-18T08:27:29.229 INFO:journalctl@ceph.osd.4.smithi172.stdout:Sep 18 08:27:28 smithi172 systemd[1]: ceph-1481c73c-7596-11ef-bceb-c7b262605968@osd.4.service: Deactivated successfully. 2024-09-18T08:27:29.229 INFO:journalctl@ceph.osd.4.smithi172.stdout:Sep 18 08:27:28 smithi172 systemd[1]: Stopped Ceph osd.4 for 1481c73c-7596-11ef-bceb-c7b262605968. 2024-09-18T08:27:29.229 INFO:journalctl@ceph.osd.4.smithi172.stdout:Sep 18 08:27:29 smithi172 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:27:29.230 INFO:journalctl@ceph.osd.5.smithi172.stdout:Sep 18 08:27:29 smithi172 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:27:29.322 INFO:teuthology.orchestra.run.smithi070.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-18T08:27:29.323 INFO:teuthology.orchestra.run.smithi070.stderr:osd.5 smithi172 running (2m) 6s ago 2m 44.1M 10.4G 19.3.0-4983-ge7fb7b56 b22e1e37ddf1 86914a212599 ' 2024-09-18T08:27:29.323 INFO:teuthology.orchestra.run.smithi070.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-18T08:27:29.323 INFO:teuthology.orchestra.run.smithi070.stderr:osd.5 smithi172 running (2m) 6s ago 2m 44.1M 10.4G 19.3.0-4983-ge7fb7b56 b22e1e37ddf1 86914a212599 ' '!=' 'No daemons reported' ']' 2024-09-18T08:27:29.323 INFO:teuthology.orchestra.run.smithi070.stderr:+ sleep 15 2024-09-18T08:27:29.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:29 smithi086 bash[24678]: audit 2024-09-18T08:27:29.276840+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2024-09-18T08:27:29.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:29 smithi086 bash[24678]: audit 2024-09-18T08:27:29.276840+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2024-09-18T08:27:29.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:29 smithi086 bash[24678]: audit 2024-09-18T08:27:29.279406+0000 mon.a (mon.0) 666 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-18T08:27:29.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:29 smithi086 bash[24678]: audit 2024-09-18T08:27:29.279406+0000 mon.a (mon.0) 666 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-18T08:27:29.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:29 smithi086 bash[24678]: audit 2024-09-18T08:27:29.284637+0000 mon.a (mon.0) 667 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2024-09-18T08:27:29.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:29 smithi086 bash[24678]: audit 2024-09-18T08:27:29.284637+0000 mon.a (mon.0) 667 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2024-09-18T08:27:29.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:29 smithi086 bash[24678]: cluster 2024-09-18T08:27:29.285453+0000 mon.a (mon.0) 668 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-18T08:27:29.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:29 smithi086 bash[24678]: cluster 2024-09-18T08:27:29.285453+0000 mon.a (mon.0) 668 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-18T08:27:29.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:29 smithi086 bash[24678]: audit 2024-09-18T08:27:29.287216+0000 mon.a (mon.0) 669 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-18T08:27:29.588 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:29 smithi086 bash[24678]: audit 2024-09-18T08:27:29.287216+0000 mon.a (mon.0) 669 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-18T08:27:29.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:29 smithi086 bash[24678]: cluster 2024-09-18T08:27:29.291964+0000 mon.a (mon.0) 670 : cluster [DBG] osdmap e44: 5 total, 5 up, 5 in 2024-09-18T08:27:29.589 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:29 smithi086 bash[24678]: cluster 2024-09-18T08:27:29.291964+0000 mon.a (mon.0) 670 : cluster [DBG] osdmap e44: 5 total, 5 up, 5 in 2024-09-18T08:27:29.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:29 smithi070 bash[22844]: audit 2024-09-18T08:27:29.276840+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2024-09-18T08:27:29.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:29 smithi070 bash[22844]: audit 2024-09-18T08:27:29.276840+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2024-09-18T08:27:29.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:29 smithi070 bash[22844]: audit 2024-09-18T08:27:29.279406+0000 mon.a (mon.0) 666 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-18T08:27:29.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:29 smithi070 bash[22844]: audit 2024-09-18T08:27:29.279406+0000 mon.a (mon.0) 666 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-18T08:27:29.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:29 smithi070 bash[22844]: audit 2024-09-18T08:27:29.284637+0000 mon.a (mon.0) 667 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2024-09-18T08:27:29.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:29 smithi070 bash[22844]: audit 2024-09-18T08:27:29.284637+0000 mon.a (mon.0) 667 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2024-09-18T08:27:29.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:29 smithi070 bash[22844]: cluster 2024-09-18T08:27:29.285453+0000 mon.a (mon.0) 668 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-18T08:27:29.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:29 smithi070 bash[22844]: cluster 2024-09-18T08:27:29.285453+0000 mon.a (mon.0) 668 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-18T08:27:29.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:29 smithi070 bash[22844]: audit 2024-09-18T08:27:29.287216+0000 mon.a (mon.0) 669 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-18T08:27:29.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:29 smithi070 bash[22844]: audit 2024-09-18T08:27:29.287216+0000 mon.a (mon.0) 669 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-18T08:27:29.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:29 smithi070 bash[22844]: cluster 2024-09-18T08:27:29.291964+0000 mon.a (mon.0) 670 : cluster [DBG] osdmap e44: 5 total, 5 up, 5 in 2024-09-18T08:27:29.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:29 smithi070 bash[22844]: cluster 2024-09-18T08:27:29.291964+0000 mon.a (mon.0) 670 : cluster [DBG] osdmap e44: 5 total, 5 up, 5 in 2024-09-18T08:27:30.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:30 smithi070 bash[22844]: cluster 2024-09-18T08:27:28.965240+0000 mgr.a (mgr.14152) 375 : cluster [DBG] pgmap v307: 1 pgs: 1 peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:30.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:30 smithi070 bash[22844]: cluster 2024-09-18T08:27:28.965240+0000 mgr.a (mgr.14152) 375 : cluster [DBG] pgmap v307: 1 pgs: 1 peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:30.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:30 smithi070 bash[22844]: cephadm 2024-09-18T08:27:29.276348+0000 mgr.a (mgr.14152) 376 : cephadm [INF] Removing key for osd.4 2024-09-18T08:27:30.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:30 smithi070 bash[22844]: cephadm 2024-09-18T08:27:29.276348+0000 mgr.a (mgr.14152) 376 : cephadm [INF] Removing key for osd.4 2024-09-18T08:27:30.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:30 smithi070 bash[22844]: cephadm 2024-09-18T08:27:29.284181+0000 mgr.a (mgr.14152) 377 : cephadm [INF] Successfully removed osd.4 on smithi172 2024-09-18T08:27:30.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:30 smithi070 bash[22844]: cephadm 2024-09-18T08:27:29.284181+0000 mgr.a (mgr.14152) 377 : cephadm [INF] Successfully removed osd.4 on smithi172 2024-09-18T08:27:30.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:30 smithi070 bash[22844]: cephadm 2024-09-18T08:27:29.292838+0000 mgr.a (mgr.14152) 378 : cephadm [INF] Successfully purged osd.4 on smithi172 2024-09-18T08:27:30.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:30 smithi070 bash[22844]: cephadm 2024-09-18T08:27:29.292838+0000 mgr.a (mgr.14152) 378 : cephadm [INF] Successfully purged osd.4 on smithi172 2024-09-18T08:27:30.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:30 smithi070 bash[22844]: cephadm 2024-09-18T08:27:29.292977+0000 mgr.a (mgr.14152) 379 : cephadm [INF] Zapping devices for osd.4 on smithi172 2024-09-18T08:27:30.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:30 smithi070 bash[22844]: cephadm 2024-09-18T08:27:29.292977+0000 mgr.a (mgr.14152) 379 : cephadm [INF] Zapping devices for osd.4 on smithi172 2024-09-18T08:27:30.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:30 smithi070 bash[22844]: audit 2024-09-18T08:27:29.309640+0000 mgr.a (mgr.14152) 380 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi172", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:30.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:30 smithi070 bash[22844]: audit 2024-09-18T08:27:29.309640+0000 mgr.a (mgr.14152) 380 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi172", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:30.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:30 smithi086 bash[24678]: cluster 2024-09-18T08:27:28.965240+0000 mgr.a (mgr.14152) 375 : cluster [DBG] pgmap v307: 1 pgs: 1 peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:30.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:30 smithi086 bash[24678]: cluster 2024-09-18T08:27:28.965240+0000 mgr.a (mgr.14152) 375 : cluster [DBG] pgmap v307: 1 pgs: 1 peering; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail 2024-09-18T08:27:30.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:30 smithi086 bash[24678]: cephadm 2024-09-18T08:27:29.276348+0000 mgr.a (mgr.14152) 376 : cephadm [INF] Removing key for osd.4 2024-09-18T08:27:30.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:30 smithi086 bash[24678]: cephadm 2024-09-18T08:27:29.276348+0000 mgr.a (mgr.14152) 376 : cephadm [INF] Removing key for osd.4 2024-09-18T08:27:30.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:30 smithi086 bash[24678]: cephadm 2024-09-18T08:27:29.284181+0000 mgr.a (mgr.14152) 377 : cephadm [INF] Successfully removed osd.4 on smithi172 2024-09-18T08:27:30.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:30 smithi086 bash[24678]: cephadm 2024-09-18T08:27:29.284181+0000 mgr.a (mgr.14152) 377 : cephadm [INF] Successfully removed osd.4 on smithi172 2024-09-18T08:27:30.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:30 smithi086 bash[24678]: cephadm 2024-09-18T08:27:29.292838+0000 mgr.a (mgr.14152) 378 : cephadm [INF] Successfully purged osd.4 on smithi172 2024-09-18T08:27:30.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:30 smithi086 bash[24678]: cephadm 2024-09-18T08:27:29.292838+0000 mgr.a (mgr.14152) 378 : cephadm [INF] Successfully purged osd.4 on smithi172 2024-09-18T08:27:30.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:30 smithi086 bash[24678]: cephadm 2024-09-18T08:27:29.292977+0000 mgr.a (mgr.14152) 379 : cephadm [INF] Zapping devices for osd.4 on smithi172 2024-09-18T08:27:30.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:30 smithi086 bash[24678]: cephadm 2024-09-18T08:27:29.292977+0000 mgr.a (mgr.14152) 379 : cephadm [INF] Zapping devices for osd.4 on smithi172 2024-09-18T08:27:30.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:30 smithi086 bash[24678]: audit 2024-09-18T08:27:29.309640+0000 mgr.a (mgr.14152) 380 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi172", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:30.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:30 smithi086 bash[24678]: audit 2024-09-18T08:27:29.309640+0000 mgr.a (mgr.14152) 380 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi172", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:31.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:31 smithi070 bash[22844]: cluster 2024-09-18T08:27:30.357716+0000 mon.a (mon.0) 671 : cluster [DBG] osdmap e45: 5 total, 5 up, 5 in 2024-09-18T08:27:31.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:31 smithi070 bash[22844]: cluster 2024-09-18T08:27:30.357716+0000 mon.a (mon.0) 671 : cluster [DBG] osdmap e45: 5 total, 5 up, 5 in 2024-09-18T08:27:31.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:31 smithi086 bash[24678]: cluster 2024-09-18T08:27:30.357716+0000 mon.a (mon.0) 671 : cluster [DBG] osdmap e45: 5 total, 5 up, 5 in 2024-09-18T08:27:31.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:31 smithi086 bash[24678]: cluster 2024-09-18T08:27:30.357716+0000 mon.a (mon.0) 671 : cluster [DBG] osdmap e45: 5 total, 5 up, 5 in 2024-09-18T08:27:32.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:32 smithi070 bash[22844]: cluster 2024-09-18T08:27:30.965796+0000 mgr.a (mgr.14152) 381 : cluster [DBG] pgmap v310: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:27:32.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:32 smithi070 bash[22844]: cluster 2024-09-18T08:27:30.965796+0000 mgr.a (mgr.14152) 381 : cluster [DBG] pgmap v310: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:27:32.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:32 smithi070 bash[22844]: cluster 2024-09-18T08:27:31.353512+0000 mon.a (mon.0) 672 : cluster [INF] Health check cleared: PG_AVAILABILITY (was: Reduced data availability: 1 pg peering) 2024-09-18T08:27:32.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:32 smithi070 bash[22844]: cluster 2024-09-18T08:27:31.353512+0000 mon.a (mon.0) 672 : cluster [INF] Health check cleared: PG_AVAILABILITY (was: Reduced data availability: 1 pg peering) 2024-09-18T08:27:32.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:32 smithi070 bash[22844]: cluster 2024-09-18T08:27:31.353564+0000 mon.a (mon.0) 673 : cluster [INF] Cluster is now healthy 2024-09-18T08:27:32.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:32 smithi070 bash[22844]: cluster 2024-09-18T08:27:31.353564+0000 mon.a (mon.0) 673 : cluster [INF] Cluster is now healthy 2024-09-18T08:27:32.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:32 smithi070 bash[22844]: cluster 2024-09-18T08:27:31.366758+0000 mon.a (mon.0) 674 : cluster [DBG] osdmap e46: 5 total, 5 up, 5 in 2024-09-18T08:27:32.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:32 smithi070 bash[22844]: cluster 2024-09-18T08:27:31.366758+0000 mon.a (mon.0) 674 : cluster [DBG] osdmap e46: 5 total, 5 up, 5 in 2024-09-18T08:27:32.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:32 smithi086 bash[24678]: cluster 2024-09-18T08:27:30.965796+0000 mgr.a (mgr.14152) 381 : cluster [DBG] pgmap v310: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:27:32.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:32 smithi086 bash[24678]: cluster 2024-09-18T08:27:30.965796+0000 mgr.a (mgr.14152) 381 : cluster [DBG] pgmap v310: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:27:32.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:32 smithi086 bash[24678]: cluster 2024-09-18T08:27:31.353512+0000 mon.a (mon.0) 672 : cluster [INF] Health check cleared: PG_AVAILABILITY (was: Reduced data availability: 1 pg peering) 2024-09-18T08:27:32.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:32 smithi086 bash[24678]: cluster 2024-09-18T08:27:31.353512+0000 mon.a (mon.0) 672 : cluster [INF] Health check cleared: PG_AVAILABILITY (was: Reduced data availability: 1 pg peering) 2024-09-18T08:27:32.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:32 smithi086 bash[24678]: cluster 2024-09-18T08:27:31.353564+0000 mon.a (mon.0) 673 : cluster [INF] Cluster is now healthy 2024-09-18T08:27:32.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:32 smithi086 bash[24678]: cluster 2024-09-18T08:27:31.353564+0000 mon.a (mon.0) 673 : cluster [INF] Cluster is now healthy 2024-09-18T08:27:32.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:32 smithi086 bash[24678]: cluster 2024-09-18T08:27:31.366758+0000 mon.a (mon.0) 674 : cluster [DBG] osdmap e46: 5 total, 5 up, 5 in 2024-09-18T08:27:32.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:32 smithi086 bash[24678]: cluster 2024-09-18T08:27:31.366758+0000 mon.a (mon.0) 674 : cluster [DBG] osdmap e46: 5 total, 5 up, 5 in 2024-09-18T08:27:34.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:34 smithi070 bash[22844]: cluster 2024-09-18T08:27:32.966331+0000 mgr.a (mgr.14152) 382 : cluster [DBG] pgmap v312: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:27:34.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:34 smithi070 bash[22844]: cluster 2024-09-18T08:27:32.966331+0000 mgr.a (mgr.14152) 382 : cluster [DBG] pgmap v312: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:27:34.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:34 smithi086 bash[24678]: cluster 2024-09-18T08:27:32.966331+0000 mgr.a (mgr.14152) 382 : cluster [DBG] pgmap v312: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:27:34.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:34 smithi086 bash[24678]: cluster 2024-09-18T08:27:32.966331+0000 mgr.a (mgr.14152) 382 : cluster [DBG] pgmap v312: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-09-18T08:27:36.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:36 smithi070 bash[22844]: cluster 2024-09-18T08:27:34.966913+0000 mgr.a (mgr.14152) 383 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-18T08:27:36.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:36 smithi070 bash[22844]: cluster 2024-09-18T08:27:34.966913+0000 mgr.a (mgr.14152) 383 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-18T08:27:36.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:36 smithi086 bash[24678]: cluster 2024-09-18T08:27:34.966913+0000 mgr.a (mgr.14152) 383 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-18T08:27:36.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:36 smithi086 bash[24678]: cluster 2024-09-18T08:27:34.966913+0000 mgr.a (mgr.14152) 383 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-18T08:27:38.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:38 smithi070 bash[22844]: debug 2024-09-18T08:27:38.261+0000 7fd887c8a640 -1 mon.a@0(leader).osd e46 definitely_dead 0 2024-09-18T08:27:38.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:38 smithi070 bash[22844]: cluster 2024-09-18T08:27:36.967460+0000 mgr.a (mgr.14152) 384 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 75 KiB/s, 0 objects/s recovering 2024-09-18T08:27:38.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:38 smithi070 bash[22844]: cluster 2024-09-18T08:27:36.967460+0000 mgr.a (mgr.14152) 384 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 75 KiB/s, 0 objects/s recovering 2024-09-18T08:27:38.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:38 smithi070 bash[22844]: audit 2024-09-18T08:27:38.260180+0000 mon.a (mon.0) 675 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-18T08:27:38.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:38 smithi070 bash[22844]: audit 2024-09-18T08:27:38.260180+0000 mon.a (mon.0) 675 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-18T08:27:38.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:38 smithi070 bash[22844]: audit 2024-09-18T08:27:38.262971+0000 mon.a (mon.0) 676 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2024-09-18T08:27:38.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:38 smithi070 bash[22844]: audit 2024-09-18T08:27:38.262971+0000 mon.a (mon.0) 676 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2024-09-18T08:27:38.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:38 smithi070 bash[22844]: audit 2024-09-18T08:27:38.265547+0000 mon.a (mon.0) 677 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["5"]} : dispatch 2024-09-18T08:27:38.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:38 smithi070 bash[22844]: audit 2024-09-18T08:27:38.265547+0000 mon.a (mon.0) 677 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["5"]} : dispatch 2024-09-18T08:27:38.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:38 smithi086 bash[24678]: cluster 2024-09-18T08:27:36.967460+0000 mgr.a (mgr.14152) 384 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 75 KiB/s, 0 objects/s recovering 2024-09-18T08:27:38.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:38 smithi086 bash[24678]: cluster 2024-09-18T08:27:36.967460+0000 mgr.a (mgr.14152) 384 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 75 KiB/s, 0 objects/s recovering 2024-09-18T08:27:38.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:38 smithi086 bash[24678]: audit 2024-09-18T08:27:38.260180+0000 mon.a (mon.0) 675 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-18T08:27:38.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:38 smithi086 bash[24678]: audit 2024-09-18T08:27:38.260180+0000 mon.a (mon.0) 675 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-18T08:27:38.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:38 smithi086 bash[24678]: audit 2024-09-18T08:27:38.262971+0000 mon.a (mon.0) 676 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2024-09-18T08:27:38.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:38 smithi086 bash[24678]: audit 2024-09-18T08:27:38.262971+0000 mon.a (mon.0) 676 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2024-09-18T08:27:38.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:38 smithi086 bash[24678]: audit 2024-09-18T08:27:38.265547+0000 mon.a (mon.0) 677 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["5"]} : dispatch 2024-09-18T08:27:38.841 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:38 smithi086 bash[24678]: audit 2024-09-18T08:27:38.265547+0000 mon.a (mon.0) 677 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["5"]} : dispatch 2024-09-18T08:27:39.229 INFO:journalctl@ceph.osd.5.smithi172.stdout:Sep 18 08:27:38 smithi172 systemd[1]: Stopping Ceph osd.5 for 1481c73c-7596-11ef-bceb-c7b262605968... 2024-09-18T08:27:39.229 INFO:journalctl@ceph.osd.5.smithi172.stdout:Sep 18 08:27:39 smithi172 bash[33390]: debug 2024-09-18T08:27:39.003+0000 7fef399da640 -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-18T08:27:39.229 INFO:journalctl@ceph.osd.5.smithi172.stdout:Sep 18 08:27:39 smithi172 bash[33390]: debug 2024-09-18T08:27:39.003+0000 7fef399da640 -1 osd.5 46 *** Got signal Terminated *** 2024-09-18T08:27:39.229 INFO:journalctl@ceph.osd.5.smithi172.stdout:Sep 18 08:27:39 smithi172 bash[33390]: debug 2024-09-18T08:27:39.003+0000 7fef399da640 -1 osd.5 46 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-18T08:27:39.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:39 smithi070 bash[22844]: cephadm 2024-09-18T08:27:38.259410+0000 mgr.a (mgr.14152) 385 : cephadm [INF] Successfully zapped devices for osd.4 on smithi172 2024-09-18T08:27:39.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:39 smithi070 bash[22844]: cephadm 2024-09-18T08:27:38.259410+0000 mgr.a (mgr.14152) 385 : cephadm [INF] Successfully zapped devices for osd.4 on smithi172 2024-09-18T08:27:39.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:39 smithi070 bash[22844]: audit 2024-09-18T08:27:38.260544+0000 mgr.a (mgr.14152) 386 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T08:27:39.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:39 smithi070 bash[22844]: audit 2024-09-18T08:27:38.260544+0000 mgr.a (mgr.14152) 386 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T08:27:39.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:39 smithi070 bash[22844]: audit 2024-09-18T08:27:38.263283+0000 mgr.a (mgr.14152) 387 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-18T08:27:39.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:39 smithi070 bash[22844]: audit 2024-09-18T08:27:38.263283+0000 mgr.a (mgr.14152) 387 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-18T08:27:39.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:39 smithi070 bash[22844]: cluster 2024-09-18T08:27:38.374083+0000 mon.a (mon.0) 678 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-18T08:27:39.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:39 smithi070 bash[22844]: cluster 2024-09-18T08:27:38.374083+0000 mon.a (mon.0) 678 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-18T08:27:39.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:39 smithi070 bash[22844]: cluster 2024-09-18T08:27:38.374127+0000 mon.a (mon.0) 679 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-18T08:27:39.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:39 smithi070 bash[22844]: cluster 2024-09-18T08:27:38.374127+0000 mon.a (mon.0) 679 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-18T08:27:39.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:39 smithi070 bash[22844]: audit 2024-09-18T08:27:38.376260+0000 mon.a (mon.0) 680 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-18T08:27:39.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:39 smithi070 bash[22844]: audit 2024-09-18T08:27:38.376260+0000 mon.a (mon.0) 680 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-18T08:27:39.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:39 smithi070 bash[22844]: cluster 2024-09-18T08:27:38.381466+0000 mon.a (mon.0) 681 : cluster [DBG] osdmap e47: 5 total, 4 up, 5 in 2024-09-18T08:27:39.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:39 smithi070 bash[22844]: cluster 2024-09-18T08:27:38.381466+0000 mon.a (mon.0) 681 : cluster [DBG] osdmap e47: 5 total, 4 up, 5 in 2024-09-18T08:27:39.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:39 smithi070 bash[22844]: cephadm 2024-09-18T08:27:38.382821+0000 mgr.a (mgr.14152) 388 : cephadm [INF] osd.5 now down 2024-09-18T08:27:39.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:39 smithi070 bash[22844]: cephadm 2024-09-18T08:27:38.382821+0000 mgr.a (mgr.14152) 388 : cephadm [INF] osd.5 now down 2024-09-18T08:27:39.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:39 smithi070 bash[22844]: cephadm 2024-09-18T08:27:38.383427+0000 mgr.a (mgr.14152) 389 : cephadm [INF] Removing daemon osd.5 from smithi172 -- ports [] 2024-09-18T08:27:39.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:39 smithi070 bash[22844]: cephadm 2024-09-18T08:27:38.383427+0000 mgr.a (mgr.14152) 389 : cephadm [INF] Removing daemon osd.5 from smithi172 -- ports [] 2024-09-18T08:27:39.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:39 smithi086 bash[24678]: cephadm 2024-09-18T08:27:38.259410+0000 mgr.a (mgr.14152) 385 : cephadm [INF] Successfully zapped devices for osd.4 on smithi172 2024-09-18T08:27:39.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:39 smithi086 bash[24678]: cephadm 2024-09-18T08:27:38.259410+0000 mgr.a (mgr.14152) 385 : cephadm [INF] Successfully zapped devices for osd.4 on smithi172 2024-09-18T08:27:39.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:39 smithi086 bash[24678]: audit 2024-09-18T08:27:38.260544+0000 mgr.a (mgr.14152) 386 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T08:27:39.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:39 smithi086 bash[24678]: audit 2024-09-18T08:27:38.260544+0000 mgr.a (mgr.14152) 386 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-18T08:27:39.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:39 smithi086 bash[24678]: audit 2024-09-18T08:27:38.263283+0000 mgr.a (mgr.14152) 387 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-18T08:27:39.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:39 smithi086 bash[24678]: audit 2024-09-18T08:27:38.263283+0000 mgr.a (mgr.14152) 387 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-18T08:27:39.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:39 smithi086 bash[24678]: cluster 2024-09-18T08:27:38.374083+0000 mon.a (mon.0) 678 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-18T08:27:39.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:39 smithi086 bash[24678]: cluster 2024-09-18T08:27:38.374083+0000 mon.a (mon.0) 678 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-18T08:27:39.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:39 smithi086 bash[24678]: cluster 2024-09-18T08:27:38.374127+0000 mon.a (mon.0) 679 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-18T08:27:39.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:39 smithi086 bash[24678]: cluster 2024-09-18T08:27:38.374127+0000 mon.a (mon.0) 679 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-18T08:27:39.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:39 smithi086 bash[24678]: audit 2024-09-18T08:27:38.376260+0000 mon.a (mon.0) 680 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-18T08:27:39.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:39 smithi086 bash[24678]: audit 2024-09-18T08:27:38.376260+0000 mon.a (mon.0) 680 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-18T08:27:39.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:39 smithi086 bash[24678]: cluster 2024-09-18T08:27:38.381466+0000 mon.a (mon.0) 681 : cluster [DBG] osdmap e47: 5 total, 4 up, 5 in 2024-09-18T08:27:39.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:39 smithi086 bash[24678]: cluster 2024-09-18T08:27:38.381466+0000 mon.a (mon.0) 681 : cluster [DBG] osdmap e47: 5 total, 4 up, 5 in 2024-09-18T08:27:39.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:39 smithi086 bash[24678]: cephadm 2024-09-18T08:27:38.382821+0000 mgr.a (mgr.14152) 388 : cephadm [INF] osd.5 now down 2024-09-18T08:27:39.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:39 smithi086 bash[24678]: cephadm 2024-09-18T08:27:38.382821+0000 mgr.a (mgr.14152) 388 : cephadm [INF] osd.5 now down 2024-09-18T08:27:39.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:39 smithi086 bash[24678]: cephadm 2024-09-18T08:27:38.383427+0000 mgr.a (mgr.14152) 389 : cephadm [INF] Removing daemon osd.5 from smithi172 -- ports [] 2024-09-18T08:27:39.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:39 smithi086 bash[24678]: cephadm 2024-09-18T08:27:38.383427+0000 mgr.a (mgr.14152) 389 : cephadm [INF] Removing daemon osd.5 from smithi172 -- ports [] 2024-09-18T08:27:40.229 INFO:journalctl@ceph.osd.5.smithi172.stdout:Sep 18 08:27:39 smithi172 bash[37331]: ceph-1481c73c-7596-11ef-bceb-c7b262605968-osd-5 2024-09-18T08:27:40.229 INFO:journalctl@ceph.osd.5.smithi172.stdout:Sep 18 08:27:40 smithi172 bash[37393]: Error response from daemon: No such container: ceph-1481c73c-7596-11ef-bceb-c7b262605968-osd-5 2024-09-18T08:27:40.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:40 smithi070 bash[22844]: cluster 2024-09-18T08:27:38.968023+0000 mgr.a (mgr.14152) 390 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T08:27:40.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:40 smithi070 bash[22844]: cluster 2024-09-18T08:27:38.968023+0000 mgr.a (mgr.14152) 390 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T08:27:40.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:40 smithi086 bash[24678]: cluster 2024-09-18T08:27:38.968023+0000 mgr.a (mgr.14152) 390 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T08:27:40.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:40 smithi086 bash[24678]: cluster 2024-09-18T08:27:38.968023+0000 mgr.a (mgr.14152) 390 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-18T08:27:42.229 INFO:journalctl@ceph.osd.5.smithi172.stdout:Sep 18 08:27:41 smithi172 systemd[1]: ceph-1481c73c-7596-11ef-bceb-c7b262605968@osd.5.service: Deactivated successfully. 2024-09-18T08:27:42.229 INFO:journalctl@ceph.osd.5.smithi172.stdout:Sep 18 08:27:41 smithi172 systemd[1]: Stopped Ceph osd.5 for 1481c73c-7596-11ef-bceb-c7b262605968. 2024-09-18T08:27:42.229 INFO:journalctl@ceph.osd.5.smithi172.stdout:Sep 18 08:27:42 smithi172 systemd[1]: /etc/systemd/system/ceph-1481c73c-7596-11ef-bceb-c7b262605968@.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-18T08:27:42.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:42 smithi070 bash[22844]: cluster 2024-09-18T08:27:40.968601+0000 mgr.a (mgr.14152) 391 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 60 KiB/s, 0 objects/s recovering 2024-09-18T08:27:42.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:42 smithi070 bash[22844]: cluster 2024-09-18T08:27:40.968601+0000 mgr.a (mgr.14152) 391 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 60 KiB/s, 0 objects/s recovering 2024-09-18T08:27:42.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:42 smithi070 bash[22844]: audit 2024-09-18T08:27:42.213235+0000 mon.a (mon.0) 682 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.5"} : dispatch 2024-09-18T08:27:42.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:42 smithi070 bash[22844]: audit 2024-09-18T08:27:42.213235+0000 mon.a (mon.0) 682 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.5"} : dispatch 2024-09-18T08:27:42.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:42 smithi070 bash[22844]: audit 2024-09-18T08:27:42.216014+0000 mon.a (mon.0) 683 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-18T08:27:42.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:42 smithi070 bash[22844]: audit 2024-09-18T08:27:42.216014+0000 mon.a (mon.0) 683 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-18T08:27:42.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:42 smithi070 bash[22844]: audit 2024-09-18T08:27:42.222242+0000 mon.a (mon.0) 684 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true} : dispatch 2024-09-18T08:27:42.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:42 smithi070 bash[22844]: audit 2024-09-18T08:27:42.222242+0000 mon.a (mon.0) 684 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true} : dispatch 2024-09-18T08:27:42.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:42 smithi070 bash[22844]: cluster 2024-09-18T08:27:42.223304+0000 mon.a (mon.0) 685 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-18T08:27:42.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:42 smithi070 bash[22844]: cluster 2024-09-18T08:27:42.223304+0000 mon.a (mon.0) 685 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-18T08:27:42.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:42 smithi070 bash[22844]: cluster 2024-09-18T08:27:42.223346+0000 mon.a (mon.0) 686 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-18T08:27:42.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:42 smithi070 bash[22844]: cluster 2024-09-18T08:27:42.223346+0000 mon.a (mon.0) 686 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-18T08:27:42.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:42 smithi070 bash[22844]: cluster 2024-09-18T08:27:42.223375+0000 mon.a (mon.0) 687 : cluster [INF] Cluster is now healthy 2024-09-18T08:27:42.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:42 smithi070 bash[22844]: cluster 2024-09-18T08:27:42.223375+0000 mon.a (mon.0) 687 : cluster [INF] Cluster is now healthy 2024-09-18T08:27:42.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:42 smithi070 bash[22844]: audit 2024-09-18T08:27:42.225361+0000 mon.a (mon.0) 688 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-18T08:27:42.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:42 smithi070 bash[22844]: audit 2024-09-18T08:27:42.225361+0000 mon.a (mon.0) 688 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-18T08:27:42.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:42 smithi070 bash[22844]: cluster 2024-09-18T08:27:42.230167+0000 mon.a (mon.0) 689 : cluster [DBG] osdmap e48: 4 total, 4 up, 4 in 2024-09-18T08:27:42.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:42 smithi070 bash[22844]: cluster 2024-09-18T08:27:42.230167+0000 mon.a (mon.0) 689 : cluster [DBG] osdmap e48: 4 total, 4 up, 4 in 2024-09-18T08:27:42.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:42 smithi086 bash[24678]: cluster 2024-09-18T08:27:40.968601+0000 mgr.a (mgr.14152) 391 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 60 KiB/s, 0 objects/s recovering 2024-09-18T08:27:42.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:42 smithi086 bash[24678]: cluster 2024-09-18T08:27:40.968601+0000 mgr.a (mgr.14152) 391 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 60 KiB/s, 0 objects/s recovering 2024-09-18T08:27:42.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:42 smithi086 bash[24678]: audit 2024-09-18T08:27:42.213235+0000 mon.a (mon.0) 682 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.5"} : dispatch 2024-09-18T08:27:42.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:42 smithi086 bash[24678]: audit 2024-09-18T08:27:42.213235+0000 mon.a (mon.0) 682 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.5"} : dispatch 2024-09-18T08:27:42.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:42 smithi086 bash[24678]: audit 2024-09-18T08:27:42.216014+0000 mon.a (mon.0) 683 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-18T08:27:42.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:42 smithi086 bash[24678]: audit 2024-09-18T08:27:42.216014+0000 mon.a (mon.0) 683 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-18T08:27:42.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:42 smithi086 bash[24678]: audit 2024-09-18T08:27:42.222242+0000 mon.a (mon.0) 684 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true} : dispatch 2024-09-18T08:27:42.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:42 smithi086 bash[24678]: audit 2024-09-18T08:27:42.222242+0000 mon.a (mon.0) 684 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true} : dispatch 2024-09-18T08:27:42.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:42 smithi086 bash[24678]: cluster 2024-09-18T08:27:42.223304+0000 mon.a (mon.0) 685 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-18T08:27:42.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:42 smithi086 bash[24678]: cluster 2024-09-18T08:27:42.223304+0000 mon.a (mon.0) 685 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-18T08:27:42.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:42 smithi086 bash[24678]: cluster 2024-09-18T08:27:42.223346+0000 mon.a (mon.0) 686 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-18T08:27:42.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:42 smithi086 bash[24678]: cluster 2024-09-18T08:27:42.223346+0000 mon.a (mon.0) 686 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-18T08:27:42.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:42 smithi086 bash[24678]: cluster 2024-09-18T08:27:42.223375+0000 mon.a (mon.0) 687 : cluster [INF] Cluster is now healthy 2024-09-18T08:27:42.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:42 smithi086 bash[24678]: cluster 2024-09-18T08:27:42.223375+0000 mon.a (mon.0) 687 : cluster [INF] Cluster is now healthy 2024-09-18T08:27:42.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:42 smithi086 bash[24678]: audit 2024-09-18T08:27:42.225361+0000 mon.a (mon.0) 688 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-18T08:27:42.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:42 smithi086 bash[24678]: audit 2024-09-18T08:27:42.225361+0000 mon.a (mon.0) 688 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-18T08:27:42.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:42 smithi086 bash[24678]: cluster 2024-09-18T08:27:42.230167+0000 mon.a (mon.0) 689 : cluster [DBG] osdmap e48: 4 total, 4 up, 4 in 2024-09-18T08:27:42.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:42 smithi086 bash[24678]: cluster 2024-09-18T08:27:42.230167+0000 mon.a (mon.0) 689 : cluster [DBG] osdmap e48: 4 total, 4 up, 4 in 2024-09-18T08:27:43.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:43 smithi070 bash[22844]: cephadm 2024-09-18T08:27:42.212627+0000 mgr.a (mgr.14152) 392 : cephadm [INF] Removing key for osd.5 2024-09-18T08:27:43.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:43 smithi070 bash[22844]: cephadm 2024-09-18T08:27:42.212627+0000 mgr.a (mgr.14152) 392 : cephadm [INF] Removing key for osd.5 2024-09-18T08:27:43.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:43 smithi070 bash[22844]: cephadm 2024-09-18T08:27:42.221382+0000 mgr.a (mgr.14152) 393 : cephadm [INF] Successfully removed osd.5 on smithi172 2024-09-18T08:27:43.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:43 smithi070 bash[22844]: cephadm 2024-09-18T08:27:42.221382+0000 mgr.a (mgr.14152) 393 : cephadm [INF] Successfully removed osd.5 on smithi172 2024-09-18T08:27:43.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:43 smithi070 bash[22844]: cephadm 2024-09-18T08:27:42.231351+0000 mgr.a (mgr.14152) 394 : cephadm [INF] Successfully purged osd.5 on smithi172 2024-09-18T08:27:43.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:43 smithi070 bash[22844]: cephadm 2024-09-18T08:27:42.231351+0000 mgr.a (mgr.14152) 394 : cephadm [INF] Successfully purged osd.5 on smithi172 2024-09-18T08:27:43.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:43 smithi070 bash[22844]: cephadm 2024-09-18T08:27:42.231513+0000 mgr.a (mgr.14152) 395 : cephadm [INF] Zapping devices for osd.5 on smithi172 2024-09-18T08:27:43.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:43 smithi070 bash[22844]: cephadm 2024-09-18T08:27:42.231513+0000 mgr.a (mgr.14152) 395 : cephadm [INF] Zapping devices for osd.5 on smithi172 2024-09-18T08:27:43.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:43 smithi086 bash[24678]: cephadm 2024-09-18T08:27:42.212627+0000 mgr.a (mgr.14152) 392 : cephadm [INF] Removing key for osd.5 2024-09-18T08:27:43.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:43 smithi086 bash[24678]: cephadm 2024-09-18T08:27:42.212627+0000 mgr.a (mgr.14152) 392 : cephadm [INF] Removing key for osd.5 2024-09-18T08:27:43.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:43 smithi086 bash[24678]: cephadm 2024-09-18T08:27:42.221382+0000 mgr.a (mgr.14152) 393 : cephadm [INF] Successfully removed osd.5 on smithi172 2024-09-18T08:27:43.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:43 smithi086 bash[24678]: cephadm 2024-09-18T08:27:42.221382+0000 mgr.a (mgr.14152) 393 : cephadm [INF] Successfully removed osd.5 on smithi172 2024-09-18T08:27:43.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:43 smithi086 bash[24678]: cephadm 2024-09-18T08:27:42.231351+0000 mgr.a (mgr.14152) 394 : cephadm [INF] Successfully purged osd.5 on smithi172 2024-09-18T08:27:43.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:43 smithi086 bash[24678]: cephadm 2024-09-18T08:27:42.231351+0000 mgr.a (mgr.14152) 394 : cephadm [INF] Successfully purged osd.5 on smithi172 2024-09-18T08:27:43.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:43 smithi086 bash[24678]: cephadm 2024-09-18T08:27:42.231513+0000 mgr.a (mgr.14152) 395 : cephadm [INF] Zapping devices for osd.5 on smithi172 2024-09-18T08:27:43.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:43 smithi086 bash[24678]: cephadm 2024-09-18T08:27:42.231513+0000 mgr.a (mgr.14152) 395 : cephadm [INF] Zapping devices for osd.5 on smithi172 2024-09-18T08:27:44.325 INFO:teuthology.orchestra.run.smithi070.stderr:++ ceph orch ps --hostname smithi172 2024-09-18T08:27:44.651 INFO:teuthology.orchestra.run.smithi070.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-09-18T08:27:44.651 INFO:teuthology.orchestra.run.smithi070.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-09-18T08:27:44.651 INFO:teuthology.orchestra.run.smithi070.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-18T08:27:44.724 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:44 smithi070 bash[22844]: cluster 2024-09-18T08:27:42.969071+0000 mgr.a (mgr.14152) 396 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:44.724 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:44 smithi070 bash[22844]: cluster 2024-09-18T08:27:42.969071+0000 mgr.a (mgr.14152) 396 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:44.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:44 smithi086 bash[24678]: cluster 2024-09-18T08:27:42.969071+0000 mgr.a (mgr.14152) 396 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:44.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:44 smithi086 bash[24678]: cluster 2024-09-18T08:27:42.969071+0000 mgr.a (mgr.14152) 396 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:44.931 INFO:teuthology.orchestra.run.smithi070.stderr:17 2024-09-18T08:27:44.942 INFO:teuthology.orchestra.run.smithi070.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-18T08:27:44.960 INFO:teuthology.orchestra.run.smithi070.stderr:++ cat crushmap.txt 2024-09-18T08:27:44.961 INFO:teuthology.orchestra.run.smithi070.stderr:+ CRUSH_MAP='# begin crush map 2024-09-18T08:27:44.961 INFO:teuthology.orchestra.run.smithi070.stderr:tunable choose_local_tries 0 2024-09-18T08:27:44.961 INFO:teuthology.orchestra.run.smithi070.stderr:tunable choose_local_fallback_tries 0 2024-09-18T08:27:44.961 INFO:teuthology.orchestra.run.smithi070.stderr:tunable choose_total_tries 50 2024-09-18T08:27:44.961 INFO:teuthology.orchestra.run.smithi070.stderr:tunable chooseleaf_descend_once 1 2024-09-18T08:27:44.961 INFO:teuthology.orchestra.run.smithi070.stderr:tunable chooseleaf_vary_r 1 2024-09-18T08:27:44.961 INFO:teuthology.orchestra.run.smithi070.stderr:tunable chooseleaf_stable 1 2024-09-18T08:27:44.961 INFO:teuthology.orchestra.run.smithi070.stderr:tunable straw_calc_version 1 2024-09-18T08:27:44.961 INFO:teuthology.orchestra.run.smithi070.stderr:tunable allowed_bucket_algs 54 2024-09-18T08:27:44.961 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-18T08:27:44.961 INFO:teuthology.orchestra.run.smithi070.stderr:# devices 2024-09-18T08:27:44.962 INFO:teuthology.orchestra.run.smithi070.stderr:device 0 osd.0 class ssd 2024-09-18T08:27:44.962 INFO:teuthology.orchestra.run.smithi070.stderr:device 1 osd.1 class ssd 2024-09-18T08:27:44.962 INFO:teuthology.orchestra.run.smithi070.stderr:device 2 osd.2 class ssd 2024-09-18T08:27:44.962 INFO:teuthology.orchestra.run.smithi070.stderr:device 3 osd.3 class ssd 2024-09-18T08:27:44.962 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-18T08:27:44.962 INFO:teuthology.orchestra.run.smithi070.stderr:# types 2024-09-18T08:27:44.962 INFO:teuthology.orchestra.run.smithi070.stderr:type 0 osd 2024-09-18T08:27:44.962 INFO:teuthology.orchestra.run.smithi070.stderr:type 1 host 2024-09-18T08:27:44.962 INFO:teuthology.orchestra.run.smithi070.stderr:type 2 chassis 2024-09-18T08:27:44.962 INFO:teuthology.orchestra.run.smithi070.stderr:type 3 rack 2024-09-18T08:27:44.962 INFO:teuthology.orchestra.run.smithi070.stderr:type 4 row 2024-09-18T08:27:44.962 INFO:teuthology.orchestra.run.smithi070.stderr:type 5 pdu 2024-09-18T08:27:44.962 INFO:teuthology.orchestra.run.smithi070.stderr:type 6 pod 2024-09-18T08:27:44.962 INFO:teuthology.orchestra.run.smithi070.stderr:type 7 room 2024-09-18T08:27:44.962 INFO:teuthology.orchestra.run.smithi070.stderr:type 8 datacenter 2024-09-18T08:27:44.963 INFO:teuthology.orchestra.run.smithi070.stderr:type 9 zone 2024-09-18T08:27:44.963 INFO:teuthology.orchestra.run.smithi070.stderr:type 10 region 2024-09-18T08:27:44.963 INFO:teuthology.orchestra.run.smithi070.stderr:type 11 root 2024-09-18T08:27:44.963 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-18T08:27:44.963 INFO:teuthology.orchestra.run.smithi070.stderr:# buckets 2024-09-18T08:27:44.963 INFO:teuthology.orchestra.run.smithi070.stderr:host smithi070 { 2024-09-18T08:27:44.963 INFO:teuthology.orchestra.run.smithi070.stderr: id -3 # do not change unnecessarily 2024-09-18T08:27:44.963 INFO:teuthology.orchestra.run.smithi070.stderr: id -4 class ssd # do not change unnecessarily 2024-09-18T08:27:44.963 INFO:teuthology.orchestra.run.smithi070.stderr: # weight 0.17459 2024-09-18T08:27:44.963 INFO:teuthology.orchestra.run.smithi070.stderr: alg straw2 2024-09-18T08:27:44.963 INFO:teuthology.orchestra.run.smithi070.stderr: hash 0 # rjenkins1 2024-09-18T08:27:44.963 INFO:teuthology.orchestra.run.smithi070.stderr: item osd.0 weight 0.08730 2024-09-18T08:27:44.963 INFO:teuthology.orchestra.run.smithi070.stderr: item osd.1 weight 0.08730 2024-09-18T08:27:44.963 INFO:teuthology.orchestra.run.smithi070.stderr:} 2024-09-18T08:27:44.963 INFO:teuthology.orchestra.run.smithi070.stderr:host smithi086 { 2024-09-18T08:27:44.964 INFO:teuthology.orchestra.run.smithi070.stderr: id -5 # do not change unnecessarily 2024-09-18T08:27:44.964 INFO:teuthology.orchestra.run.smithi070.stderr: id -6 class ssd # do not change unnecessarily 2024-09-18T08:27:44.964 INFO:teuthology.orchestra.run.smithi070.stderr: # weight 0.17459 2024-09-18T08:27:44.964 INFO:teuthology.orchestra.run.smithi070.stderr: alg straw2 2024-09-18T08:27:44.964 INFO:teuthology.orchestra.run.smithi070.stderr: hash 0 # rjenkins1 2024-09-18T08:27:44.964 INFO:teuthology.orchestra.run.smithi070.stderr: item osd.2 weight 0.08730 2024-09-18T08:27:44.964 INFO:teuthology.orchestra.run.smithi070.stderr: item osd.3 weight 0.08730 2024-09-18T08:27:44.964 INFO:teuthology.orchestra.run.smithi070.stderr:} 2024-09-18T08:27:44.964 INFO:teuthology.orchestra.run.smithi070.stderr:host smithi172 { 2024-09-18T08:27:44.964 INFO:teuthology.orchestra.run.smithi070.stderr: id -7 # do not change unnecessarily 2024-09-18T08:27:44.964 INFO:teuthology.orchestra.run.smithi070.stderr: id -8 class ssd # do not change unnecessarily 2024-09-18T08:27:44.964 INFO:teuthology.orchestra.run.smithi070.stderr: # weight 0.00000 2024-09-18T08:27:44.964 INFO:teuthology.orchestra.run.smithi070.stderr: alg straw2 2024-09-18T08:27:44.965 INFO:teuthology.orchestra.run.smithi070.stderr: hash 0 # rjenkins1 2024-09-18T08:27:44.965 INFO:teuthology.orchestra.run.smithi070.stderr:} 2024-09-18T08:27:44.965 INFO:teuthology.orchestra.run.smithi070.stderr:root default { 2024-09-18T08:27:44.965 INFO:teuthology.orchestra.run.smithi070.stderr: id -1 # do not change unnecessarily 2024-09-18T08:27:44.965 INFO:teuthology.orchestra.run.smithi070.stderr: id -2 class ssd # do not change unnecessarily 2024-09-18T08:27:44.965 INFO:teuthology.orchestra.run.smithi070.stderr: # weight 0.34918 2024-09-18T08:27:44.965 INFO:teuthology.orchestra.run.smithi070.stderr: alg straw2 2024-09-18T08:27:44.965 INFO:teuthology.orchestra.run.smithi070.stderr: hash 0 # rjenkins1 2024-09-18T08:27:44.965 INFO:teuthology.orchestra.run.smithi070.stderr: item smithi070 weight 0.17459 2024-09-18T08:27:44.965 INFO:teuthology.orchestra.run.smithi070.stderr: item smithi086 weight 0.17459 2024-09-18T08:27:44.965 INFO:teuthology.orchestra.run.smithi070.stderr: item smithi172 weight 0.00000 2024-09-18T08:27:44.965 INFO:teuthology.orchestra.run.smithi070.stderr:} 2024-09-18T08:27:44.965 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-18T08:27:44.965 INFO:teuthology.orchestra.run.smithi070.stderr:# rules 2024-09-18T08:27:44.966 INFO:teuthology.orchestra.run.smithi070.stderr:rule replicated_rule { 2024-09-18T08:27:44.966 INFO:teuthology.orchestra.run.smithi070.stderr: id 0 2024-09-18T08:27:44.966 INFO:teuthology.orchestra.run.smithi070.stderr: type replicated 2024-09-18T08:27:44.966 INFO:teuthology.orchestra.run.smithi070.stderr: step take default 2024-09-18T08:27:44.966 INFO:teuthology.orchestra.run.smithi070.stderr: step choose firstn 0 type osd 2024-09-18T08:27:44.966 INFO:teuthology.orchestra.run.smithi070.stderr: step emit 2024-09-18T08:27:44.966 INFO:teuthology.orchestra.run.smithi070.stderr:} 2024-09-18T08:27:44.966 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-18T08:27:44.966 INFO:teuthology.orchestra.run.smithi070.stderr:# end crush map' 2024-09-18T08:27:44.966 INFO:teuthology.orchestra.run.smithi070.stderr:+ grep -q smithi172 2024-09-18T08:27:44.966 INFO:teuthology.orchestra.run.smithi070.stderr:+ ceph orch host rm smithi172 --rm-crush-entry 2024-09-18T08:27:45.432 INFO:teuthology.orchestra.run.smithi070.stdout:Removed host 'smithi172' 2024-09-18T08:27:45.452 INFO:teuthology.orchestra.run.smithi070.stderr:+ sleep 30 2024-09-18T08:27:45.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:45 smithi070 bash[22844]: audit 2024-09-18T08:27:44.641985+0000 mgr.a (mgr.14152) 397 : audit [DBG] from='client.14518 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi172", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:45.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:45 smithi070 bash[22844]: audit 2024-09-18T08:27:44.641985+0000 mgr.a (mgr.14152) 397 : audit [DBG] from='client.14518 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi172", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:45.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:45 smithi070 bash[22844]: audit 2024-09-18T08:27:44.939441+0000 mon.a (mon.0) 690 : audit [DBG] from='client.? 172.21.15.70:0/4080606129' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-18T08:27:45.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:45 smithi070 bash[22844]: audit 2024-09-18T08:27:44.939441+0000 mon.a (mon.0) 690 : audit [DBG] from='client.? 172.21.15.70:0/4080606129' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-18T08:27:45.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:45 smithi070 bash[22844]: audit 2024-09-18T08:27:45.256234+0000 mon.a (mon.0) 691 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd crush remove", "name": "smithi172"} : dispatch 2024-09-18T08:27:45.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:45 smithi070 bash[22844]: audit 2024-09-18T08:27:45.256234+0000 mon.a (mon.0) 691 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd crush remove", "name": "smithi172"} : dispatch 2024-09-18T08:27:45.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:45 smithi086 bash[24678]: audit 2024-09-18T08:27:44.641985+0000 mgr.a (mgr.14152) 397 : audit [DBG] from='client.14518 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi172", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:45.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:45 smithi086 bash[24678]: audit 2024-09-18T08:27:44.641985+0000 mgr.a (mgr.14152) 397 : audit [DBG] from='client.14518 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi172", "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:45.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:45 smithi086 bash[24678]: audit 2024-09-18T08:27:44.939441+0000 mon.a (mon.0) 690 : audit [DBG] from='client.? 172.21.15.70:0/4080606129' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-18T08:27:45.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:45 smithi086 bash[24678]: audit 2024-09-18T08:27:44.939441+0000 mon.a (mon.0) 690 : audit [DBG] from='client.? 172.21.15.70:0/4080606129' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-18T08:27:45.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:45 smithi086 bash[24678]: audit 2024-09-18T08:27:45.256234+0000 mon.a (mon.0) 691 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd crush remove", "name": "smithi172"} : dispatch 2024-09-18T08:27:45.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:45 smithi086 bash[24678]: audit 2024-09-18T08:27:45.256234+0000 mon.a (mon.0) 691 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "osd crush remove", "name": "smithi172"} : dispatch 2024-09-18T08:27:46.725 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: cluster 2024-09-18T08:27:44.969375+0000 mgr.a (mgr.14152) 398 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:46.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: cluster 2024-09-18T08:27:44.969375+0000 mgr.a (mgr.14152) 398 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:46.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: audit 2024-09-18T08:27:45.255203+0000 mgr.a (mgr.14152) 399 : audit [DBG] from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi172", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:46.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: audit 2024-09-18T08:27:45.255203+0000 mgr.a (mgr.14152) 399 : audit [DBG] from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi172", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:46.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: audit 2024-09-18T08:27:45.415878+0000 mon.a (mon.0) 692 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi172"}]': finished 2024-09-18T08:27:46.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: audit 2024-09-18T08:27:45.415878+0000 mon.a (mon.0) 692 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi172"}]': finished 2024-09-18T08:27:46.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: cluster 2024-09-18T08:27:45.421885+0000 mon.a (mon.0) 693 : cluster [DBG] osdmap e49: 4 total, 4 up, 4 in 2024-09-18T08:27:46.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: cluster 2024-09-18T08:27:45.421885+0000 mon.a (mon.0) 693 : cluster [DBG] osdmap e49: 4 total, 4 up, 4 in 2024-09-18T08:27:46.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: audit 2024-09-18T08:27:45.428523+0000 mon.a (mon.0) 694 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:46.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: audit 2024-09-18T08:27:45.428523+0000 mon.a (mon.0) 694 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:46.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: audit 2024-09-18T08:27:45.429627+0000 mon.a (mon.0) 695 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix":"config-key del","key":"mgr/cephadm/host.smithi172"} : dispatch 2024-09-18T08:27:46.726 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: audit 2024-09-18T08:27:45.429627+0000 mon.a (mon.0) 695 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix":"config-key del","key":"mgr/cephadm/host.smithi172"} : dispatch 2024-09-18T08:27:46.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: audit 2024-09-18T08:27:45.434869+0000 mon.a (mon.0) 696 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi172"}]': finished 2024-09-18T08:27:46.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: audit 2024-09-18T08:27:45.434869+0000 mon.a (mon.0) 696 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi172"}]': finished 2024-09-18T08:27:46.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: cephadm 2024-09-18T08:27:45.440407+0000 mgr.a (mgr.14152) 400 : cephadm [INF] Removed host smithi172 2024-09-18T08:27:46.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: cephadm 2024-09-18T08:27:45.440407+0000 mgr.a (mgr.14152) 400 : cephadm [INF] Removed host smithi172 2024-09-18T08:27:46.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: cephadm 2024-09-18T08:27:45.440768+0000 mgr.a (mgr.14152) 401 : cephadm [INF] Successfully zapped devices for osd.5 on smithi172 2024-09-18T08:27:46.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: cephadm 2024-09-18T08:27:45.440768+0000 mgr.a (mgr.14152) 401 : cephadm [INF] Successfully zapped devices for osd.5 on smithi172 2024-09-18T08:27:46.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: audit 2024-09-18T08:27:45.446887+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:46.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: audit 2024-09-18T08:27:45.446887+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:46.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: cephadm 2024-09-18T08:27:45.473238+0000 mgr.a (mgr.14152) 402 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-18T08:27:46.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: cephadm 2024-09-18T08:27:45.473238+0000 mgr.a (mgr.14152) 402 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-18T08:27:46.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: audit 2024-09-18T08:27:45.473708+0000 mon.a (mon.0) 698 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:27:46.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: audit 2024-09-18T08:27:45.473708+0000 mon.a (mon.0) 698 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:27:46.727 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: audit 2024-09-18T08:27:45.474617+0000 mon.a (mon.0) 699 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:27:46.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: audit 2024-09-18T08:27:45.474617+0000 mon.a (mon.0) 699 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:27:46.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: audit 2024-09-18T08:27:45.475454+0000 mon.a (mon.0) 700 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:46.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: audit 2024-09-18T08:27:45.475454+0000 mon.a (mon.0) 700 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:46.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: cephadm 2024-09-18T08:27:45.476381+0000 mgr.a (mgr.14152) 403 : cephadm [INF] Reconfiguring daemon mon.a on smithi070 2024-09-18T08:27:46.728 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:46 smithi070 bash[22844]: cephadm 2024-09-18T08:27:45.476381+0000 mgr.a (mgr.14152) 403 : cephadm [INF] Reconfiguring daemon mon.a on smithi070 2024-09-18T08:27:46.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: cluster 2024-09-18T08:27:44.969375+0000 mgr.a (mgr.14152) 398 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:46.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: cluster 2024-09-18T08:27:44.969375+0000 mgr.a (mgr.14152) 398 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:46.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: audit 2024-09-18T08:27:45.255203+0000 mgr.a (mgr.14152) 399 : audit [DBG] from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi172", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:46.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: audit 2024-09-18T08:27:45.255203+0000 mgr.a (mgr.14152) 399 : audit [DBG] from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi172", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-18T08:27:46.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: audit 2024-09-18T08:27:45.415878+0000 mon.a (mon.0) 692 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi172"}]': finished 2024-09-18T08:27:46.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: audit 2024-09-18T08:27:45.415878+0000 mon.a (mon.0) 692 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi172"}]': finished 2024-09-18T08:27:46.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: cluster 2024-09-18T08:27:45.421885+0000 mon.a (mon.0) 693 : cluster [DBG] osdmap e49: 4 total, 4 up, 4 in 2024-09-18T08:27:46.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: cluster 2024-09-18T08:27:45.421885+0000 mon.a (mon.0) 693 : cluster [DBG] osdmap e49: 4 total, 4 up, 4 in 2024-09-18T08:27:46.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: audit 2024-09-18T08:27:45.428523+0000 mon.a (mon.0) 694 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:46.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: audit 2024-09-18T08:27:45.428523+0000 mon.a (mon.0) 694 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:46.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: audit 2024-09-18T08:27:45.429627+0000 mon.a (mon.0) 695 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix":"config-key del","key":"mgr/cephadm/host.smithi172"} : dispatch 2024-09-18T08:27:46.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: audit 2024-09-18T08:27:45.429627+0000 mon.a (mon.0) 695 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix":"config-key del","key":"mgr/cephadm/host.smithi172"} : dispatch 2024-09-18T08:27:46.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: audit 2024-09-18T08:27:45.434869+0000 mon.a (mon.0) 696 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi172"}]': finished 2024-09-18T08:27:46.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: audit 2024-09-18T08:27:45.434869+0000 mon.a (mon.0) 696 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi172"}]': finished 2024-09-18T08:27:46.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: cephadm 2024-09-18T08:27:45.440407+0000 mgr.a (mgr.14152) 400 : cephadm [INF] Removed host smithi172 2024-09-18T08:27:46.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: cephadm 2024-09-18T08:27:45.440407+0000 mgr.a (mgr.14152) 400 : cephadm [INF] Removed host smithi172 2024-09-18T08:27:46.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: cephadm 2024-09-18T08:27:45.440768+0000 mgr.a (mgr.14152) 401 : cephadm [INF] Successfully zapped devices for osd.5 on smithi172 2024-09-18T08:27:46.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: cephadm 2024-09-18T08:27:45.440768+0000 mgr.a (mgr.14152) 401 : cephadm [INF] Successfully zapped devices for osd.5 on smithi172 2024-09-18T08:27:46.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: audit 2024-09-18T08:27:45.446887+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:46.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: audit 2024-09-18T08:27:45.446887+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:46.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: cephadm 2024-09-18T08:27:45.473238+0000 mgr.a (mgr.14152) 402 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-18T08:27:46.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: cephadm 2024-09-18T08:27:45.473238+0000 mgr.a (mgr.14152) 402 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-18T08:27:46.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: audit 2024-09-18T08:27:45.473708+0000 mon.a (mon.0) 698 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:27:46.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: audit 2024-09-18T08:27:45.473708+0000 mon.a (mon.0) 698 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:27:46.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: audit 2024-09-18T08:27:45.474617+0000 mon.a (mon.0) 699 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:27:46.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: audit 2024-09-18T08:27:45.474617+0000 mon.a (mon.0) 699 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:27:46.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: audit 2024-09-18T08:27:45.475454+0000 mon.a (mon.0) 700 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:46.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: audit 2024-09-18T08:27:45.475454+0000 mon.a (mon.0) 700 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:46.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: cephadm 2024-09-18T08:27:45.476381+0000 mgr.a (mgr.14152) 403 : cephadm [INF] Reconfiguring daemon mon.a on smithi070 2024-09-18T08:27:46.840 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:46 smithi086 bash[24678]: cephadm 2024-09-18T08:27:45.476381+0000 mgr.a (mgr.14152) 403 : cephadm [INF] Reconfiguring daemon mon.a on smithi070 2024-09-18T08:27:48.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:48 smithi086 bash[24678]: cluster 2024-09-18T08:27:46.969671+0000 mgr.a (mgr.14152) 404 : cluster [DBG] pgmap v322: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:48.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:48 smithi086 bash[24678]: cluster 2024-09-18T08:27:46.969671+0000 mgr.a (mgr.14152) 404 : cluster [DBG] pgmap v322: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:48.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:48 smithi086 bash[24678]: audit 2024-09-18T08:27:47.564234+0000 mon.a (mon.0) 701 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:48.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:48 smithi086 bash[24678]: audit 2024-09-18T08:27:47.564234+0000 mon.a (mon.0) 701 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:48.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:48 smithi086 bash[24678]: audit 2024-09-18T08:27:47.572178+0000 mon.a (mon.0) 702 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:48.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:48 smithi086 bash[24678]: audit 2024-09-18T08:27:47.572178+0000 mon.a (mon.0) 702 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:48.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:48 smithi086 bash[24678]: cephadm 2024-09-18T08:27:47.573434+0000 mgr.a (mgr.14152) 405 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-09-18T08:27:48.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:48 smithi086 bash[24678]: cephadm 2024-09-18T08:27:47.573434+0000 mgr.a (mgr.14152) 405 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-09-18T08:27:48.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:48 smithi086 bash[24678]: audit 2024-09-18T08:27:47.573968+0000 mon.a (mon.0) 703 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-18T08:27:48.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:48 smithi086 bash[24678]: audit 2024-09-18T08:27:47.573968+0000 mon.a (mon.0) 703 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-18T08:27:48.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:48 smithi086 bash[24678]: audit 2024-09-18T08:27:47.575574+0000 mon.a (mon.0) 704 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-18T08:27:48.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:48 smithi086 bash[24678]: audit 2024-09-18T08:27:47.575574+0000 mon.a (mon.0) 704 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-18T08:27:48.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:48 smithi086 bash[24678]: audit 2024-09-18T08:27:47.576747+0000 mon.a (mon.0) 705 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:48.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:48 smithi086 bash[24678]: audit 2024-09-18T08:27:47.576747+0000 mon.a (mon.0) 705 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:48.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:48 smithi086 bash[24678]: cephadm 2024-09-18T08:27:47.578268+0000 mgr.a (mgr.14152) 406 : cephadm [INF] Reconfiguring daemon mgr.a on smithi070 2024-09-18T08:27:48.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:48 smithi086 bash[24678]: cephadm 2024-09-18T08:27:47.578268+0000 mgr.a (mgr.14152) 406 : cephadm [INF] Reconfiguring daemon mgr.a on smithi070 2024-09-18T08:27:48.873 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:48 smithi070 bash[22844]: cluster 2024-09-18T08:27:46.969671+0000 mgr.a (mgr.14152) 404 : cluster [DBG] pgmap v322: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:48.873 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:48 smithi070 bash[22844]: cluster 2024-09-18T08:27:46.969671+0000 mgr.a (mgr.14152) 404 : cluster [DBG] pgmap v322: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:48.873 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:48 smithi070 bash[22844]: audit 2024-09-18T08:27:47.564234+0000 mon.a (mon.0) 701 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:48.873 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:48 smithi070 bash[22844]: audit 2024-09-18T08:27:47.564234+0000 mon.a (mon.0) 701 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:48.873 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:48 smithi070 bash[22844]: audit 2024-09-18T08:27:47.572178+0000 mon.a (mon.0) 702 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:48.873 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:48 smithi070 bash[22844]: audit 2024-09-18T08:27:47.572178+0000 mon.a (mon.0) 702 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:48.873 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:48 smithi070 bash[22844]: cephadm 2024-09-18T08:27:47.573434+0000 mgr.a (mgr.14152) 405 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-09-18T08:27:48.873 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:48 smithi070 bash[22844]: cephadm 2024-09-18T08:27:47.573434+0000 mgr.a (mgr.14152) 405 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-09-18T08:27:48.873 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:48 smithi070 bash[22844]: audit 2024-09-18T08:27:47.573968+0000 mon.a (mon.0) 703 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-18T08:27:48.873 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:48 smithi070 bash[22844]: audit 2024-09-18T08:27:47.573968+0000 mon.a (mon.0) 703 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-18T08:27:48.874 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:48 smithi070 bash[22844]: audit 2024-09-18T08:27:47.575574+0000 mon.a (mon.0) 704 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-18T08:27:48.874 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:48 smithi070 bash[22844]: audit 2024-09-18T08:27:47.575574+0000 mon.a (mon.0) 704 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-18T08:27:48.874 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:48 smithi070 bash[22844]: audit 2024-09-18T08:27:47.576747+0000 mon.a (mon.0) 705 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:48.874 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:48 smithi070 bash[22844]: audit 2024-09-18T08:27:47.576747+0000 mon.a (mon.0) 705 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:48.874 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:48 smithi070 bash[22844]: cephadm 2024-09-18T08:27:47.578268+0000 mgr.a (mgr.14152) 406 : cephadm [INF] Reconfiguring daemon mgr.a on smithi070 2024-09-18T08:27:48.874 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:48 smithi070 bash[22844]: cephadm 2024-09-18T08:27:47.578268+0000 mgr.a (mgr.14152) 406 : cephadm [INF] Reconfiguring daemon mgr.a on smithi070 2024-09-18T08:27:50.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:50 smithi086 bash[24678]: cluster 2024-09-18T08:27:48.970026+0000 mgr.a (mgr.14152) 407 : cluster [DBG] pgmap v323: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:50.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:50 smithi086 bash[24678]: cluster 2024-09-18T08:27:48.970026+0000 mgr.a (mgr.14152) 407 : cluster [DBG] pgmap v323: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:50.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:50 smithi086 bash[24678]: audit 2024-09-18T08:27:49.553867+0000 mon.a (mon.0) 706 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:50.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:50 smithi086 bash[24678]: audit 2024-09-18T08:27:49.553867+0000 mon.a (mon.0) 706 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:50.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:50 smithi086 bash[24678]: audit 2024-09-18T08:27:49.560292+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:50.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:50 smithi086 bash[24678]: audit 2024-09-18T08:27:49.560292+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:50.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:50 smithi086 bash[24678]: cephadm 2024-09-18T08:27:49.561220+0000 mgr.a (mgr.14152) 408 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-09-18T08:27:50.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:50 smithi086 bash[24678]: cephadm 2024-09-18T08:27:49.561220+0000 mgr.a (mgr.14152) 408 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-09-18T08:27:50.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:50 smithi086 bash[24678]: audit 2024-09-18T08:27:49.561662+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-18T08:27:50.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:50 smithi086 bash[24678]: audit 2024-09-18T08:27:49.561662+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-18T08:27:50.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:50 smithi086 bash[24678]: audit 2024-09-18T08:27:49.563244+0000 mon.a (mon.0) 709 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:50.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:50 smithi086 bash[24678]: audit 2024-09-18T08:27:49.563244+0000 mon.a (mon.0) 709 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:50.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:50 smithi086 bash[24678]: cephadm 2024-09-18T08:27:49.565541+0000 mgr.a (mgr.14152) 409 : cephadm [INF] Reconfiguring daemon osd.0 on smithi070 2024-09-18T08:27:50.839 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:50 smithi086 bash[24678]: cephadm 2024-09-18T08:27:49.565541+0000 mgr.a (mgr.14152) 409 : cephadm [INF] Reconfiguring daemon osd.0 on smithi070 2024-09-18T08:27:50.938 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:50 smithi070 bash[22844]: cluster 2024-09-18T08:27:48.970026+0000 mgr.a (mgr.14152) 407 : cluster [DBG] pgmap v323: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:50.939 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:50 smithi070 bash[22844]: cluster 2024-09-18T08:27:48.970026+0000 mgr.a (mgr.14152) 407 : cluster [DBG] pgmap v323: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:50.939 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:50 smithi070 bash[22844]: audit 2024-09-18T08:27:49.553867+0000 mon.a (mon.0) 706 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:50.939 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:50 smithi070 bash[22844]: audit 2024-09-18T08:27:49.553867+0000 mon.a (mon.0) 706 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:50.939 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:50 smithi070 bash[22844]: audit 2024-09-18T08:27:49.560292+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:50.939 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:50 smithi070 bash[22844]: audit 2024-09-18T08:27:49.560292+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:50.939 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:50 smithi070 bash[22844]: cephadm 2024-09-18T08:27:49.561220+0000 mgr.a (mgr.14152) 408 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-09-18T08:27:50.939 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:50 smithi070 bash[22844]: cephadm 2024-09-18T08:27:49.561220+0000 mgr.a (mgr.14152) 408 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-09-18T08:27:50.939 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:50 smithi070 bash[22844]: audit 2024-09-18T08:27:49.561662+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-18T08:27:50.939 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:50 smithi070 bash[22844]: audit 2024-09-18T08:27:49.561662+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-18T08:27:50.939 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:50 smithi070 bash[22844]: audit 2024-09-18T08:27:49.563244+0000 mon.a (mon.0) 709 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:50.939 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:50 smithi070 bash[22844]: audit 2024-09-18T08:27:49.563244+0000 mon.a (mon.0) 709 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:50.939 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:50 smithi070 bash[22844]: cephadm 2024-09-18T08:27:49.565541+0000 mgr.a (mgr.14152) 409 : cephadm [INF] Reconfiguring daemon osd.0 on smithi070 2024-09-18T08:27:50.939 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:50 smithi070 bash[22844]: cephadm 2024-09-18T08:27:49.565541+0000 mgr.a (mgr.14152) 409 : cephadm [INF] Reconfiguring daemon osd.0 on smithi070 2024-09-18T08:27:52.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:52 smithi070 bash[22844]: cluster 2024-09-18T08:27:50.970395+0000 mgr.a (mgr.14152) 410 : cluster [DBG] pgmap v324: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:52.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:52 smithi070 bash[22844]: cluster 2024-09-18T08:27:50.970395+0000 mgr.a (mgr.14152) 410 : cluster [DBG] pgmap v324: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:52.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:52 smithi070 bash[22844]: audit 2024-09-18T08:27:51.712420+0000 mon.a (mon.0) 710 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:52.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:52 smithi070 bash[22844]: audit 2024-09-18T08:27:51.712420+0000 mon.a (mon.0) 710 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:52.975 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:52 smithi070 bash[22844]: audit 2024-09-18T08:27:51.718452+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:52.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:52 smithi070 bash[22844]: audit 2024-09-18T08:27:51.718452+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:52.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:52 smithi070 bash[22844]: cephadm 2024-09-18T08:27:51.719481+0000 mgr.a (mgr.14152) 411 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-09-18T08:27:52.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:52 smithi070 bash[22844]: cephadm 2024-09-18T08:27:51.719481+0000 mgr.a (mgr.14152) 411 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-09-18T08:27:52.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:52 smithi070 bash[22844]: audit 2024-09-18T08:27:51.719826+0000 mon.a (mon.0) 712 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-18T08:27:52.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:52 smithi070 bash[22844]: audit 2024-09-18T08:27:51.719826+0000 mon.a (mon.0) 712 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-18T08:27:52.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:52 smithi070 bash[22844]: audit 2024-09-18T08:27:51.720948+0000 mon.a (mon.0) 713 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:52.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:52 smithi070 bash[22844]: audit 2024-09-18T08:27:51.720948+0000 mon.a (mon.0) 713 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:52.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:52 smithi070 bash[22844]: cephadm 2024-09-18T08:27:51.722483+0000 mgr.a (mgr.14152) 412 : cephadm [INF] Reconfiguring daemon osd.1 on smithi070 2024-09-18T08:27:52.976 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:52 smithi070 bash[22844]: cephadm 2024-09-18T08:27:51.722483+0000 mgr.a (mgr.14152) 412 : cephadm [INF] Reconfiguring daemon osd.1 on smithi070 2024-09-18T08:27:53.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:52 smithi086 bash[24678]: cluster 2024-09-18T08:27:50.970395+0000 mgr.a (mgr.14152) 410 : cluster [DBG] pgmap v324: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:53.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:52 smithi086 bash[24678]: cluster 2024-09-18T08:27:50.970395+0000 mgr.a (mgr.14152) 410 : cluster [DBG] pgmap v324: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:53.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:52 smithi086 bash[24678]: audit 2024-09-18T08:27:51.712420+0000 mon.a (mon.0) 710 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:53.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:52 smithi086 bash[24678]: audit 2024-09-18T08:27:51.712420+0000 mon.a (mon.0) 710 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:53.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:52 smithi086 bash[24678]: audit 2024-09-18T08:27:51.718452+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:53.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:52 smithi086 bash[24678]: audit 2024-09-18T08:27:51.718452+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:53.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:52 smithi086 bash[24678]: cephadm 2024-09-18T08:27:51.719481+0000 mgr.a (mgr.14152) 411 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-09-18T08:27:53.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:52 smithi086 bash[24678]: cephadm 2024-09-18T08:27:51.719481+0000 mgr.a (mgr.14152) 411 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-09-18T08:27:53.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:52 smithi086 bash[24678]: audit 2024-09-18T08:27:51.719826+0000 mon.a (mon.0) 712 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-18T08:27:53.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:52 smithi086 bash[24678]: audit 2024-09-18T08:27:51.719826+0000 mon.a (mon.0) 712 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-18T08:27:53.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:52 smithi086 bash[24678]: audit 2024-09-18T08:27:51.720948+0000 mon.a (mon.0) 713 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:53.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:52 smithi086 bash[24678]: audit 2024-09-18T08:27:51.720948+0000 mon.a (mon.0) 713 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:53.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:52 smithi086 bash[24678]: cephadm 2024-09-18T08:27:51.722483+0000 mgr.a (mgr.14152) 412 : cephadm [INF] Reconfiguring daemon osd.1 on smithi070 2024-09-18T08:27:53.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:52 smithi086 bash[24678]: cephadm 2024-09-18T08:27:51.722483+0000 mgr.a (mgr.14152) 412 : cephadm [INF] Reconfiguring daemon osd.1 on smithi070 2024-09-18T08:27:55.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:54 smithi070 bash[22844]: cluster 2024-09-18T08:27:52.970899+0000 mgr.a (mgr.14152) 413 : cluster [DBG] pgmap v325: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:55.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:54 smithi070 bash[22844]: cluster 2024-09-18T08:27:52.970899+0000 mgr.a (mgr.14152) 413 : cluster [DBG] pgmap v325: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:55.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:54 smithi070 bash[22844]: audit 2024-09-18T08:27:53.874578+0000 mon.a (mon.0) 714 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:55.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:54 smithi070 bash[22844]: audit 2024-09-18T08:27:53.874578+0000 mon.a (mon.0) 714 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:55.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:54 smithi070 bash[22844]: audit 2024-09-18T08:27:53.881270+0000 mon.a (mon.0) 715 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:55.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:54 smithi070 bash[22844]: audit 2024-09-18T08:27:53.881270+0000 mon.a (mon.0) 715 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:55.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:54 smithi070 bash[22844]: cephadm 2024-09-18T08:27:53.882695+0000 mgr.a (mgr.14152) 414 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-18T08:27:55.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:54 smithi070 bash[22844]: cephadm 2024-09-18T08:27:53.882695+0000 mgr.a (mgr.14152) 414 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-18T08:27:55.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:54 smithi070 bash[22844]: audit 2024-09-18T08:27:53.883263+0000 mon.a (mon.0) 716 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:27:55.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:54 smithi070 bash[22844]: audit 2024-09-18T08:27:53.883263+0000 mon.a (mon.0) 716 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:27:55.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:54 smithi070 bash[22844]: audit 2024-09-18T08:27:53.884825+0000 mon.a (mon.0) 717 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:27:55.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:54 smithi070 bash[22844]: audit 2024-09-18T08:27:53.884825+0000 mon.a (mon.0) 717 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:27:55.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:54 smithi070 bash[22844]: audit 2024-09-18T08:27:53.886309+0000 mon.a (mon.0) 718 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:55.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:54 smithi070 bash[22844]: audit 2024-09-18T08:27:53.886309+0000 mon.a (mon.0) 718 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:55.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:54 smithi070 bash[22844]: cephadm 2024-09-18T08:27:53.887986+0000 mgr.a (mgr.14152) 415 : cephadm [INF] Reconfiguring daemon mon.b on smithi086 2024-09-18T08:27:55.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:54 smithi070 bash[22844]: cephadm 2024-09-18T08:27:53.887986+0000 mgr.a (mgr.14152) 415 : cephadm [INF] Reconfiguring daemon mon.b on smithi086 2024-09-18T08:27:55.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:54 smithi086 bash[24678]: cluster 2024-09-18T08:27:52.970899+0000 mgr.a (mgr.14152) 413 : cluster [DBG] pgmap v325: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:55.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:54 smithi086 bash[24678]: cluster 2024-09-18T08:27:52.970899+0000 mgr.a (mgr.14152) 413 : cluster [DBG] pgmap v325: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:55.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:54 smithi086 bash[24678]: audit 2024-09-18T08:27:53.874578+0000 mon.a (mon.0) 714 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:55.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:54 smithi086 bash[24678]: audit 2024-09-18T08:27:53.874578+0000 mon.a (mon.0) 714 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:55.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:54 smithi086 bash[24678]: audit 2024-09-18T08:27:53.881270+0000 mon.a (mon.0) 715 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:55.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:54 smithi086 bash[24678]: audit 2024-09-18T08:27:53.881270+0000 mon.a (mon.0) 715 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:55.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:54 smithi086 bash[24678]: cephadm 2024-09-18T08:27:53.882695+0000 mgr.a (mgr.14152) 414 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-18T08:27:55.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:54 smithi086 bash[24678]: cephadm 2024-09-18T08:27:53.882695+0000 mgr.a (mgr.14152) 414 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-18T08:27:55.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:54 smithi086 bash[24678]: audit 2024-09-18T08:27:53.883263+0000 mon.a (mon.0) 716 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:27:55.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:54 smithi086 bash[24678]: audit 2024-09-18T08:27:53.883263+0000 mon.a (mon.0) 716 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-18T08:27:55.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:54 smithi086 bash[24678]: audit 2024-09-18T08:27:53.884825+0000 mon.a (mon.0) 717 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:27:55.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:54 smithi086 bash[24678]: audit 2024-09-18T08:27:53.884825+0000 mon.a (mon.0) 717 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-18T08:27:55.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:54 smithi086 bash[24678]: audit 2024-09-18T08:27:53.886309+0000 mon.a (mon.0) 718 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:55.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:54 smithi086 bash[24678]: audit 2024-09-18T08:27:53.886309+0000 mon.a (mon.0) 718 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:55.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:54 smithi086 bash[24678]: cephadm 2024-09-18T08:27:53.887986+0000 mgr.a (mgr.14152) 415 : cephadm [INF] Reconfiguring daemon mon.b on smithi086 2024-09-18T08:27:55.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:54 smithi086 bash[24678]: cephadm 2024-09-18T08:27:53.887986+0000 mgr.a (mgr.14152) 415 : cephadm [INF] Reconfiguring daemon mon.b on smithi086 2024-09-18T08:27:57.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:56 smithi086 bash[24678]: cluster 2024-09-18T08:27:54.971428+0000 mgr.a (mgr.14152) 416 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:57.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:56 smithi086 bash[24678]: cluster 2024-09-18T08:27:54.971428+0000 mgr.a (mgr.14152) 416 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:57.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:56 smithi086 bash[24678]: audit 2024-09-18T08:27:56.116261+0000 mon.a (mon.0) 719 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:57.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:56 smithi086 bash[24678]: audit 2024-09-18T08:27:56.116261+0000 mon.a (mon.0) 719 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:57.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:56 smithi086 bash[24678]: audit 2024-09-18T08:27:56.124307+0000 mon.a (mon.0) 720 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:57.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:56 smithi086 bash[24678]: audit 2024-09-18T08:27:56.124307+0000 mon.a (mon.0) 720 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:57.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:56 smithi086 bash[24678]: audit 2024-09-18T08:27:56.126630+0000 mon.a (mon.0) 721 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-18T08:27:57.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:56 smithi086 bash[24678]: audit 2024-09-18T08:27:56.126630+0000 mon.a (mon.0) 721 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-18T08:27:57.088 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:56 smithi086 bash[24678]: audit 2024-09-18T08:27:56.128539+0000 mon.a (mon.0) 722 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-18T08:27:57.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:56 smithi086 bash[24678]: audit 2024-09-18T08:27:56.128539+0000 mon.a (mon.0) 722 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-18T08:27:57.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:56 smithi086 bash[24678]: audit 2024-09-18T08:27:56.130190+0000 mon.a (mon.0) 723 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:57.089 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:56 smithi086 bash[24678]: audit 2024-09-18T08:27:56.130190+0000 mon.a (mon.0) 723 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:57.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:56 smithi070 bash[22844]: cluster 2024-09-18T08:27:54.971428+0000 mgr.a (mgr.14152) 416 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:57.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:56 smithi070 bash[22844]: cluster 2024-09-18T08:27:54.971428+0000 mgr.a (mgr.14152) 416 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:57.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:56 smithi070 bash[22844]: audit 2024-09-18T08:27:56.116261+0000 mon.a (mon.0) 719 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:57.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:56 smithi070 bash[22844]: audit 2024-09-18T08:27:56.116261+0000 mon.a (mon.0) 719 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:57.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:56 smithi070 bash[22844]: audit 2024-09-18T08:27:56.124307+0000 mon.a (mon.0) 720 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:57.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:56 smithi070 bash[22844]: audit 2024-09-18T08:27:56.124307+0000 mon.a (mon.0) 720 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:57.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:56 smithi070 bash[22844]: audit 2024-09-18T08:27:56.126630+0000 mon.a (mon.0) 721 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-18T08:27:57.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:56 smithi070 bash[22844]: audit 2024-09-18T08:27:56.126630+0000 mon.a (mon.0) 721 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-18T08:27:57.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:56 smithi070 bash[22844]: audit 2024-09-18T08:27:56.128539+0000 mon.a (mon.0) 722 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-18T08:27:57.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:56 smithi070 bash[22844]: audit 2024-09-18T08:27:56.128539+0000 mon.a (mon.0) 722 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-18T08:27:57.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:56 smithi070 bash[22844]: audit 2024-09-18T08:27:56.130190+0000 mon.a (mon.0) 723 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:57.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:56 smithi070 bash[22844]: audit 2024-09-18T08:27:56.130190+0000 mon.a (mon.0) 723 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:58.224 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:57 smithi070 bash[22844]: cephadm 2024-09-18T08:27:56.125958+0000 mgr.a (mgr.14152) 417 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-09-18T08:27:58.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:57 smithi070 bash[22844]: cephadm 2024-09-18T08:27:56.125958+0000 mgr.a (mgr.14152) 417 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-09-18T08:27:58.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:57 smithi070 bash[22844]: cephadm 2024-09-18T08:27:56.132060+0000 mgr.a (mgr.14152) 418 : cephadm [INF] Reconfiguring daemon mgr.b on smithi086 2024-09-18T08:27:58.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:57 smithi070 bash[22844]: cephadm 2024-09-18T08:27:56.132060+0000 mgr.a (mgr.14152) 418 : cephadm [INF] Reconfiguring daemon mgr.b on smithi086 2024-09-18T08:27:58.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:57 smithi086 bash[24678]: cephadm 2024-09-18T08:27:56.125958+0000 mgr.a (mgr.14152) 417 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-09-18T08:27:58.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:57 smithi086 bash[24678]: cephadm 2024-09-18T08:27:56.125958+0000 mgr.a (mgr.14152) 417 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-09-18T08:27:58.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:57 smithi086 bash[24678]: cephadm 2024-09-18T08:27:56.132060+0000 mgr.a (mgr.14152) 418 : cephadm [INF] Reconfiguring daemon mgr.b on smithi086 2024-09-18T08:27:58.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:57 smithi086 bash[24678]: cephadm 2024-09-18T08:27:56.132060+0000 mgr.a (mgr.14152) 418 : cephadm [INF] Reconfiguring daemon mgr.b on smithi086 2024-09-18T08:27:59.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:58 smithi070 bash[22844]: cluster 2024-09-18T08:27:56.971935+0000 mgr.a (mgr.14152) 419 : cluster [DBG] pgmap v327: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:59.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:58 smithi070 bash[22844]: cluster 2024-09-18T08:27:56.971935+0000 mgr.a (mgr.14152) 419 : cluster [DBG] pgmap v327: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:59.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:58 smithi070 bash[22844]: audit 2024-09-18T08:27:58.323412+0000 mon.a (mon.0) 724 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:59.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:58 smithi070 bash[22844]: audit 2024-09-18T08:27:58.323412+0000 mon.a (mon.0) 724 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:59.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:58 smithi070 bash[22844]: audit 2024-09-18T08:27:58.331908+0000 mon.a (mon.0) 725 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:59.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:58 smithi070 bash[22844]: audit 2024-09-18T08:27:58.331908+0000 mon.a (mon.0) 725 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:59.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:58 smithi070 bash[22844]: audit 2024-09-18T08:27:58.334083+0000 mon.a (mon.0) 726 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-18T08:27:59.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:58 smithi070 bash[22844]: audit 2024-09-18T08:27:58.334083+0000 mon.a (mon.0) 726 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-18T08:27:59.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:58 smithi070 bash[22844]: audit 2024-09-18T08:27:58.335866+0000 mon.a (mon.0) 727 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:59.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:58 smithi070 bash[22844]: audit 2024-09-18T08:27:58.335866+0000 mon.a (mon.0) 727 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:59.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:58 smithi086 bash[24678]: cluster 2024-09-18T08:27:56.971935+0000 mgr.a (mgr.14152) 419 : cluster [DBG] pgmap v327: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:59.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:58 smithi086 bash[24678]: cluster 2024-09-18T08:27:56.971935+0000 mgr.a (mgr.14152) 419 : cluster [DBG] pgmap v327: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:27:59.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:58 smithi086 bash[24678]: audit 2024-09-18T08:27:58.323412+0000 mon.a (mon.0) 724 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:59.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:58 smithi086 bash[24678]: audit 2024-09-18T08:27:58.323412+0000 mon.a (mon.0) 724 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:59.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:58 smithi086 bash[24678]: audit 2024-09-18T08:27:58.331908+0000 mon.a (mon.0) 725 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:59.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:58 smithi086 bash[24678]: audit 2024-09-18T08:27:58.331908+0000 mon.a (mon.0) 725 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:27:59.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:58 smithi086 bash[24678]: audit 2024-09-18T08:27:58.334083+0000 mon.a (mon.0) 726 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-18T08:27:59.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:58 smithi086 bash[24678]: audit 2024-09-18T08:27:58.334083+0000 mon.a (mon.0) 726 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-18T08:27:59.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:58 smithi086 bash[24678]: audit 2024-09-18T08:27:58.335866+0000 mon.a (mon.0) 727 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:27:59.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:58 smithi086 bash[24678]: audit 2024-09-18T08:27:58.335866+0000 mon.a (mon.0) 727 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:28:00.064 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:59 smithi086 bash[24678]: cephadm 2024-09-18T08:27:58.333485+0000 mgr.a (mgr.14152) 420 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-09-18T08:28:00.064 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:59 smithi086 bash[24678]: cephadm 2024-09-18T08:27:58.333485+0000 mgr.a (mgr.14152) 420 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-09-18T08:28:00.064 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:59 smithi086 bash[24678]: cephadm 2024-09-18T08:27:58.338732+0000 mgr.a (mgr.14152) 421 : cephadm [INF] Reconfiguring daemon osd.2 on smithi086 2024-09-18T08:28:00.064 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:27:59 smithi086 bash[24678]: cephadm 2024-09-18T08:27:58.338732+0000 mgr.a (mgr.14152) 421 : cephadm [INF] Reconfiguring daemon osd.2 on smithi086 2024-09-18T08:28:00.224 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:59 smithi070 bash[22844]: cephadm 2024-09-18T08:27:58.333485+0000 mgr.a (mgr.14152) 420 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-09-18T08:28:00.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:59 smithi070 bash[22844]: cephadm 2024-09-18T08:27:58.333485+0000 mgr.a (mgr.14152) 420 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-09-18T08:28:00.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:59 smithi070 bash[22844]: cephadm 2024-09-18T08:27:58.338732+0000 mgr.a (mgr.14152) 421 : cephadm [INF] Reconfiguring daemon osd.2 on smithi086 2024-09-18T08:28:00.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:27:59 smithi070 bash[22844]: cephadm 2024-09-18T08:27:58.338732+0000 mgr.a (mgr.14152) 421 : cephadm [INF] Reconfiguring daemon osd.2 on smithi086 2024-09-18T08:28:01.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:00 smithi070 bash[22844]: cluster 2024-09-18T08:27:58.972486+0000 mgr.a (mgr.14152) 422 : cluster [DBG] pgmap v328: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:01.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:00 smithi070 bash[22844]: cluster 2024-09-18T08:27:58.972486+0000 mgr.a (mgr.14152) 422 : cluster [DBG] pgmap v328: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:01.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:00 smithi070 bash[22844]: audit 2024-09-18T08:28:00.522287+0000 mon.a (mon.0) 728 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:28:01.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:00 smithi070 bash[22844]: audit 2024-09-18T08:28:00.522287+0000 mon.a (mon.0) 728 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:28:01.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:00 smithi070 bash[22844]: audit 2024-09-18T08:28:00.530954+0000 mon.a (mon.0) 729 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:28:01.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:00 smithi070 bash[22844]: audit 2024-09-18T08:28:00.530954+0000 mon.a (mon.0) 729 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:28:01.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:00 smithi070 bash[22844]: audit 2024-09-18T08:28:00.533279+0000 mon.a (mon.0) 730 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-18T08:28:01.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:00 smithi070 bash[22844]: audit 2024-09-18T08:28:00.533279+0000 mon.a (mon.0) 730 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-18T08:28:01.226 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:00 smithi070 bash[22844]: audit 2024-09-18T08:28:00.534958+0000 mon.a (mon.0) 731 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:28:01.227 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:00 smithi070 bash[22844]: audit 2024-09-18T08:28:00.534958+0000 mon.a (mon.0) 731 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:28:01.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:00 smithi086 bash[24678]: cluster 2024-09-18T08:27:58.972486+0000 mgr.a (mgr.14152) 422 : cluster [DBG] pgmap v328: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:01.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:00 smithi086 bash[24678]: cluster 2024-09-18T08:27:58.972486+0000 mgr.a (mgr.14152) 422 : cluster [DBG] pgmap v328: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:01.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:00 smithi086 bash[24678]: audit 2024-09-18T08:28:00.522287+0000 mon.a (mon.0) 728 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:28:01.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:00 smithi086 bash[24678]: audit 2024-09-18T08:28:00.522287+0000 mon.a (mon.0) 728 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:28:01.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:00 smithi086 bash[24678]: audit 2024-09-18T08:28:00.530954+0000 mon.a (mon.0) 729 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:28:01.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:00 smithi086 bash[24678]: audit 2024-09-18T08:28:00.530954+0000 mon.a (mon.0) 729 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:28:01.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:00 smithi086 bash[24678]: audit 2024-09-18T08:28:00.533279+0000 mon.a (mon.0) 730 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-18T08:28:01.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:00 smithi086 bash[24678]: audit 2024-09-18T08:28:00.533279+0000 mon.a (mon.0) 730 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-18T08:28:01.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:00 smithi086 bash[24678]: audit 2024-09-18T08:28:00.534958+0000 mon.a (mon.0) 731 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:28:01.339 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:00 smithi086 bash[24678]: audit 2024-09-18T08:28:00.534958+0000 mon.a (mon.0) 731 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:28:02.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:01 smithi070 bash[22844]: cephadm 2024-09-18T08:28:00.532728+0000 mgr.a (mgr.14152) 423 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-09-18T08:28:02.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:01 smithi070 bash[22844]: cephadm 2024-09-18T08:28:00.532728+0000 mgr.a (mgr.14152) 423 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-09-18T08:28:02.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:01 smithi070 bash[22844]: cephadm 2024-09-18T08:28:00.537505+0000 mgr.a (mgr.14152) 424 : cephadm [INF] Reconfiguring daemon osd.3 on smithi086 2024-09-18T08:28:02.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:01 smithi070 bash[22844]: cephadm 2024-09-18T08:28:00.537505+0000 mgr.a (mgr.14152) 424 : cephadm [INF] Reconfiguring daemon osd.3 on smithi086 2024-09-18T08:28:02.314 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:01 smithi086 bash[24678]: cephadm 2024-09-18T08:28:00.532728+0000 mgr.a (mgr.14152) 423 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-09-18T08:28:02.314 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:01 smithi086 bash[24678]: cephadm 2024-09-18T08:28:00.532728+0000 mgr.a (mgr.14152) 423 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-09-18T08:28:02.314 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:01 smithi086 bash[24678]: cephadm 2024-09-18T08:28:00.537505+0000 mgr.a (mgr.14152) 424 : cephadm [INF] Reconfiguring daemon osd.3 on smithi086 2024-09-18T08:28:02.314 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:01 smithi086 bash[24678]: cephadm 2024-09-18T08:28:00.537505+0000 mgr.a (mgr.14152) 424 : cephadm [INF] Reconfiguring daemon osd.3 on smithi086 2024-09-18T08:28:03.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:02 smithi070 bash[22844]: cluster 2024-09-18T08:28:00.973005+0000 mgr.a (mgr.14152) 425 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:03.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:02 smithi070 bash[22844]: cluster 2024-09-18T08:28:00.973005+0000 mgr.a (mgr.14152) 425 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:03.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:02 smithi070 bash[22844]: audit 2024-09-18T08:28:02.802737+0000 mon.a (mon.0) 732 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:28:03.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:02 smithi070 bash[22844]: audit 2024-09-18T08:28:02.802737+0000 mon.a (mon.0) 732 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:28:03.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:02 smithi070 bash[22844]: audit 2024-09-18T08:28:02.811136+0000 mon.a (mon.0) 733 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:28:03.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:02 smithi070 bash[22844]: audit 2024-09-18T08:28:02.811136+0000 mon.a (mon.0) 733 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:28:03.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:02 smithi070 bash[22844]: audit 2024-09-18T08:28:02.813825+0000 mon.a (mon.0) 734 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:28:03.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:02 smithi070 bash[22844]: audit 2024-09-18T08:28:02.813825+0000 mon.a (mon.0) 734 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:28:03.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:02 smithi086 bash[24678]: cluster 2024-09-18T08:28:00.973005+0000 mgr.a (mgr.14152) 425 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:03.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:02 smithi086 bash[24678]: cluster 2024-09-18T08:28:00.973005+0000 mgr.a (mgr.14152) 425 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:03.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:02 smithi086 bash[24678]: audit 2024-09-18T08:28:02.802737+0000 mon.a (mon.0) 732 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:28:03.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:02 smithi086 bash[24678]: audit 2024-09-18T08:28:02.802737+0000 mon.a (mon.0) 732 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:28:03.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:02 smithi086 bash[24678]: audit 2024-09-18T08:28:02.811136+0000 mon.a (mon.0) 733 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:28:03.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:02 smithi086 bash[24678]: audit 2024-09-18T08:28:02.811136+0000 mon.a (mon.0) 733 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:28:03.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:02 smithi086 bash[24678]: audit 2024-09-18T08:28:02.813825+0000 mon.a (mon.0) 734 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:28:03.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:02 smithi086 bash[24678]: audit 2024-09-18T08:28:02.813825+0000 mon.a (mon.0) 734 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-18T08:28:04.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:03 smithi070 bash[22844]: audit 2024-09-18T08:28:03.534945+0000 mon.a (mon.0) 735 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:28:04.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:03 smithi070 bash[22844]: audit 2024-09-18T08:28:03.534945+0000 mon.a (mon.0) 735 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:28:04.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:03 smithi070 bash[22844]: audit 2024-09-18T08:28:03.536570+0000 mon.a (mon.0) 736 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:28:04.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:03 smithi070 bash[22844]: audit 2024-09-18T08:28:03.536570+0000 mon.a (mon.0) 736 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:28:04.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:03 smithi070 bash[22844]: audit 2024-09-18T08:28:03.545647+0000 mon.a (mon.0) 737 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:28:04.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:03 smithi070 bash[22844]: audit 2024-09-18T08:28:03.545647+0000 mon.a (mon.0) 737 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:28:04.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:03 smithi086 bash[24678]: audit 2024-09-18T08:28:03.534945+0000 mon.a (mon.0) 735 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:28:04.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:03 smithi086 bash[24678]: audit 2024-09-18T08:28:03.534945+0000 mon.a (mon.0) 735 : audit [DBG] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-18T08:28:04.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:03 smithi086 bash[24678]: audit 2024-09-18T08:28:03.536570+0000 mon.a (mon.0) 736 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:28:04.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:03 smithi086 bash[24678]: audit 2024-09-18T08:28:03.536570+0000 mon.a (mon.0) 736 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-18T08:28:04.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:03 smithi086 bash[24678]: audit 2024-09-18T08:28:03.545647+0000 mon.a (mon.0) 737 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:28:04.338 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:03 smithi086 bash[24678]: audit 2024-09-18T08:28:03.545647+0000 mon.a (mon.0) 737 : audit [INF] from='mgr.14152 172.21.15.70:0/2494746088' entity='mgr.a' 2024-09-18T08:28:05.224 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:04 smithi070 bash[22844]: cluster 2024-09-18T08:28:02.973533+0000 mgr.a (mgr.14152) 426 : cluster [DBG] pgmap v330: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:05.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:04 smithi070 bash[22844]: cluster 2024-09-18T08:28:02.973533+0000 mgr.a (mgr.14152) 426 : cluster [DBG] pgmap v330: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:05.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:04 smithi086 bash[24678]: cluster 2024-09-18T08:28:02.973533+0000 mgr.a (mgr.14152) 426 : cluster [DBG] pgmap v330: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:05.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:04 smithi086 bash[24678]: cluster 2024-09-18T08:28:02.973533+0000 mgr.a (mgr.14152) 426 : cluster [DBG] pgmap v330: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:07.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:06 smithi070 bash[22844]: cluster 2024-09-18T08:28:04.974065+0000 mgr.a (mgr.14152) 427 : cluster [DBG] pgmap v331: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:07.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:06 smithi070 bash[22844]: cluster 2024-09-18T08:28:04.974065+0000 mgr.a (mgr.14152) 427 : cluster [DBG] pgmap v331: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:07.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:06 smithi086 bash[24678]: cluster 2024-09-18T08:28:04.974065+0000 mgr.a (mgr.14152) 427 : cluster [DBG] pgmap v331: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:07.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:06 smithi086 bash[24678]: cluster 2024-09-18T08:28:04.974065+0000 mgr.a (mgr.14152) 427 : cluster [DBG] pgmap v331: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:09.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:08 smithi070 bash[22844]: cluster 2024-09-18T08:28:06.974649+0000 mgr.a (mgr.14152) 428 : cluster [DBG] pgmap v332: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:09.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:08 smithi070 bash[22844]: cluster 2024-09-18T08:28:06.974649+0000 mgr.a (mgr.14152) 428 : cluster [DBG] pgmap v332: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:09.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:08 smithi086 bash[24678]: cluster 2024-09-18T08:28:06.974649+0000 mgr.a (mgr.14152) 428 : cluster [DBG] pgmap v332: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:09.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:08 smithi086 bash[24678]: cluster 2024-09-18T08:28:06.974649+0000 mgr.a (mgr.14152) 428 : cluster [DBG] pgmap v332: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:11.224 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:10 smithi070 bash[22844]: cluster 2024-09-18T08:28:08.975296+0000 mgr.a (mgr.14152) 429 : cluster [DBG] pgmap v333: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:11.224 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:10 smithi070 bash[22844]: cluster 2024-09-18T08:28:08.975296+0000 mgr.a (mgr.14152) 429 : cluster [DBG] pgmap v333: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:11.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:10 smithi086 bash[24678]: cluster 2024-09-18T08:28:08.975296+0000 mgr.a (mgr.14152) 429 : cluster [DBG] pgmap v333: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:11.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:10 smithi086 bash[24678]: cluster 2024-09-18T08:28:08.975296+0000 mgr.a (mgr.14152) 429 : cluster [DBG] pgmap v333: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:13.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:12 smithi070 bash[22844]: cluster 2024-09-18T08:28:10.975912+0000 mgr.a (mgr.14152) 430 : cluster [DBG] pgmap v334: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:13.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:12 smithi070 bash[22844]: cluster 2024-09-18T08:28:10.975912+0000 mgr.a (mgr.14152) 430 : cluster [DBG] pgmap v334: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:13.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:12 smithi086 bash[24678]: cluster 2024-09-18T08:28:10.975912+0000 mgr.a (mgr.14152) 430 : cluster [DBG] pgmap v334: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:13.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:12 smithi086 bash[24678]: cluster 2024-09-18T08:28:10.975912+0000 mgr.a (mgr.14152) 430 : cluster [DBG] pgmap v334: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:15.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:14 smithi070 bash[22844]: cluster 2024-09-18T08:28:12.976392+0000 mgr.a (mgr.14152) 431 : cluster [DBG] pgmap v335: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:15.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:14 smithi070 bash[22844]: cluster 2024-09-18T08:28:12.976392+0000 mgr.a (mgr.14152) 431 : cluster [DBG] pgmap v335: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:15.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:14 smithi086 bash[24678]: cluster 2024-09-18T08:28:12.976392+0000 mgr.a (mgr.14152) 431 : cluster [DBG] pgmap v335: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:15.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:14 smithi086 bash[24678]: cluster 2024-09-18T08:28:12.976392+0000 mgr.a (mgr.14152) 431 : cluster [DBG] pgmap v335: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-09-18T08:28:15.454 INFO:teuthology.orchestra.run.smithi070.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-18T08:28:15.744 INFO:teuthology.orchestra.run.smithi070.stderr:18 2024-09-18T08:28:15.757 INFO:teuthology.orchestra.run.smithi070.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-18T08:28:15.770 INFO:teuthology.orchestra.run.smithi070.stderr:++ cat crushmap.txt 2024-09-18T08:28:15.771 INFO:teuthology.orchestra.run.smithi070.stderr:+ CRUSH_MAP='# begin crush map 2024-09-18T08:28:15.771 INFO:teuthology.orchestra.run.smithi070.stderr:tunable choose_local_tries 0 2024-09-18T08:28:15.771 INFO:teuthology.orchestra.run.smithi070.stderr:tunable choose_local_fallback_tries 0 2024-09-18T08:28:15.771 INFO:teuthology.orchestra.run.smithi070.stderr:tunable choose_total_tries 50 2024-09-18T08:28:15.771 INFO:teuthology.orchestra.run.smithi070.stderr:tunable chooseleaf_descend_once 1 2024-09-18T08:28:15.771 INFO:teuthology.orchestra.run.smithi070.stderr:tunable chooseleaf_vary_r 1 2024-09-18T08:28:15.771 INFO:teuthology.orchestra.run.smithi070.stderr:tunable chooseleaf_stable 1 2024-09-18T08:28:15.771 INFO:teuthology.orchestra.run.smithi070.stderr:tunable straw_calc_version 1 2024-09-18T08:28:15.771 INFO:teuthology.orchestra.run.smithi070.stderr:tunable allowed_bucket_algs 54 2024-09-18T08:28:15.771 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-18T08:28:15.772 INFO:teuthology.orchestra.run.smithi070.stderr:# devices 2024-09-18T08:28:15.772 INFO:teuthology.orchestra.run.smithi070.stderr:device 0 osd.0 class ssd 2024-09-18T08:28:15.772 INFO:teuthology.orchestra.run.smithi070.stderr:device 1 osd.1 class ssd 2024-09-18T08:28:15.772 INFO:teuthology.orchestra.run.smithi070.stderr:device 2 osd.2 class ssd 2024-09-18T08:28:15.772 INFO:teuthology.orchestra.run.smithi070.stderr:device 3 osd.3 class ssd 2024-09-18T08:28:15.772 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-18T08:28:15.772 INFO:teuthology.orchestra.run.smithi070.stderr:# types 2024-09-18T08:28:15.772 INFO:teuthology.orchestra.run.smithi070.stderr:type 0 osd 2024-09-18T08:28:15.772 INFO:teuthology.orchestra.run.smithi070.stderr:type 1 host 2024-09-18T08:28:15.772 INFO:teuthology.orchestra.run.smithi070.stderr:type 2 chassis 2024-09-18T08:28:15.772 INFO:teuthology.orchestra.run.smithi070.stderr:type 3 rack 2024-09-18T08:28:15.772 INFO:teuthology.orchestra.run.smithi070.stderr:type 4 row 2024-09-18T08:28:15.773 INFO:teuthology.orchestra.run.smithi070.stderr:type 5 pdu 2024-09-18T08:28:15.773 INFO:teuthology.orchestra.run.smithi070.stderr:type 6 pod 2024-09-18T08:28:15.773 INFO:teuthology.orchestra.run.smithi070.stderr:type 7 room 2024-09-18T08:28:15.773 INFO:teuthology.orchestra.run.smithi070.stderr:type 8 datacenter 2024-09-18T08:28:15.773 INFO:teuthology.orchestra.run.smithi070.stderr:type 9 zone 2024-09-18T08:28:15.773 INFO:teuthology.orchestra.run.smithi070.stderr:type 10 region 2024-09-18T08:28:15.773 INFO:teuthology.orchestra.run.smithi070.stderr:type 11 root 2024-09-18T08:28:15.773 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-18T08:28:15.773 INFO:teuthology.orchestra.run.smithi070.stderr:# buckets 2024-09-18T08:28:15.773 INFO:teuthology.orchestra.run.smithi070.stderr:host smithi070 { 2024-09-18T08:28:15.773 INFO:teuthology.orchestra.run.smithi070.stderr: id -3 # do not change unnecessarily 2024-09-18T08:28:15.773 INFO:teuthology.orchestra.run.smithi070.stderr: id -4 class ssd # do not change unnecessarily 2024-09-18T08:28:15.774 INFO:teuthology.orchestra.run.smithi070.stderr: # weight 0.17459 2024-09-18T08:28:15.774 INFO:teuthology.orchestra.run.smithi070.stderr: alg straw2 2024-09-18T08:28:15.774 INFO:teuthology.orchestra.run.smithi070.stderr: hash 0 # rjenkins1 2024-09-18T08:28:15.774 INFO:teuthology.orchestra.run.smithi070.stderr: item osd.0 weight 0.08730 2024-09-18T08:28:15.774 INFO:teuthology.orchestra.run.smithi070.stderr: item osd.1 weight 0.08730 2024-09-18T08:28:15.774 INFO:teuthology.orchestra.run.smithi070.stderr:} 2024-09-18T08:28:15.774 INFO:teuthology.orchestra.run.smithi070.stderr:host smithi086 { 2024-09-18T08:28:15.774 INFO:teuthology.orchestra.run.smithi070.stderr: id -5 # do not change unnecessarily 2024-09-18T08:28:15.774 INFO:teuthology.orchestra.run.smithi070.stderr: id -6 class ssd # do not change unnecessarily 2024-09-18T08:28:15.774 INFO:teuthology.orchestra.run.smithi070.stderr: # weight 0.17459 2024-09-18T08:28:15.774 INFO:teuthology.orchestra.run.smithi070.stderr: alg straw2 2024-09-18T08:28:15.774 INFO:teuthology.orchestra.run.smithi070.stderr: hash 0 # rjenkins1 2024-09-18T08:28:15.774 INFO:teuthology.orchestra.run.smithi070.stderr: item osd.2 weight 0.08730 2024-09-18T08:28:15.774 INFO:teuthology.orchestra.run.smithi070.stderr: item osd.3 weight 0.08730 2024-09-18T08:28:15.775 INFO:teuthology.orchestra.run.smithi070.stderr:} 2024-09-18T08:28:15.775 INFO:teuthology.orchestra.run.smithi070.stderr:root default { 2024-09-18T08:28:15.775 INFO:teuthology.orchestra.run.smithi070.stderr: id -1 # do not change unnecessarily 2024-09-18T08:28:15.775 INFO:teuthology.orchestra.run.smithi070.stderr: id -2 class ssd # do not change unnecessarily 2024-09-18T08:28:15.775 INFO:teuthology.orchestra.run.smithi070.stderr: # weight 0.34918 2024-09-18T08:28:15.775 INFO:teuthology.orchestra.run.smithi070.stderr: alg straw2 2024-09-18T08:28:15.775 INFO:teuthology.orchestra.run.smithi070.stderr: hash 0 # rjenkins1 2024-09-18T08:28:15.775 INFO:teuthology.orchestra.run.smithi070.stderr: item smithi070 weight 0.17459 2024-09-18T08:28:15.775 INFO:teuthology.orchestra.run.smithi070.stderr: item smithi086 weight 0.17459 2024-09-18T08:28:15.775 INFO:teuthology.orchestra.run.smithi070.stderr:} 2024-09-18T08:28:15.775 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-18T08:28:15.775 INFO:teuthology.orchestra.run.smithi070.stderr:# rules 2024-09-18T08:28:15.775 INFO:teuthology.orchestra.run.smithi070.stderr:rule replicated_rule { 2024-09-18T08:28:15.775 INFO:teuthology.orchestra.run.smithi070.stderr: id 0 2024-09-18T08:28:15.776 INFO:teuthology.orchestra.run.smithi070.stderr: type replicated 2024-09-18T08:28:15.776 INFO:teuthology.orchestra.run.smithi070.stderr: step take default 2024-09-18T08:28:15.776 INFO:teuthology.orchestra.run.smithi070.stderr: step choose firstn 0 type osd 2024-09-18T08:28:15.776 INFO:teuthology.orchestra.run.smithi070.stderr: step emit 2024-09-18T08:28:15.776 INFO:teuthology.orchestra.run.smithi070.stderr:} 2024-09-18T08:28:15.776 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-18T08:28:15.776 INFO:teuthology.orchestra.run.smithi070.stderr:# end crush map' 2024-09-18T08:28:15.776 INFO:teuthology.orchestra.run.smithi070.stderr:+ grep -q smithi172 2024-09-18T08:28:16.224 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:15 smithi070 bash[22844]: audit 2024-09-18T08:28:15.752816+0000 mon.a (mon.0) 738 : audit [DBG] from='client.? 172.21.15.70:0/699119304' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-18T08:28:16.225 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:15 smithi070 bash[22844]: audit 2024-09-18T08:28:15.752816+0000 mon.a (mon.0) 738 : audit [DBG] from='client.? 172.21.15.70:0/699119304' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-18T08:28:16.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:15 smithi086 bash[24678]: audit 2024-09-18T08:28:15.752816+0000 mon.a (mon.0) 738 : audit [DBG] from='client.? 172.21.15.70:0/699119304' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-18T08:28:16.337 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:15 smithi086 bash[24678]: audit 2024-09-18T08:28:15.752816+0000 mon.a (mon.0) 738 : audit [DBG] from='client.? 172.21.15.70:0/699119304' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-18T08:28:16.346 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-18T08:28:16.357 INFO:tasks.cephadm:Teardown begin 2024-09-18T08:28:16.358 DEBUG:teuthology.orchestra.run.smithi070:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-18T08:28:16.373 DEBUG:teuthology.orchestra.run.smithi086:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-18T08:28:16.389 DEBUG:teuthology.orchestra.run.smithi172:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-18T08:28:16.404 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-18T08:28:16.404 DEBUG:teuthology.orchestra.run.smithi070:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-18T08:28:16.423 DEBUG:teuthology.orchestra.run.smithi086:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-18T08:28:16.437 DEBUG:teuthology.orchestra.run.smithi172:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-18T08:28:16.451 INFO:tasks.cephadm:Stopping all daemons... 2024-09-18T08:28:16.451 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-09-18T08:28:16.451 DEBUG:teuthology.orchestra.run.smithi070:> sudo systemctl stop ceph-1481c73c-7596-11ef-bceb-c7b262605968@mon.a 2024-09-18T08:28:16.609 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:16 smithi070 systemd[1]: Stopping Ceph mon.a for 1481c73c-7596-11ef-bceb-c7b262605968... 2024-09-18T08:28:16.886 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:16 smithi070 bash[22844]: debug 2024-09-18T08:28:16.613+0000 7fd88d495640 -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-18T08:28:16.886 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 18 08:28:16 smithi070 bash[22844]: debug 2024-09-18T08:28:16.613+0000 7fd88d495640 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-09-18T08:28:17.338 DEBUG:teuthology.orchestra.run.smithi070:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@mon.a.service' 2024-09-18T08:28:17.366 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T08:28:17.367 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-09-18T08:28:17.367 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-09-18T08:28:17.367 DEBUG:teuthology.orchestra.run.smithi086:> sudo systemctl stop ceph-1481c73c-7596-11ef-bceb-c7b262605968@mon.b 2024-09-18T08:28:17.837 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:17 smithi086 systemd[1]: Stopping Ceph mon.b for 1481c73c-7596-11ef-bceb-c7b262605968... 2024-09-18T08:28:17.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:17 smithi086 bash[24678]: debug 2024-09-18T08:28:17.497+0000 7fdd9ebcf640 -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-18T08:28:17.838 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 18 08:28:17 smithi086 bash[24678]: debug 2024-09-18T08:28:17.497+0000 7fdd9ebcf640 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-09-18T08:28:18.321 DEBUG:teuthology.orchestra.run.smithi086:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@mon.b.service' 2024-09-18T08:28:18.349 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T08:28:18.350 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-09-18T08:28:18.350 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-09-18T08:28:18.350 DEBUG:teuthology.orchestra.run.smithi172:> sudo systemctl stop ceph-1481c73c-7596-11ef-bceb-c7b262605968@mon.c 2024-09-18T08:28:18.374 DEBUG:teuthology.orchestra.run.smithi172:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@mon.c.service' 2024-09-18T08:28:18.443 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T08:28:18.444 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-09-18T08:28:18.444 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-09-18T08:28:18.444 DEBUG:teuthology.orchestra.run.smithi070:> sudo systemctl stop ceph-1481c73c-7596-11ef-bceb-c7b262605968@mgr.a 2024-09-18T08:28:18.724 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:28:18 smithi070 systemd[1]: Stopping Ceph mgr.a for 1481c73c-7596-11ef-bceb-c7b262605968... 2024-09-18T08:28:18.724 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:28:18 smithi070 bash[23095]: debug 2024-09-18T08:28:18.596+0000 7f6fc09ef640 -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-18T08:28:18.724 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 18 08:28:18 smithi070 bash[23095]: debug 2024-09-18T08:28:18.596+0000 7f6fc09ef640 -1 mgr handle_mgr_signal *** Got signal Terminated *** 2024-09-18T08:28:19.302 DEBUG:teuthology.orchestra.run.smithi070:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@mgr.a.service' 2024-09-18T08:28:19.325 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T08:28:19.325 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-09-18T08:28:19.325 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-09-18T08:28:19.325 DEBUG:teuthology.orchestra.run.smithi086:> sudo systemctl stop ceph-1481c73c-7596-11ef-bceb-c7b262605968@mgr.b 2024-09-18T08:28:19.587 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 18 08:28:19 smithi086 systemd[1]: Stopping Ceph mgr.b for 1481c73c-7596-11ef-bceb-c7b262605968... 2024-09-18T08:28:20.235 DEBUG:teuthology.orchestra.run.smithi086:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@mgr.b.service' 2024-09-18T08:28:20.256 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T08:28:20.256 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-09-18T08:28:20.256 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-09-18T08:28:20.256 DEBUG:teuthology.orchestra.run.smithi070:> sudo systemctl stop ceph-1481c73c-7596-11ef-bceb-c7b262605968@osd.0 2024-09-18T08:28:20.724 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 18 08:28:20 smithi070 systemd[1]: Stopping Ceph osd.0 for 1481c73c-7596-11ef-bceb-c7b262605968... 2024-09-18T08:28:20.725 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 18 08:28:20 smithi070 bash[32656]: debug 2024-09-18T08:28:20.400+0000 7f60ecc93640 -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-18T08:28:20.725 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 18 08:28:20 smithi070 bash[32656]: debug 2024-09-18T08:28:20.400+0000 7f60ecc93640 -1 osd.0 49 *** Got signal Terminated *** 2024-09-18T08:28:20.725 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 18 08:28:20 smithi070 bash[32656]: debug 2024-09-18T08:28:20.400+0000 7f60ecc93640 -1 osd.0 49 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-18T08:28:26.585 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 18 08:28:26 smithi070 bash[45064]: ceph-1481c73c-7596-11ef-bceb-c7b262605968-osd-0 2024-09-18T08:28:26.585 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 18 08:28:26 smithi070 bash[45127]: Error response from daemon: No such container: ceph-1481c73c-7596-11ef-bceb-c7b262605968-osd-0 2024-09-18T08:28:28.118 DEBUG:teuthology.orchestra.run.smithi070:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@osd.0.service' 2024-09-18T08:28:28.144 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T08:28:28.144 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-09-18T08:28:28.144 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-09-18T08:28:28.144 DEBUG:teuthology.orchestra.run.smithi070:> sudo systemctl stop ceph-1481c73c-7596-11ef-bceb-c7b262605968@osd.1 2024-09-18T08:28:28.475 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 18 08:28:28 smithi070 systemd[1]: Stopping Ceph osd.1 for 1481c73c-7596-11ef-bceb-c7b262605968... 2024-09-18T08:28:28.475 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 18 08:28:28 smithi070 bash[38033]: debug 2024-09-18T08:28:28.308+0000 7f24c84b4640 -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-18T08:28:28.475 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 18 08:28:28 smithi070 bash[38033]: debug 2024-09-18T08:28:28.308+0000 7f24c84b4640 -1 osd.1 49 *** Got signal Terminated *** 2024-09-18T08:28:28.475 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 18 08:28:28 smithi070 bash[38033]: debug 2024-09-18T08:28:28.308+0000 7f24c84b4640 -1 osd.1 49 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-18T08:28:34.623 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 18 08:28:34 smithi070 bash[45259]: ceph-1481c73c-7596-11ef-bceb-c7b262605968-osd-1 2024-09-18T08:28:34.624 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 18 08:28:34 smithi070 bash[45324]: Error response from daemon: No such container: ceph-1481c73c-7596-11ef-bceb-c7b262605968-osd-1 2024-09-18T08:28:36.110 DEBUG:teuthology.orchestra.run.smithi070:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@osd.1.service' 2024-09-18T08:28:36.155 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T08:28:36.156 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-09-18T08:28:36.156 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-09-18T08:28:36.156 DEBUG:teuthology.orchestra.run.smithi086:> sudo systemctl stop ceph-1481c73c-7596-11ef-bceb-c7b262605968@osd.2 2024-09-18T08:28:36.587 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 18 08:28:36 smithi086 systemd[1]: Stopping Ceph osd.2 for 1481c73c-7596-11ef-bceb-c7b262605968... 2024-09-18T08:28:36.587 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 18 08:28:36 smithi086 bash[27636]: debug 2024-09-18T08:28:36.305+0000 7fec5f3ce640 -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-18T08:28:36.588 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 18 08:28:36 smithi086 bash[27636]: debug 2024-09-18T08:28:36.305+0000 7fec5f3ce640 -1 osd.2 49 *** Got signal Terminated *** 2024-09-18T08:28:36.588 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 18 08:28:36 smithi086 bash[27636]: debug 2024-09-18T08:28:36.305+0000 7fec5f3ce640 -1 osd.2 49 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-18T08:28:42.337 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 18 08:28:42 smithi086 bash[37177]: ceph-1481c73c-7596-11ef-bceb-c7b262605968-osd-2 2024-09-18T08:28:42.338 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 18 08:28:42 smithi086 bash[37240]: Error response from daemon: No such container: ceph-1481c73c-7596-11ef-bceb-c7b262605968-osd-2 2024-09-18T08:28:44.049 DEBUG:teuthology.orchestra.run.smithi086:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@osd.2.service' 2024-09-18T08:28:44.076 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T08:28:44.076 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-09-18T08:28:44.077 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-09-18T08:28:44.077 DEBUG:teuthology.orchestra.run.smithi086:> sudo systemctl stop ceph-1481c73c-7596-11ef-bceb-c7b262605968@osd.3 2024-09-18T08:28:44.337 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 18 08:28:44 smithi086 systemd[1]: Stopping Ceph osd.3 for 1481c73c-7596-11ef-bceb-c7b262605968... 2024-09-18T08:28:44.337 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 18 08:28:44 smithi086 bash[33150]: debug 2024-09-18T08:28:44.257+0000 7f4677ff4640 -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-18T08:28:44.338 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 18 08:28:44 smithi086 bash[33150]: debug 2024-09-18T08:28:44.257+0000 7f4677ff4640 -1 osd.3 49 *** Got signal Terminated *** 2024-09-18T08:28:44.338 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 18 08:28:44 smithi086 bash[33150]: debug 2024-09-18T08:28:44.257+0000 7f4677ff4640 -1 osd.3 49 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-18T08:28:50.493 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 18 08:28:50 smithi086 bash[37371]: ceph-1481c73c-7596-11ef-bceb-c7b262605968-osd-3 2024-09-18T08:28:50.494 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 18 08:28:50 smithi086 bash[37433]: Error response from daemon: No such container: ceph-1481c73c-7596-11ef-bceb-c7b262605968-osd-3 2024-09-18T08:28:52.157 DEBUG:teuthology.orchestra.run.smithi086:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@osd.3.service' 2024-09-18T08:28:52.201 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T08:28:52.201 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-09-18T08:28:52.201 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-09-18T08:28:52.201 DEBUG:teuthology.orchestra.run.smithi172:> sudo systemctl stop ceph-1481c73c-7596-11ef-bceb-c7b262605968@osd.4 2024-09-18T08:28:52.234 DEBUG:teuthology.orchestra.run.smithi172:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@osd.4.service' 2024-09-18T08:28:52.302 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T08:28:52.302 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-09-18T08:28:52.302 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-09-18T08:28:52.302 DEBUG:teuthology.orchestra.run.smithi172:> sudo systemctl stop ceph-1481c73c-7596-11ef-bceb-c7b262605968@osd.5 2024-09-18T08:28:52.370 DEBUG:teuthology.orchestra.run.smithi172:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1481c73c-7596-11ef-bceb-c7b262605968@osd.5.service' 2024-09-18T08:28:52.452 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-18T08:28:52.452 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-09-18T08:28:52.453 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1481c73c-7596-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-18T08:28:52.637 INFO:teuthology.orchestra.run.smithi070.stdout:Deleting cluster with fsid: 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:28:55.164 DEBUG:teuthology.orchestra.run.smithi086:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1481c73c-7596-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-18T08:28:55.341 INFO:teuthology.orchestra.run.smithi086.stdout:Deleting cluster with fsid: 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:28:57.809 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1481c73c-7596-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-18T08:28:57.996 INFO:teuthology.orchestra.run.smithi172.stdout:Deleting cluster with fsid: 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:28:59.510 DEBUG:teuthology.orchestra.run.smithi070:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-18T08:28:59.525 DEBUG:teuthology.orchestra.run.smithi086:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-18T08:28:59.539 DEBUG:teuthology.orchestra.run.smithi172:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-18T08:28:59.553 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-18T08:28:59.554 DEBUG:teuthology.misc:Transferring archived files from smithi070:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/gabrioux-2024-09-18_06:59:44-orch:cephadm-wip-guits-main-2024-09-17-1213-distro-default-smithi/7910365/remote/smithi070/crash 2024-09-18T08:28:59.555 DEBUG:teuthology.orchestra.run.smithi070:> sudo tar c -f - -C /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/crash -- . 2024-09-18T08:28:59.577 INFO:teuthology.orchestra.run.smithi070.stderr:tar: /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-18T08:28:59.577 INFO:teuthology.orchestra.run.smithi070.stderr:tar: Error is not recoverable: exiting now 2024-09-18T08:28:59.580 DEBUG:teuthology.misc:Transferring archived files from smithi086:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/gabrioux-2024-09-18_06:59:44-orch:cephadm-wip-guits-main-2024-09-17-1213-distro-default-smithi/7910365/remote/smithi086/crash 2024-09-18T08:28:59.582 DEBUG:teuthology.orchestra.run.smithi086:> sudo tar c -f - -C /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/crash -- . 2024-09-18T08:28:59.595 INFO:teuthology.orchestra.run.smithi086.stderr:tar: /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-18T08:28:59.595 INFO:teuthology.orchestra.run.smithi086.stderr:tar: Error is not recoverable: exiting now 2024-09-18T08:28:59.597 DEBUG:teuthology.misc:Transferring archived files from smithi172:/var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/gabrioux-2024-09-18_06:59:44-orch:cephadm-wip-guits-main-2024-09-17-1213-distro-default-smithi/7910365/remote/smithi172/crash 2024-09-18T08:28:59.598 DEBUG:teuthology.orchestra.run.smithi172:> sudo tar c -f - -C /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/crash -- . 2024-09-18T08:28:59.608 INFO:teuthology.orchestra.run.smithi172.stderr:tar: /var/lib/ceph/1481c73c-7596-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-18T08:28:59.609 INFO:teuthology.orchestra.run.smithi172.stderr:tar: Error is not recoverable: exiting now 2024-09-18T08:28:59.610 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-18T08:28:59.610 DEBUG:teuthology.orchestra.run.smithi070:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/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-18T08:28:59.636 INFO:tasks.cephadm:Compressing logs... 2024-09-18T08:28:59.636 DEBUG:teuthology.orchestra.run.smithi070:> 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-18T08:28:59.679 DEBUG:teuthology.orchestra.run.smithi086:> 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-18T08:28:59.682 DEBUG:teuthology.orchestra.run.smithi172:> 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-18T08:28:59.687 INFO:teuthology.orchestra.run.smithi070.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-18T08:28:59.694 INFO:teuthology.orchestra.run.smithi086.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-18T08:28:59.695 INFO:teuthology.orchestra.run.smithi172.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-18T08:28:59.696 INFO:teuthology.orchestra.run.smithi070.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-18T08:28:59.696 INFO:teuthology.orchestra.run.smithi070.stderr:gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-osd.0.log 2024-09-18T08:28:59.697 INFO:teuthology.orchestra.run.smithi070.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-mon.a.log 2024-09-18T08:28:59.697 INFO:teuthology.orchestra.run.smithi070.stderr:/var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-18T08:28:59.698 INFO:teuthology.orchestra.run.smithi070.stderr:/var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-mon.a.log: gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-osd.1.log 2024-09-18T08:28:59.698 INFO:teuthology.orchestra.run.smithi070.stderr:/var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.log 2024-09-18T08:28:59.698 INFO:teuthology.orchestra.run.smithi070.stderr: 82.5% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-18T08:28:59.699 INFO:teuthology.orchestra.run.smithi070.stderr:/var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-18T08:28:59.699 INFO:teuthology.orchestra.run.smithi070.stderr:gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-18T08:28:59.699 INFO:teuthology.orchestra.run.smithi070.stderr:/var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.log: /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-mgr.a.log 2024-09-18T08:28:59.701 INFO:teuthology.orchestra.run.smithi070.stderr:/var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.audit.log: /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-mgr.a.log: 86.8% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-18T08:28:59.701 INFO:teuthology.orchestra.run.smithi070.stderr: 87.7% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-18T08:28:59.701 INFO:teuthology.orchestra.run.smithi070.stderr: 89.7% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-18T08:28:59.702 INFO:teuthology.orchestra.run.smithi086.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-18T08:28:59.704 INFO:teuthology.orchestra.run.smithi086.stderr:gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-osd.2.log 2024-09-18T08:28:59.704 INFO:teuthology.orchestra.run.smithi086.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-18T08:28:59.704 INFO:teuthology.orchestra.run.smithi086.stderr:/var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-osd.3.log 2024-09-18T08:28:59.705 INFO:teuthology.orchestra.run.smithi086.stderr:/var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.log 2024-09-18T08:28:59.705 INFO:teuthology.orchestra.run.smithi086.stderr:/var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-osd.3.log: 82.3% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-18T08:28:59.705 INFO:teuthology.orchestra.run.smithi086.stderr:gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-18T08:28:59.706 INFO:teuthology.orchestra.run.smithi070.stderr: 91.8% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-18T08:28:59.706 INFO:teuthology.orchestra.run.smithi086.stderr:/var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.log: 89.2% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-18T08:28:59.706 INFO:teuthology.orchestra.run.smithi086.stderr:gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-mgr.b.log 2024-09-18T08:28:59.706 INFO:teuthology.orchestra.run.smithi086.stderr:/var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-18T08:28:59.707 INFO:teuthology.orchestra.run.smithi086.stderr:/var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-mgr.b.log: gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-mon.b.log 2024-09-18T08:28:59.707 INFO:teuthology.orchestra.run.smithi086.stderr:/var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.audit.log: 86.6% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-18T08:28:59.708 INFO:teuthology.orchestra.run.smithi086.stderr:/var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-mon.b.log: 90.0% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-18T08:28:59.711 INFO:teuthology.orchestra.run.smithi086.stderr: 91.1% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-mgr.b.log.gz 2024-09-18T08:28:59.714 INFO:teuthology.orchestra.run.smithi086.stderr: 91.8% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-18T08:28:59.715 INFO:teuthology.orchestra.run.smithi172.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-18T08:28:59.716 INFO:teuthology.orchestra.run.smithi172.stderr:gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-18T08:28:59.717 INFO:teuthology.orchestra.run.smithi172.stderr:gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-osd.5.log 2024-09-18T08:28:59.717 INFO:teuthology.orchestra.run.smithi172.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.log 2024-09-18T08:28:59.718 INFO:teuthology.orchestra.run.smithi172.stderr:/var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.cephadm.log: /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-18T08:28:59.718 INFO:teuthology.orchestra.run.smithi172.stderr: 80.2% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-18T08:28:59.718 INFO:teuthology.orchestra.run.smithi172.stderr:/var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-mon.c.log 2024-09-18T08:28:59.719 INFO:teuthology.orchestra.run.smithi172.stderr:/var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-18T08:28:59.719 INFO:teuthology.orchestra.run.smithi172.stderr:/var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-mon.c.log: gzip -5 --verbose -- /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-osd.4.log 2024-09-18T08:28:59.719 INFO:teuthology.orchestra.run.smithi172.stderr: 87.0% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-18T08:28:59.720 INFO:teuthology.orchestra.run.smithi172.stderr:/var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.audit.log: /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-osd.4.log: 88.4% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-18T08:28:59.720 INFO:teuthology.orchestra.run.smithi172.stderr: 90.0% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-18T08:28:59.724 INFO:teuthology.orchestra.run.smithi172.stderr: 91.7% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-18T08:28:59.746 INFO:teuthology.orchestra.run.smithi070.stderr: 93.2% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-osd.1.log.gz 2024-09-18T08:28:59.747 INFO:teuthology.orchestra.run.smithi070.stderr: 93.1% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-osd.0.log.gz 2024-09-18T08:28:59.756 INFO:teuthology.orchestra.run.smithi172.stderr: 92.9% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-osd.5.log.gz 2024-09-18T08:28:59.760 INFO:teuthology.orchestra.run.smithi086.stderr: 92.9% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-osd.3.log.gz 2024-09-18T08:28:59.760 INFO:teuthology.orchestra.run.smithi172.stderr: 92.9% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-osd.4.log.gz 2024-09-18T08:28:59.774 INFO:teuthology.orchestra.run.smithi086.stderr: 93.3% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-osd.2.log.gz 2024-09-18T08:28:59.787 INFO:teuthology.orchestra.run.smithi070.stderr: 89.8% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-mgr.a.log.gz 2024-09-18T08:28:59.800 INFO:teuthology.orchestra.run.smithi172.stderr: 93.3% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-mon.c.log.gz 2024-09-18T08:28:59.801 INFO:teuthology.orchestra.run.smithi172.stderr: 2024-09-18T08:28:59.801 INFO:teuthology.orchestra.run.smithi172.stderr:real 0m0.114s 2024-09-18T08:28:59.801 INFO:teuthology.orchestra.run.smithi172.stderr:user 0m0.190s 2024-09-18T08:28:59.801 INFO:teuthology.orchestra.run.smithi172.stderr:sys 0m0.009s 2024-09-18T08:28:59.814 INFO:teuthology.orchestra.run.smithi086.stderr: 92.7% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-mon.b.log.gz 2024-09-18T08:28:59.816 INFO:teuthology.orchestra.run.smithi086.stderr: 2024-09-18T08:28:59.816 INFO:teuthology.orchestra.run.smithi086.stderr:real 0m0.132s 2024-09-18T08:28:59.816 INFO:teuthology.orchestra.run.smithi086.stderr:user 0m0.261s 2024-09-18T08:28:59.816 INFO:teuthology.orchestra.run.smithi086.stderr:sys 0m0.022s 2024-09-18T08:28:59.995 INFO:teuthology.orchestra.run.smithi070.stderr: 91.0% -- replaced with /var/log/ceph/1481c73c-7596-11ef-bceb-c7b262605968/ceph-mon.a.log.gz 2024-09-18T08:28:59.997 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-18T08:28:59.997 INFO:teuthology.orchestra.run.smithi070.stderr:real 0m0.315s 2024-09-18T08:28:59.997 INFO:teuthology.orchestra.run.smithi070.stderr:user 0m0.490s 2024-09-18T08:28:59.997 INFO:teuthology.orchestra.run.smithi070.stderr:sys 0m0.027s 2024-09-18T08:28:59.997 INFO:tasks.cephadm:Archiving logs... 2024-09-18T08:28:59.997 DEBUG:teuthology.misc:Transferring archived files from smithi070:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-09-18_06:59:44-orch:cephadm-wip-guits-main-2024-09-17-1213-distro-default-smithi/7910365/remote/smithi070/log 2024-09-18T08:28:59.998 DEBUG:teuthology.orchestra.run.smithi070:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-18T08:29:00.138 DEBUG:teuthology.misc:Transferring archived files from smithi086:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-09-18_06:59:44-orch:cephadm-wip-guits-main-2024-09-17-1213-distro-default-smithi/7910365/remote/smithi086/log 2024-09-18T08:29:00.139 DEBUG:teuthology.orchestra.run.smithi086:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-18T08:29:00.193 DEBUG:teuthology.misc:Transferring archived files from smithi172:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-09-18_06:59:44-orch:cephadm-wip-guits-main-2024-09-17-1213-distro-default-smithi/7910365/remote/smithi172/log 2024-09-18T08:29:00.194 DEBUG:teuthology.orchestra.run.smithi172:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-18T08:29:00.234 INFO:tasks.cephadm:Removing cluster... 2024-09-18T08:29:00.235 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1481c73c-7596-11ef-bceb-c7b262605968 --force 2024-09-18T08:29:00.418 INFO:teuthology.orchestra.run.smithi070.stdout:Deleting cluster with fsid: 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:29:01.750 DEBUG:teuthology.orchestra.run.smithi086:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1481c73c-7596-11ef-bceb-c7b262605968 --force 2024-09-18T08:29:01.936 INFO:teuthology.orchestra.run.smithi086.stdout:Deleting cluster with fsid: 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:29:03.238 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1481c73c-7596-11ef-bceb-c7b262605968 --force 2024-09-18T08:29:03.424 INFO:teuthology.orchestra.run.smithi172.stdout:Deleting cluster with fsid: 1481c73c-7596-11ef-bceb-c7b262605968 2024-09-18T08:29:04.744 INFO:tasks.cephadm:Removing cephadm ... 2024-09-18T08:29:04.744 DEBUG:teuthology.orchestra.run.smithi070:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-18T08:29:04.751 DEBUG:teuthology.orchestra.run.smithi086:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-18T08:29:04.757 DEBUG:teuthology.orchestra.run.smithi172:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-18T08:29:04.764 INFO:tasks.cephadm:Teardown complete 2024-09-18T08:29:04.765 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-09-18T08:29:04.775 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-18T08:29:04.775 DEBUG:teuthology.orchestra.run.smithi070:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-18T08:29:04.795 DEBUG:teuthology.orchestra.run.smithi086:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-18T08:29:04.801 DEBUG:teuthology.orchestra.run.smithi172:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-18T08:29:04.893 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-18T08:29:04.901 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-18T08:29:04.902 DEBUG:teuthology.orchestra.run.smithi070:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-18T08:29:04.904 DEBUG:teuthology.orchestra.run.smithi086:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-18T08:29:04.907 DEBUG:teuthology.orchestra.run.smithi172:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-18T08:29:04.914 INFO:teuthology.orchestra.run.smithi070.stdout: remote refid st t when poll reach delay offset jitter 2024-09-18T08:29:04.914 INFO:teuthology.orchestra.run.smithi070.stdout:============================================================================== 2024-09-18T08:29:04.914 INFO:teuthology.orchestra.run.smithi070.stdout:*hv01.front.sepi 67.205.162.81 3 u 52 64 377 0.105 -0.701 4.853 2024-09-18T08:29:04.914 INFO:teuthology.orchestra.run.smithi070.stdout:+hv02.front.sepi 96.245.170.99 3 u 43 64 377 0.082 -2.216 5.174 2024-09-18T08:29:04.914 INFO:teuthology.orchestra.run.smithi070.stdout:+hv03.front.sepi 74.6.168.72 3 u 42 64 377 0.100 -9.021 4.513 2024-09-18T08:29:04.915 INFO:teuthology.orchestra.run.smithi070.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-18T08:29:04.918 INFO:teuthology.orchestra.run.smithi086.stdout: remote refid st t when poll reach delay offset jitter 2024-09-18T08:29:04.918 INFO:teuthology.orchestra.run.smithi086.stdout:============================================================================== 2024-09-18T08:29:04.919 INFO:teuthology.orchestra.run.smithi086.stdout:+hv01.front.sepi 67.205.162.81 3 u 46 64 377 0.099 -1.127 2.431 2024-09-18T08:29:04.919 INFO:teuthology.orchestra.run.smithi086.stdout:*hv02.front.sepi 96.245.170.99 3 u 44 64 377 0.086 -4.602 1.555 2024-09-18T08:29:04.919 INFO:teuthology.orchestra.run.smithi086.stdout:+hv03.front.sepi 74.6.168.72 3 u 41 64 377 0.079 -5.655 2.013 2024-09-18T08:29:04.919 INFO:teuthology.orchestra.run.smithi086.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-18T08:29:04.920 INFO:teuthology.orchestra.run.smithi172.stdout: remote refid st t when poll reach delay offset jitter 2024-09-18T08:29:04.921 INFO:teuthology.orchestra.run.smithi172.stdout:============================================================================== 2024-09-18T08:29:04.921 INFO:teuthology.orchestra.run.smithi172.stdout:+hv01.front.sepi 67.205.162.81 3 u 49 64 377 0.078 -0.009 2.698 2024-09-18T08:29:04.921 INFO:teuthology.orchestra.run.smithi172.stdout:*hv02.front.sepi 96.245.170.99 3 u 51 64 377 0.074 -5.683 2.583 2024-09-18T08:29:04.921 INFO:teuthology.orchestra.run.smithi172.stdout:+hv03.front.sepi 74.6.168.72 3 u 48 64 377 0.104 -5.193 2.356 2024-09-18T08:29:04.921 INFO:teuthology.orchestra.run.smithi172.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-18T08:29:04.922 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-18T08:29:04.931 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-18T08:29:04.931 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-18T08:29:04.952 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-18T08:29:04.972 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-18T08:29:04.985 INFO:teuthology.task.internal:Duration was 1429.045815 seconds 2024-09-18T08:29:04.986 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-18T08:29:05.002 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-18T08:29:05.002 DEBUG:teuthology.orchestra.run.smithi070:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-18T08:29:05.005 DEBUG:teuthology.orchestra.run.smithi086:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-18T08:29:05.007 DEBUG:teuthology.orchestra.run.smithi172:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-18T08:29:05.045 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-18T08:29:05.045 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi070.front.sepia.ceph.com 2024-09-18T08:29:05.046 DEBUG:teuthology.orchestra.run.smithi070:> 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-18T08:29:05.092 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi086.front.sepia.ceph.com 2024-09-18T08:29:05.092 DEBUG:teuthology.orchestra.run.smithi086:> 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-18T08:29:05.102 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi172.front.sepia.ceph.com 2024-09-18T08:29:05.103 DEBUG:teuthology.orchestra.run.smithi172:> 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-18T08:29:05.113 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-18T08:29:05.114 DEBUG:teuthology.orchestra.run.smithi070:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-18T08:29:05.135 DEBUG:teuthology.orchestra.run.smithi086:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-18T08:29:05.149 DEBUG:teuthology.orchestra.run.smithi172:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-18T08:29:05.187 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-18T08:29:05.188 DEBUG:teuthology.orchestra.run.smithi070:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-18T08:29:05.215 DEBUG:teuthology.orchestra.run.smithi086:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-18T08:29:05.229 DEBUG:teuthology.orchestra.run.smithi172:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-18T08:29:05.314 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-18T08:29:05.323 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-18T08:29:05.324 DEBUG:teuthology.orchestra.run.smithi070:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-18T08:29:05.337 DEBUG:teuthology.orchestra.run.smithi086:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-18T08:29:05.348 DEBUG:teuthology.orchestra.run.smithi172:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-18T08:29:05.360 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-18T08:29:05.369 DEBUG:teuthology.orchestra.run.smithi070:> 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-18T08:29:05.383 DEBUG:teuthology.orchestra.run.smithi086:> 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-18T08:29:05.390 INFO:teuthology.orchestra.run.smithi070.stdout:kernel.core_pattern = core 2024-09-18T08:29:05.393 DEBUG:teuthology.orchestra.run.smithi172:> 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-18T08:29:05.401 INFO:teuthology.orchestra.run.smithi086.stdout:kernel.core_pattern = core 2024-09-18T08:29:05.412 INFO:teuthology.orchestra.run.smithi172.stdout:kernel.core_pattern = core 2024-09-18T08:29:05.428 DEBUG:teuthology.orchestra.run.smithi070:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-18T08:29:05.456 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-18T08:29:05.457 DEBUG:teuthology.orchestra.run.smithi086:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-18T08:29:05.471 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-18T08:29:05.471 DEBUG:teuthology.orchestra.run.smithi172:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-18T08:29:05.476 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-18T08:29:05.476 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-18T08:29:05.486 INFO:teuthology.task.internal:Transferring archived files... 2024-09-18T08:29:05.487 DEBUG:teuthology.misc:Transferring archived files from smithi070:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-09-18_06:59:44-orch:cephadm-wip-guits-main-2024-09-17-1213-distro-default-smithi/7910365/remote/smithi070 2024-09-18T08:29:05.487 DEBUG:teuthology.orchestra.run.smithi070:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-18T08:29:05.520 DEBUG:teuthology.misc:Transferring archived files from smithi086:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-09-18_06:59:44-orch:cephadm-wip-guits-main-2024-09-17-1213-distro-default-smithi/7910365/remote/smithi086 2024-09-18T08:29:05.520 DEBUG:teuthology.orchestra.run.smithi086:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-18T08:29:05.542 DEBUG:teuthology.misc:Transferring archived files from smithi172:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-09-18_06:59:44-orch:cephadm-wip-guits-main-2024-09-17-1213-distro-default-smithi/7910365/remote/smithi172 2024-09-18T08:29:05.543 DEBUG:teuthology.orchestra.run.smithi172:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-18T08:29:05.564 INFO:teuthology.task.internal:Removing archive directory... 2024-09-18T08:29:05.565 DEBUG:teuthology.orchestra.run.smithi070:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-18T08:29:05.567 DEBUG:teuthology.orchestra.run.smithi086:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-18T08:29:05.581 DEBUG:teuthology.orchestra.run.smithi172:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-18T08:29:05.607 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-18T08:29:05.618 INFO:teuthology.task.internal:Not uploading archives. 2024-09-18T08:29:05.618 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-18T08:29:05.636 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-18T08:29:05.636 DEBUG:teuthology.orchestra.run.smithi070:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-18T08:29:05.639 DEBUG:teuthology.orchestra.run.smithi086:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-18T08:29:05.641 DEBUG:teuthology.orchestra.run.smithi172:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-18T08:29:05.642 INFO:teuthology.orchestra.run.smithi070.stdout: 658617 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 18 08:29 /home/ubuntu/cephtest 2024-09-18T08:29:05.644 INFO:teuthology.orchestra.run.smithi086.stdout: 658636 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 18 08:29 /home/ubuntu/cephtest 2024-09-18T08:29:05.655 INFO:teuthology.orchestra.run.smithi172.stdout: 658465 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 18 08:29 /home/ubuntu/cephtest 2024-09-18T08:29:05.656 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-18T08:29:05.667 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-18T08:29:05.706 INFO:teuthology.run:Summary data: description: orch:cephadm/workunits/{0-distro/ubuntu_22.04 agent/off mon_election/classic task/test_host_drain} duration: 1429.045815229416 flavor: default owner: scheduled_gabrioux@teuthology success: true 2024-09-18T08:29:05.706 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-18T08:29:05.784 INFO:teuthology.run:pass