2024-04-15T21:04:50.665 INFO:root:teuthology version: 0.0.1.dev267+g6c63784 2024-04-15T21:04:50.665 DEBUG:teuthology.run:Teuthology command: teuthology --archive /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657350 --verbose --owner scheduled_teuthology@teuthology --description orch/cephadm/workunits/{0-distro/ubuntu_22.04 agent/on mon_election/classic task/test_set_mon_crush_locations} --name teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi -- /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657350/orig.config.yaml 2024-04-15T21:04:50.696 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-15T21:04:50.778 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657350 branch: main description: orch/cephadm/workunits/{0-distro/ubuntu_22.04 agent/on mon_election/classic task/test_set_mon_crush_locations} email: ceph-qa@ceph.com first_in_suite: false job_id: '7657350' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi no_nested_subset: false nuke-on-error: true os_type: ubuntu os_version: '22.04' overrides: admin_socket: branch: main ceph: conf: global: mon election default strategy: 1 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: true 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 - POOL_APP_NOT_ENABLED - mon down - mons down - out of quorum log-only-match: - CEPHADM_ sha1: 87dbfb632e974cb2c28d17423071d2d833b53b29 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 87dbfb632e974cb2c28d17423071d2d833b53b29 workunit: branch: main sha1: 3f7db60e5ba4c4d053b594b7ec58703d2833c55b owner: scheduled_teuthology@teuthology priority: 950 repo: https://git.ceph.com/ceph.git roles: - - host.a - osd.0 - mon.a - mgr.a - - host.b - osd.1 - mon.b - mgr.b - - host.c - osd.2 - mon.c seed: 8042 sha1: 87dbfb632e974cb2c28d17423071d2d833b53b29 sleep_before_teardown: 0 subset: 25/64 suite: orch suite_branch: main suite_path: /home/teuthworker/src/git.ceph.com_ceph_3f7db60e5ba4c4d053b594b7ec58703d2833c55b/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 3f7db60e5ba4c4d053b594b7ec58703d2833c55b targets: smithi132.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBL4Ubs1LsF56kJty9wvAMAkQWwfUH6vBLEcwCNb5hDLbwvgclz8VTUrM4wDU2fIbm2Qq4Mx7tzitMuZ6usysN2o= smithi133.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEBKXSKhIVr/d5my/cgVkBS7tClllSCF2QSpVsNEyXt10+SVJ+j8296DzVZOpDdU/fyLICn3t2wN4kWW9VgM0jU= smithi187.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGHoyUc09J1g87pTb0WStfUY5z7aOPk4S2KeuPUOPTAx0XmkMw9z9pGSip5SfowreHDBb3gPOAHZV1k8laIuHHs= tasks: - install: null - cephadm: null - cephadm.apply: specs: - placement: count: 3 service_id: foo service_type: mon spec: crush_locations: host.a: - datacenter=a host.b: - datacenter=b - rack=2 host.c: - datacenter=a - rack=3 - cephadm.shell: host.a: - "set -ex\n# since we don't know the real hostnames before the test, the next\n\ # bit is in order to replace the fake hostnames \"host.a/b/c\" with\n# the actual\ \ names cephadm knows the host by within the mon spec\nceph orch host ls --format\ \ json | jq -r '.[] | .hostname' > realnames\necho $'host.a\\nhost.b\\nhost.c'\ \ > fakenames\necho $'a\\nb\\nc' > mon_ids\necho $'{datacenter=a}\\n{datacenter=b,rack=2}\\\ n{datacenter=a,rack=3}' > crush_locs\nceph orch ls --service-name mon --export\ \ > mon.yaml\nMONSPEC=`cat mon.yaml`\necho \"$MONSPEC\"\nwhile read realname\ \ <&3 && read fakename <&4; do\n MONSPEC=\"${MONSPEC//$fakename/$realname}\"\ \ndone 3 mon.yaml\ncat mon.yaml\n\ # now the spec should have the real hostnames, so let's re-apply\nceph orch\ \ apply -i mon.yaml\nsleep 90\nceph orch ps --refresh\nceph orch ls --service-name\ \ mon --export > mon.yaml; ceph orch apply -i mon.yaml\nsleep 90\nceph mon dump\n\ ceph mon dump --format json\n# verify all the crush locations got set from \"\ ceph mon dump\" output\nwhile read monid <&3 && read crushloc <&4; do\n ceph\ \ mon dump --format json | jq --arg monid \"$monid\" --arg crushloc \"$crushloc\"\ \ -e '.mons | .[] | select(.name == $monid) | .crush_location == $crushloc'\n\ done 3, func=.kill_console_loggers at 0x7f1891725280>, signals=[15]) 2024-04-15T21:04:51.291 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-15T21:04:51.297 INFO:teuthology.task.internal:Opening connections... 2024-04-15T21:04:51.297 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi132.front.sepia.ceph.com 2024-04-15T21:04:51.299 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi132.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:04:51.378 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi133.front.sepia.ceph.com 2024-04-15T21:04:51.378 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi133.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:04:51.456 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi187.front.sepia.ceph.com 2024-04-15T21:04:51.457 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi187.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:04:51.534 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-15T21:04:51.540 DEBUG:teuthology.orchestra.run.smithi132:> uname -m 2024-04-15T21:04:51.546 INFO:teuthology.orchestra.run.smithi132.stdout:x86_64 2024-04-15T21:04:51.547 DEBUG:teuthology.orchestra.run.smithi132:> cat /etc/os-release 2024-04-15T21:04:51.592 INFO:teuthology.orchestra.run.smithi132.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-04-15T21:04:51.593 INFO:teuthology.orchestra.run.smithi132.stdout:NAME="Ubuntu" 2024-04-15T21:04:51.593 INFO:teuthology.orchestra.run.smithi132.stdout:VERSION_ID="22.04" 2024-04-15T21:04:51.593 INFO:teuthology.orchestra.run.smithi132.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-04-15T21:04:51.593 INFO:teuthology.orchestra.run.smithi132.stdout:VERSION_CODENAME=jammy 2024-04-15T21:04:51.593 INFO:teuthology.orchestra.run.smithi132.stdout:ID=ubuntu 2024-04-15T21:04:51.593 INFO:teuthology.orchestra.run.smithi132.stdout:ID_LIKE=debian 2024-04-15T21:04:51.593 INFO:teuthology.orchestra.run.smithi132.stdout:HOME_URL="https://www.ubuntu.com/" 2024-04-15T21:04:51.593 INFO:teuthology.orchestra.run.smithi132.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-04-15T21:04:51.593 INFO:teuthology.orchestra.run.smithi132.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-04-15T21:04:51.593 INFO:teuthology.orchestra.run.smithi132.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-04-15T21:04:51.593 INFO:teuthology.orchestra.run.smithi132.stdout:UBUNTU_CODENAME=jammy 2024-04-15T21:04:51.594 INFO:teuthology.lock.ops:Updating smithi132.front.sepia.ceph.com on lock server 2024-04-15T21:04:51.622 DEBUG:teuthology.orchestra.run.smithi133:> uname -m 2024-04-15T21:04:51.628 INFO:teuthology.orchestra.run.smithi133.stdout:x86_64 2024-04-15T21:04:51.629 DEBUG:teuthology.orchestra.run.smithi133:> cat /etc/os-release 2024-04-15T21:04:51.678 INFO:teuthology.orchestra.run.smithi133.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-04-15T21:04:51.678 INFO:teuthology.orchestra.run.smithi133.stdout:NAME="Ubuntu" 2024-04-15T21:04:51.678 INFO:teuthology.orchestra.run.smithi133.stdout:VERSION_ID="22.04" 2024-04-15T21:04:51.678 INFO:teuthology.orchestra.run.smithi133.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-04-15T21:04:51.678 INFO:teuthology.orchestra.run.smithi133.stdout:VERSION_CODENAME=jammy 2024-04-15T21:04:51.678 INFO:teuthology.orchestra.run.smithi133.stdout:ID=ubuntu 2024-04-15T21:04:51.678 INFO:teuthology.orchestra.run.smithi133.stdout:ID_LIKE=debian 2024-04-15T21:04:51.678 INFO:teuthology.orchestra.run.smithi133.stdout:HOME_URL="https://www.ubuntu.com/" 2024-04-15T21:04:51.679 INFO:teuthology.orchestra.run.smithi133.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-04-15T21:04:51.679 INFO:teuthology.orchestra.run.smithi133.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-04-15T21:04:51.679 INFO:teuthology.orchestra.run.smithi133.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-04-15T21:04:51.679 INFO:teuthology.orchestra.run.smithi133.stdout:UBUNTU_CODENAME=jammy 2024-04-15T21:04:51.679 INFO:teuthology.lock.ops:Updating smithi133.front.sepia.ceph.com on lock server 2024-04-15T21:04:51.705 DEBUG:teuthology.orchestra.run.smithi187:> uname -m 2024-04-15T21:04:51.711 INFO:teuthology.orchestra.run.smithi187.stdout:x86_64 2024-04-15T21:04:51.711 DEBUG:teuthology.orchestra.run.smithi187:> cat /etc/os-release 2024-04-15T21:04:51.762 INFO:teuthology.orchestra.run.smithi187.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-04-15T21:04:51.763 INFO:teuthology.orchestra.run.smithi187.stdout:NAME="Ubuntu" 2024-04-15T21:04:51.763 INFO:teuthology.orchestra.run.smithi187.stdout:VERSION_ID="22.04" 2024-04-15T21:04:51.763 INFO:teuthology.orchestra.run.smithi187.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-04-15T21:04:51.763 INFO:teuthology.orchestra.run.smithi187.stdout:VERSION_CODENAME=jammy 2024-04-15T21:04:51.763 INFO:teuthology.orchestra.run.smithi187.stdout:ID=ubuntu 2024-04-15T21:04:51.763 INFO:teuthology.orchestra.run.smithi187.stdout:ID_LIKE=debian 2024-04-15T21:04:51.763 INFO:teuthology.orchestra.run.smithi187.stdout:HOME_URL="https://www.ubuntu.com/" 2024-04-15T21:04:51.763 INFO:teuthology.orchestra.run.smithi187.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-04-15T21:04:51.763 INFO:teuthology.orchestra.run.smithi187.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-04-15T21:04:51.763 INFO:teuthology.orchestra.run.smithi187.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-04-15T21:04:51.763 INFO:teuthology.orchestra.run.smithi187.stdout:UBUNTU_CODENAME=jammy 2024-04-15T21:04:51.763 INFO:teuthology.lock.ops:Updating smithi187.front.sepia.ceph.com on lock server 2024-04-15T21:04:51.788 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-15T21:04:51.797 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-15T21:04:51.825 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-15T21:04:51.826 DEBUG:teuthology.orchestra.run.smithi132:> test '!' -e /home/ubuntu/cephtest 2024-04-15T21:04:51.828 DEBUG:teuthology.orchestra.run.smithi133:> test '!' -e /home/ubuntu/cephtest 2024-04-15T21:04:51.831 DEBUG:teuthology.orchestra.run.smithi187:> test '!' -e /home/ubuntu/cephtest 2024-04-15T21:04:51.836 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-15T21:04:51.857 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-15T21:04:51.857 DEBUG:teuthology.orchestra.run.smithi132:> test -z $(ls -A /var/lib/ceph) 2024-04-15T21:04:51.878 DEBUG:teuthology.orchestra.run.smithi133:> test -z $(ls -A /var/lib/ceph) 2024-04-15T21:04:51.880 DEBUG:teuthology.orchestra.run.smithi187:> test -z $(ls -A /var/lib/ceph) 2024-04-15T21:04:51.897 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-15T21:04:51.969 INFO:teuthology.run_tasks:Running task kernel... 2024-04-15T21:04:51.982 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-04-15T21:04:51.982 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-04-15T21:04:51.983 DEBUG:teuthology.orchestra.run.smithi132:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T21:04:51.983 DEBUG:teuthology.orchestra.run.smithi133:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T21:04:51.984 DEBUG:teuthology.orchestra.run.smithi187:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T21:04:51.988 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:04:51.988 DEBUG:teuthology.orchestra.run.smithi132:> uname -r 2024-04-15T21:04:51.989 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:04:51.989 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:04:51.990 DEBUG:teuthology.orchestra.run.smithi187:> uname -r 2024-04-15T21:04:51.991 DEBUG:teuthology.orchestra.run.smithi133:> uname -r 2024-04-15T21:04:52.037 INFO:teuthology.orchestra.run.smithi132.stdout:5.15.0-56-generic 2024-04-15T21:04:52.037 INFO:teuthology.task.kernel:Running kernel on smithi132: 5.15.0-56-generic 2024-04-15T21:04:52.037 DEBUG:teuthology.orchestra.run.smithi132:> sudo apt-get clean 2024-04-15T21:04:52.038 INFO:teuthology.orchestra.run.smithi133.stdout:5.15.0-56-generic 2024-04-15T21:04:52.038 INFO:teuthology.task.kernel:Running kernel on smithi133: 5.15.0-56-generic 2024-04-15T21:04:52.038 DEBUG:teuthology.orchestra.run.smithi133:> sudo apt-get clean 2024-04-15T21:04:52.039 INFO:teuthology.orchestra.run.smithi187.stdout:5.15.0-56-generic 2024-04-15T21:04:52.039 INFO:teuthology.task.kernel:Running kernel on smithi187: 5.15.0-56-generic 2024-04-15T21:04:52.040 DEBUG:teuthology.orchestra.run.smithi187:> sudo apt-get clean 2024-04-15T21:04:52.154 DEBUG:teuthology.orchestra.run.smithi187:> sudo apt-get update 2024-04-15T21:04:52.173 DEBUG:teuthology.orchestra.run.smithi132:> sudo apt-get update 2024-04-15T21:04:52.175 DEBUG:teuthology.orchestra.run.smithi133:> sudo apt-get update 2024-04-15T21:04:52.290 INFO:teuthology.orchestra.run.smithi187.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-04-15T21:04:52.337 INFO:teuthology.orchestra.run.smithi132.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-04-15T21:04:52.345 INFO:teuthology.orchestra.run.smithi133.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T21:04:52.345 INFO:teuthology.orchestra.run.smithi133.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-04-15T21:04:52.345 INFO:teuthology.orchestra.run.smithi133.stdout:Get:3 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-04-15T21:04:52.397 INFO:teuthology.orchestra.run.smithi187.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T21:04:52.416 INFO:teuthology.orchestra.run.smithi133.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-04-15T21:04:52.438 INFO:teuthology.orchestra.run.smithi132.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T21:04:52.480 INFO:teuthology.orchestra.run.smithi187.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-04-15T21:04:52.518 INFO:teuthology.orchestra.run.smithi187.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,343 kB] 2024-04-15T21:04:52.520 INFO:teuthology.orchestra.run.smithi132.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-04-15T21:04:52.563 INFO:teuthology.orchestra.run.smithi132.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,343 kB] 2024-04-15T21:04:52.585 INFO:teuthology.orchestra.run.smithi133.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [444 kB] 2024-04-15T21:04:52.641 INFO:teuthology.orchestra.run.smithi187.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [444 kB] 2024-04-15T21:04:52.647 INFO:teuthology.orchestra.run.smithi187.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [237 kB] 2024-04-15T21:04:52.651 INFO:teuthology.orchestra.run.smithi187.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-04-15T21:04:52.651 INFO:teuthology.orchestra.run.smithi187.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [34.1 kB] 2024-04-15T21:04:52.652 INFO:teuthology.orchestra.run.smithi187.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,670 kB] 2024-04-15T21:04:52.662 INFO:teuthology.orchestra.run.smithi133.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [610 kB] 2024-04-15T21:04:52.673 INFO:teuthology.orchestra.run.smithi133.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,343 kB] 2024-04-15T21:04:52.685 INFO:teuthology.orchestra.run.smithi187.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [280 kB] 2024-04-15T21:04:52.691 INFO:teuthology.orchestra.run.smithi187.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-04-15T21:04:52.691 INFO:teuthology.orchestra.run.smithi187.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [600 kB] 2024-04-15T21:04:52.705 INFO:teuthology.orchestra.run.smithi187.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [852 kB] 2024-04-15T21:04:52.719 INFO:teuthology.orchestra.run.smithi187.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-04-15T21:04:52.722 INFO:teuthology.orchestra.run.smithi132.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [444 kB] 2024-04-15T21:04:52.722 INFO:teuthology.orchestra.run.smithi187.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-04-15T21:04:52.728 INFO:teuthology.orchestra.run.smithi187.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-04-15T21:04:52.729 INFO:teuthology.orchestra.run.smithi187.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-04-15T21:04:52.729 INFO:teuthology.orchestra.run.smithi187.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-04-15T21:04:52.729 INFO:teuthology.orchestra.run.smithi132.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [237 kB] 2024-04-15T21:04:52.734 INFO:teuthology.orchestra.run.smithi132.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-04-15T21:04:52.734 INFO:teuthology.orchestra.run.smithi132.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [34.1 kB] 2024-04-15T21:04:52.736 INFO:teuthology.orchestra.run.smithi132.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,670 kB] 2024-04-15T21:04:52.753 INFO:teuthology.orchestra.run.smithi133.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [237 kB] 2024-04-15T21:04:52.762 INFO:teuthology.orchestra.run.smithi133.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-04-15T21:04:52.762 INFO:teuthology.orchestra.run.smithi133.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [34.1 kB] 2024-04-15T21:04:52.762 INFO:teuthology.orchestra.run.smithi133.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,670 kB] 2024-04-15T21:04:52.771 INFO:teuthology.orchestra.run.smithi132.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [280 kB] 2024-04-15T21:04:52.773 INFO:teuthology.orchestra.run.smithi187.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-04-15T21:04:52.776 INFO:teuthology.orchestra.run.smithi132.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-04-15T21:04:52.776 INFO:teuthology.orchestra.run.smithi132.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [852 kB] 2024-04-15T21:04:52.782 INFO:teuthology.orchestra.run.smithi133.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,562 kB] 2024-04-15T21:04:52.793 INFO:teuthology.orchestra.run.smithi132.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [600 kB] 2024-04-15T21:04:52.805 INFO:teuthology.orchestra.run.smithi132.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-04-15T21:04:52.808 INFO:teuthology.orchestra.run.smithi132.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-04-15T21:04:52.812 INFO:teuthology.orchestra.run.smithi133.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [280 kB] 2024-04-15T21:04:52.817 INFO:teuthology.orchestra.run.smithi133.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-04-15T21:04:52.818 INFO:teuthology.orchestra.run.smithi133.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [600 kB] 2024-04-15T21:04:52.818 INFO:teuthology.orchestra.run.smithi132.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-04-15T21:04:52.819 INFO:teuthology.orchestra.run.smithi132.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-04-15T21:04:52.819 INFO:teuthology.orchestra.run.smithi132.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-04-15T21:04:52.827 INFO:teuthology.orchestra.run.smithi133.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [852 kB] 2024-04-15T21:04:52.835 INFO:teuthology.orchestra.run.smithi132.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-04-15T21:04:52.839 INFO:teuthology.orchestra.run.smithi187.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-04-15T21:04:52.867 INFO:teuthology.orchestra.run.smithi133.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [297 kB] 2024-04-15T21:04:52.867 INFO:teuthology.orchestra.run.smithi133.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-04-15T21:04:52.869 INFO:teuthology.orchestra.run.smithi133.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-04-15T21:04:52.873 INFO:teuthology.orchestra.run.smithi132.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-04-15T21:04:52.875 INFO:teuthology.orchestra.run.smithi133.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-04-15T21:04:52.876 INFO:teuthology.orchestra.run.smithi133.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-04-15T21:04:52.876 INFO:teuthology.orchestra.run.smithi133.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,702 kB] 2024-04-15T21:04:52.876 INFO:teuthology.orchestra.run.smithi133.stdout:Get:23 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-04-15T21:04:52.876 INFO:teuthology.orchestra.run.smithi133.stdout:Get:24 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-04-15T21:04:52.876 INFO:teuthology.orchestra.run.smithi133.stdout:Get:25 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-04-15T21:04:52.904 INFO:teuthology.orchestra.run.smithi133.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.7 kB] 2024-04-15T21:04:52.904 INFO:teuthology.orchestra.run.smithi133.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [286 kB] 2024-04-15T21:04:52.908 INFO:teuthology.orchestra.run.smithi133.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-04-15T21:04:52.909 INFO:teuthology.orchestra.run.smithi133.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [699 kB] 2024-04-15T21:04:52.918 INFO:teuthology.orchestra.run.smithi133.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,075 kB] 2024-04-15T21:04:52.934 INFO:teuthology.orchestra.run.smithi133.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [245 kB] 2024-04-15T21:04:52.940 INFO:teuthology.orchestra.run.smithi133.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-04-15T21:04:52.940 INFO:teuthology.orchestra.run.smithi133.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [6,028 B] 2024-04-15T21:04:52.941 INFO:teuthology.orchestra.run.smithi133.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [49.7 kB] 2024-04-15T21:04:52.956 INFO:teuthology.orchestra.run.smithi133.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [12.1 kB] 2024-04-15T21:04:52.957 INFO:teuthology.orchestra.run.smithi133.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-04-15T21:04:52.957 INFO:teuthology.orchestra.run.smithi133.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-04-15T21:04:52.957 INFO:teuthology.orchestra.run.smithi133.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-04-15T21:04:52.958 INFO:teuthology.orchestra.run.smithi133.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-04-15T21:04:52.976 INFO:teuthology.orchestra.run.smithi133.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-04-15T21:04:52.977 INFO:teuthology.orchestra.run.smithi133.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-04-15T21:04:52.977 INFO:teuthology.orchestra.run.smithi133.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-04-15T21:04:52.977 INFO:teuthology.orchestra.run.smithi133.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-04-15T21:04:52.978 INFO:teuthology.orchestra.run.smithi133.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-04-15T21:04:52.978 INFO:teuthology.orchestra.run.smithi187.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,562 kB] 2024-04-15T21:04:53.012 INFO:teuthology.orchestra.run.smithi132.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [610 kB] 2024-04-15T21:04:53.211 INFO:teuthology.orchestra.run.smithi132.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,562 kB] 2024-04-15T21:04:53.284 INFO:teuthology.orchestra.run.smithi187.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [610 kB] 2024-04-15T21:04:53.323 INFO:teuthology.orchestra.run.smithi187.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [297 kB] 2024-04-15T21:04:53.338 INFO:teuthology.orchestra.run.smithi187.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-04-15T21:04:53.340 INFO:teuthology.orchestra.run.smithi187.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,702 kB] 2024-04-15T21:04:53.361 INFO:teuthology.orchestra.run.smithi132.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [297 kB] 2024-04-15T21:04:53.375 INFO:teuthology.orchestra.run.smithi132.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-04-15T21:04:53.376 INFO:teuthology.orchestra.run.smithi132.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.7 kB] 2024-04-15T21:04:53.377 INFO:teuthology.orchestra.run.smithi132.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,702 kB] 2024-04-15T21:04:53.399 INFO:teuthology.orchestra.run.smithi187.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.7 kB] 2024-04-15T21:04:53.400 INFO:teuthology.orchestra.run.smithi187.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [286 kB] 2024-04-15T21:04:53.407 INFO:teuthology.orchestra.run.smithi187.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-04-15T21:04:53.437 INFO:teuthology.orchestra.run.smithi132.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [286 kB] 2024-04-15T21:04:53.444 INFO:teuthology.orchestra.run.smithi132.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-04-15T21:04:53.572 INFO:teuthology.orchestra.run.smithi187.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [699 kB] 2024-04-15T21:04:53.608 INFO:teuthology.orchestra.run.smithi132.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,075 kB] 2024-04-15T21:04:54.158 INFO:teuthology.orchestra.run.smithi187.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,075 kB] 2024-04-15T21:04:54.235 INFO:teuthology.orchestra.run.smithi132.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [699 kB] 2024-04-15T21:04:54.270 INFO:teuthology.orchestra.run.smithi187.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [245 kB] 2024-04-15T21:04:54.272 INFO:teuthology.orchestra.run.smithi132.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [245 kB] 2024-04-15T21:04:54.286 INFO:teuthology.orchestra.run.smithi132.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-04-15T21:04:54.286 INFO:teuthology.orchestra.run.smithi132.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [49.7 kB] 2024-04-15T21:04:54.289 INFO:teuthology.orchestra.run.smithi132.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [6,028 B] 2024-04-15T21:04:54.290 INFO:teuthology.orchestra.run.smithi132.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [12.1 kB] 2024-04-15T21:04:54.290 INFO:teuthology.orchestra.run.smithi187.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-04-15T21:04:54.291 INFO:teuthology.orchestra.run.smithi132.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-04-15T21:04:54.291 INFO:teuthology.orchestra.run.smithi132.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-04-15T21:04:54.292 INFO:teuthology.orchestra.run.smithi187.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [49.7 kB] 2024-04-15T21:04:54.295 INFO:teuthology.orchestra.run.smithi187.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [6,028 B] 2024-04-15T21:04:54.296 INFO:teuthology.orchestra.run.smithi187.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [12.1 kB] 2024-04-15T21:04:54.297 INFO:teuthology.orchestra.run.smithi187.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-04-15T21:04:54.297 INFO:teuthology.orchestra.run.smithi187.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-04-15T21:04:54.300 INFO:teuthology.orchestra.run.smithi187.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-04-15T21:04:54.305 INFO:teuthology.orchestra.run.smithi187.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-04-15T21:04:54.317 INFO:teuthology.orchestra.run.smithi132.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-04-15T21:04:54.320 INFO:teuthology.orchestra.run.smithi132.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-04-15T21:04:54.470 INFO:teuthology.orchestra.run.smithi187.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-04-15T21:04:54.485 INFO:teuthology.orchestra.run.smithi132.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-04-15T21:04:54.552 INFO:teuthology.orchestra.run.smithi187.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-04-15T21:04:54.568 INFO:teuthology.orchestra.run.smithi132.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-04-15T21:04:54.637 INFO:teuthology.orchestra.run.smithi187.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-04-15T21:04:54.669 INFO:teuthology.orchestra.run.smithi132.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-04-15T21:04:54.718 INFO:teuthology.orchestra.run.smithi187.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-04-15T21:04:54.731 INFO:teuthology.orchestra.run.smithi132.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-04-15T21:04:54.752 INFO:teuthology.orchestra.run.smithi187.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-04-15T21:04:54.761 INFO:teuthology.orchestra.run.smithi132.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-04-15T21:04:58.302 INFO:teuthology.orchestra.run.smithi133.stdout:Fetched 12.9 MB in 2s (6,765 kB/s) 2024-04-15T21:04:59.013 INFO:teuthology.orchestra.run.smithi132.stdout:Fetched 12.9 MB in 3s (5,132 kB/s) 2024-04-15T21:04:59.160 INFO:teuthology.orchestra.run.smithi187.stdout:Fetched 12.9 MB in 3s (5,065 kB/s) 2024-04-15T21:04:59.549 INFO:teuthology.orchestra.run.smithi133.stdout:Reading package lists... 2024-04-15T21:04:59.566 DEBUG:teuthology.orchestra.run.smithi133:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-15T21:04:59.627 INFO:teuthology.orchestra.run.smithi133.stdout:Reading package lists... 2024-04-15T21:04:59.824 INFO:teuthology.orchestra.run.smithi133.stdout:Building dependency tree... 2024-04-15T21:04:59.824 INFO:teuthology.orchestra.run.smithi133.stdout:Reading state information... 2024-04-15T21:04:59.985 INFO:teuthology.orchestra.run.smithi133.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T21:04:59.985 INFO:teuthology.orchestra.run.smithi133.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T21:04:59.985 INFO:teuthology.orchestra.run.smithi133.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T21:04:59.986 INFO:teuthology.orchestra.run.smithi133.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T21:04:59.986 INFO:teuthology.orchestra.run.smithi133.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-04-15T21:04:59.986 INFO:teuthology.orchestra.run.smithi133.stdout: python2.7-minimal 2024-04-15T21:04:59.986 INFO:teuthology.orchestra.run.smithi133.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T21:04:59.987 INFO:teuthology.orchestra.run.smithi133.stdout:The following additional packages will be installed: 2024-04-15T21:04:59.987 INFO:teuthology.orchestra.run.smithi133.stdout: linux-generic linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-15T21:04:59.987 INFO:teuthology.orchestra.run.smithi133.stdout: linux-headers-generic linux-image-5.15.0-102-generic 2024-04-15T21:04:59.988 INFO:teuthology.orchestra.run.smithi133.stdout: linux-modules-5.15.0-102-generic linux-modules-extra-5.15.0-102-generic 2024-04-15T21:04:59.989 INFO:teuthology.orchestra.run.smithi133.stdout:Suggested packages: 2024-04-15T21:04:59.989 INFO:teuthology.orchestra.run.smithi133.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-04-15T21:04:59.989 INFO:teuthology.orchestra.run.smithi133.stdout:Recommended packages: 2024-04-15T21:04:59.989 INFO:teuthology.orchestra.run.smithi133.stdout: thermald 2024-04-15T21:05:00.033 INFO:teuthology.orchestra.run.smithi133.stdout:The following NEW packages will be installed: 2024-04-15T21:05:00.033 INFO:teuthology.orchestra.run.smithi133.stdout: linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-15T21:05:00.033 INFO:teuthology.orchestra.run.smithi133.stdout: linux-image-5.15.0-102-generic linux-modules-5.15.0-102-generic 2024-04-15T21:05:00.034 INFO:teuthology.orchestra.run.smithi133.stdout: linux-modules-extra-5.15.0-102-generic 2024-04-15T21:05:00.034 INFO:teuthology.orchestra.run.smithi133.stdout:The following packages will be upgraded: 2024-04-15T21:05:00.035 INFO:teuthology.orchestra.run.smithi133.stdout: linux-generic linux-headers-generic linux-image-generic 2024-04-15T21:05:00.091 INFO:teuthology.orchestra.run.smithi133.stdout:3 upgraded, 5 newly installed, 0 to remove and 313 not upgraded. 2024-04-15T21:05:00.092 INFO:teuthology.orchestra.run.smithi133.stdout:Need to get 113 MB of archives. 2024-04-15T21:05:00.092 INFO:teuthology.orchestra.run.smithi133.stdout:After this operation, 583 MB of additional disk space will be used. 2024-04-15T21:05:00.092 INFO:teuthology.orchestra.run.smithi133.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-102-generic amd64 5.15.0-102.112 [22.7 MB] 2024-04-15T21:05:00.401 INFO:teuthology.orchestra.run.smithi132.stdout:Reading package lists... 2024-04-15T21:05:00.418 DEBUG:teuthology.orchestra.run.smithi132:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-15T21:05:00.478 INFO:teuthology.orchestra.run.smithi132.stdout:Reading package lists... 2024-04-15T21:05:00.499 INFO:teuthology.orchestra.run.smithi187.stdout:Reading package lists... 2024-04-15T21:05:00.516 DEBUG:teuthology.orchestra.run.smithi187:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-15T21:05:00.616 INFO:teuthology.orchestra.run.smithi187.stdout:Reading package lists... 2024-04-15T21:05:00.671 INFO:teuthology.orchestra.run.smithi132.stdout:Building dependency tree... 2024-04-15T21:05:00.671 INFO:teuthology.orchestra.run.smithi132.stdout:Reading state information... 2024-04-15T21:05:00.730 INFO:teuthology.orchestra.run.smithi133.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-102-generic amd64 5.15.0-102.112 [11.5 MB] 2024-04-15T21:05:00.815 INFO:teuthology.orchestra.run.smithi187.stdout:Building dependency tree... 2024-04-15T21:05:00.816 INFO:teuthology.orchestra.run.smithi187.stdout:Reading state information... 2024-04-15T21:05:00.841 INFO:teuthology.orchestra.run.smithi132.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T21:05:00.842 INFO:teuthology.orchestra.run.smithi132.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T21:05:00.842 INFO:teuthology.orchestra.run.smithi132.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T21:05:00.842 INFO:teuthology.orchestra.run.smithi132.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T21:05:00.842 INFO:teuthology.orchestra.run.smithi132.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-04-15T21:05:00.842 INFO:teuthology.orchestra.run.smithi132.stdout: python2.7-minimal 2024-04-15T21:05:00.842 INFO:teuthology.orchestra.run.smithi132.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T21:05:00.844 INFO:teuthology.orchestra.run.smithi132.stdout:The following additional packages will be installed: 2024-04-15T21:05:00.844 INFO:teuthology.orchestra.run.smithi132.stdout: linux-generic linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-15T21:05:00.844 INFO:teuthology.orchestra.run.smithi132.stdout: linux-headers-generic linux-image-5.15.0-102-generic 2024-04-15T21:05:00.844 INFO:teuthology.orchestra.run.smithi132.stdout: linux-modules-5.15.0-102-generic linux-modules-extra-5.15.0-102-generic 2024-04-15T21:05:00.845 INFO:teuthology.orchestra.run.smithi132.stdout:Suggested packages: 2024-04-15T21:05:00.845 INFO:teuthology.orchestra.run.smithi132.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-04-15T21:05:00.846 INFO:teuthology.orchestra.run.smithi132.stdout:Recommended packages: 2024-04-15T21:05:00.846 INFO:teuthology.orchestra.run.smithi132.stdout: thermald 2024-04-15T21:05:00.887 INFO:teuthology.orchestra.run.smithi133.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-102-generic amd64 5.15.0-102.112 [63.9 MB] 2024-04-15T21:05:00.893 INFO:teuthology.orchestra.run.smithi132.stdout:The following NEW packages will be installed: 2024-04-15T21:05:00.893 INFO:teuthology.orchestra.run.smithi132.stdout: linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-15T21:05:00.893 INFO:teuthology.orchestra.run.smithi132.stdout: linux-image-5.15.0-102-generic linux-modules-5.15.0-102-generic 2024-04-15T21:05:00.894 INFO:teuthology.orchestra.run.smithi132.stdout: linux-modules-extra-5.15.0-102-generic 2024-04-15T21:05:00.895 INFO:teuthology.orchestra.run.smithi132.stdout:The following packages will be upgraded: 2024-04-15T21:05:00.895 INFO:teuthology.orchestra.run.smithi132.stdout: linux-generic linux-headers-generic linux-image-generic 2024-04-15T21:05:00.979 INFO:teuthology.orchestra.run.smithi187.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T21:05:00.979 INFO:teuthology.orchestra.run.smithi187.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T21:05:00.979 INFO:teuthology.orchestra.run.smithi187.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T21:05:00.980 INFO:teuthology.orchestra.run.smithi187.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T21:05:00.980 INFO:teuthology.orchestra.run.smithi187.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-04-15T21:05:00.980 INFO:teuthology.orchestra.run.smithi187.stdout: python2.7-minimal 2024-04-15T21:05:00.980 INFO:teuthology.orchestra.run.smithi187.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T21:05:00.981 INFO:teuthology.orchestra.run.smithi187.stdout:The following additional packages will be installed: 2024-04-15T21:05:00.981 INFO:teuthology.orchestra.run.smithi187.stdout: linux-generic linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-15T21:05:00.981 INFO:teuthology.orchestra.run.smithi187.stdout: linux-headers-generic linux-image-5.15.0-102-generic 2024-04-15T21:05:00.982 INFO:teuthology.orchestra.run.smithi187.stdout: linux-modules-5.15.0-102-generic linux-modules-extra-5.15.0-102-generic 2024-04-15T21:05:00.983 INFO:teuthology.orchestra.run.smithi187.stdout:Suggested packages: 2024-04-15T21:05:00.983 INFO:teuthology.orchestra.run.smithi187.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-04-15T21:05:00.983 INFO:teuthology.orchestra.run.smithi187.stdout:Recommended packages: 2024-04-15T21:05:00.983 INFO:teuthology.orchestra.run.smithi187.stdout: thermald 2024-04-15T21:05:01.029 INFO:teuthology.orchestra.run.smithi187.stdout:The following NEW packages will be installed: 2024-04-15T21:05:01.029 INFO:teuthology.orchestra.run.smithi187.stdout: linux-headers-5.15.0-102 linux-headers-5.15.0-102-generic 2024-04-15T21:05:01.029 INFO:teuthology.orchestra.run.smithi187.stdout: linux-image-5.15.0-102-generic linux-modules-5.15.0-102-generic 2024-04-15T21:05:01.030 INFO:teuthology.orchestra.run.smithi187.stdout: linux-modules-extra-5.15.0-102-generic 2024-04-15T21:05:01.031 INFO:teuthology.orchestra.run.smithi187.stdout:The following packages will be upgraded: 2024-04-15T21:05:01.032 INFO:teuthology.orchestra.run.smithi187.stdout: linux-generic linux-headers-generic linux-image-generic 2024-04-15T21:05:01.075 INFO:teuthology.orchestra.run.smithi132.stdout:3 upgraded, 5 newly installed, 0 to remove and 313 not upgraded. 2024-04-15T21:05:01.075 INFO:teuthology.orchestra.run.smithi132.stdout:Need to get 113 MB of archives. 2024-04-15T21:05:01.075 INFO:teuthology.orchestra.run.smithi132.stdout:After this operation, 583 MB of additional disk space will be used. 2024-04-15T21:05:01.075 INFO:teuthology.orchestra.run.smithi132.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-102-generic amd64 5.15.0-102.112 [22.7 MB] 2024-04-15T21:05:01.151 INFO:teuthology.orchestra.run.smithi187.stdout:3 upgraded, 5 newly installed, 0 to remove and 313 not upgraded. 2024-04-15T21:05:01.152 INFO:teuthology.orchestra.run.smithi187.stdout:Need to get 113 MB of archives. 2024-04-15T21:05:01.152 INFO:teuthology.orchestra.run.smithi187.stdout:After this operation, 583 MB of additional disk space will be used. 2024-04-15T21:05:01.152 INFO:teuthology.orchestra.run.smithi187.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-102-generic amd64 5.15.0-102.112 [22.7 MB] 2024-04-15T21:05:02.107 INFO:teuthology.orchestra.run.smithi187.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-102-generic amd64 5.15.0-102.112 [11.5 MB] 2024-04-15T21:05:02.444 INFO:teuthology.orchestra.run.smithi187.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-102-generic amd64 5.15.0-102.112 [63.9 MB] 2024-04-15T21:05:02.481 INFO:teuthology.orchestra.run.smithi132.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-102-generic amd64 5.15.0-102.112 [11.5 MB] 2024-04-15T21:05:02.829 INFO:teuthology.orchestra.run.smithi132.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-102-generic amd64 5.15.0-102.112 [63.9 MB] 2024-04-15T21:05:03.118 INFO:teuthology.orchestra.run.smithi133.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.102.99 [1,700 B] 2024-04-15T21:05:03.118 INFO:teuthology.orchestra.run.smithi133.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.102.99 [2,512 B] 2024-04-15T21:05:03.118 INFO:teuthology.orchestra.run.smithi133.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-102 all 5.15.0-102.112 [12.4 MB] 2024-04-15T21:05:03.524 INFO:teuthology.orchestra.run.smithi133.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-102-generic amd64 5.15.0-102.112 [2,877 kB] 2024-04-15T21:05:03.628 INFO:teuthology.orchestra.run.smithi133.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.102.99 [2,360 B] 2024-04-15T21:05:03.963 INFO:teuthology.orchestra.run.smithi187.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.102.99 [1,700 B] 2024-04-15T21:05:03.963 INFO:teuthology.orchestra.run.smithi187.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.102.99 [2,512 B] 2024-04-15T21:05:03.963 INFO:teuthology.orchestra.run.smithi187.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-102 all 5.15.0-102.112 [12.4 MB] 2024-04-15T21:05:04.022 INFO:teuthology.orchestra.run.smithi133.stdout:Fetched 113 MB in 4s (31.6 MB/s) 2024-04-15T21:05:04.127 INFO:teuthology.orchestra.run.smithi187.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-102-generic amd64 5.15.0-102.112 [2,877 kB] 2024-04-15T21:05:04.198 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package linux-modules-5.15.0-102-generic. 2024-04-15T21:05:04.200 INFO:teuthology.orchestra.run.smithi187.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.102.99 [2,360 B] 2024-04-15T21:05:04.591 INFO:teuthology.orchestra.run.smithi187.stdout:Fetched 113 MB in 3s (35.9 MB/s) 2024-04-15T21:05:04.766 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package linux-modules-5.15.0-102-generic. 2024-04-15T21:05:05.005 INFO:teuthology.orchestra.run.smithi132.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.102.99 [1,700 B] 2024-04-15T21:05:05.005 INFO:teuthology.orchestra.run.smithi132.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.102.99 [2,512 B] 2024-04-15T21:05:05.006 INFO:teuthology.orchestra.run.smithi132.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-102 all 5.15.0-102.112 [12.4 MB] 2024-04-15T21:05:05.354 INFO:teuthology.orchestra.run.smithi132.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-102-generic amd64 5.15.0-102.112 [2,877 kB] 2024-04-15T21:05:05.434 INFO:teuthology.orchestra.run.smithi132.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.102.99 [2,360 B] 2024-04-15T21:05:05.837 INFO:teuthology.orchestra.run.smithi132.stdout:Fetched 113 MB in 5s (25.0 MB/s) 2024-04-15T21:05:06.029 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package linux-modules-5.15.0-102-generic. 2024-04-15T21:05:06.163 INFO:teuthology.orchestra.run.smithi133.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-04-15T21:05:06.168 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../0-linux-modules-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:05:06.253 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:06.797 INFO:teuthology.orchestra.run.smithi187.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-04-15T21:05:06.801 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../0-linux-modules-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:05:06.913 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:08.128 INFO:teuthology.orchestra.run.smithi132.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-04-15T21:05:08.134 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../0-linux-modules-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:05:08.345 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package linux-image-5.15.0-102-generic. 2024-04-15T21:05:08.351 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:08.367 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../1-linux-image-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:05:08.462 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:08.907 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-102-generic. 2024-04-15T21:05:08.927 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:05:08.965 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:09.073 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package linux-image-5.15.0-102-generic. 2024-04-15T21:05:09.094 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../1-linux-image-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:05:09.172 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:10.003 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-102-generic. 2024-04-15T21:05:10.023 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:05:10.061 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:10.977 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package linux-image-5.15.0-102-generic. 2024-04-15T21:05:10.999 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../1-linux-image-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:05:11.077 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:11.556 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-102-generic. 2024-04-15T21:05:11.577 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:05:11.606 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:15.982 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../3-linux-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T21:05:16.106 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking linux-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T21:05:16.439 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T21:05:16.560 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking linux-image-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T21:05:16.666 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../3-linux-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T21:05:16.766 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking linux-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T21:05:16.846 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package linux-headers-5.15.0-102. 2024-04-15T21:05:16.868 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../5-linux-headers-5.15.0-102_5.15.0-102.112_all.deb ... 2024-04-15T21:05:16.904 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-15T21:05:17.108 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T21:05:17.261 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking linux-image-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T21:05:17.573 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package linux-headers-5.15.0-102. 2024-04-15T21:05:17.595 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../5-linux-headers-5.15.0-102_5.15.0-102.112_all.deb ... 2024-04-15T21:05:17.639 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-15T21:05:18.325 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../3-linux-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T21:05:18.449 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking linux-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T21:05:18.825 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T21:05:18.961 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking linux-image-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T21:05:19.256 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package linux-headers-5.15.0-102. 2024-04-15T21:05:19.267 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../5-linux-headers-5.15.0-102_5.15.0-102.112_all.deb ... 2024-04-15T21:05:19.306 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-15T21:05:22.725 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package linux-headers-5.15.0-102-generic. 2024-04-15T21:05:22.762 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../6-linux-headers-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:05:22.792 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:23.151 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package linux-headers-5.15.0-102-generic. 2024-04-15T21:05:23.187 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../6-linux-headers-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:05:23.217 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:25.329 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T21:05:25.460 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package linux-headers-5.15.0-102-generic. 2024-04-15T21:05:25.460 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking linux-headers-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T21:05:25.497 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../6-linux-headers-5.15.0-102-generic_5.15.0-102.112_amd64.deb ... 2024-04-15T21:05:25.535 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:25.810 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-15T21:05:25.907 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:26.033 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up linux-headers-generic (5.15.0.102.99) ... 2024-04-15T21:05:26.162 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:26.477 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T21:05:26.628 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking linux-headers-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T21:05:27.053 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-15T21:05:27.199 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:27.326 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up linux-headers-generic (5.15.0.102.99) ... 2024-04-15T21:05:27.462 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:27.494 INFO:teuthology.orchestra.run.smithi133.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-04-15T21:05:27.495 INFO:teuthology.orchestra.run.smithi133.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-04-15T21:05:27.495 INFO:teuthology.orchestra.run.smithi133.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-102-generic 2024-04-15T21:05:27.495 INFO:teuthology.orchestra.run.smithi133.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-102-generic 2024-04-15T21:05:27.655 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:28.792 INFO:teuthology.orchestra.run.smithi187.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-04-15T21:05:28.792 INFO:teuthology.orchestra.run.smithi187.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-04-15T21:05:28.792 INFO:teuthology.orchestra.run.smithi187.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-102-generic 2024-04-15T21:05:28.792 INFO:teuthology.orchestra.run.smithi187.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-102-generic 2024-04-15T21:05:28.964 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:29.291 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.102.99_amd64.deb ... 2024-04-15T21:05:29.397 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking linux-headers-generic (5.15.0.102.99) over (5.15.0.56.54) ... 2024-04-15T21:05:29.507 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:29.730 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up linux-headers-5.15.0-102 (5.15.0-102.112) ... 2024-04-15T21:05:29.868 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up linux-headers-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:30.003 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up linux-headers-generic (5.15.0.102.99) ... 2024-04-15T21:05:30.131 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:30.365 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:30.883 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up linux-image-generic (5.15.0.102.99) ... 2024-04-15T21:05:31.009 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up linux-generic (5.15.0.102.99) ... 2024-04-15T21:05:31.136 INFO:teuthology.orchestra.run.smithi133.stdout:Processing triggers for linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:31.201 INFO:teuthology.orchestra.run.smithi133.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-04-15T21:05:31.201 INFO:teuthology.orchestra.run.smithi133.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-102-generic 2024-04-15T21:05:31.486 INFO:teuthology.orchestra.run.smithi132.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-04-15T21:05:31.486 INFO:teuthology.orchestra.run.smithi132.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-04-15T21:05:31.486 INFO:teuthology.orchestra.run.smithi132.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-102-generic 2024-04-15T21:05:31.486 INFO:teuthology.orchestra.run.smithi132.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-102-generic 2024-04-15T21:05:31.667 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up linux-modules-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:31.800 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up linux-image-generic (5.15.0.102.99) ... 2024-04-15T21:05:31.925 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up linux-generic (5.15.0.102.99) ... 2024-04-15T21:05:32.052 INFO:teuthology.orchestra.run.smithi187.stdout:Processing triggers for linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:32.124 INFO:teuthology.orchestra.run.smithi187.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-04-15T21:05:32.124 INFO:teuthology.orchestra.run.smithi187.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-102-generic 2024-04-15T21:05:33.085 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up linux-modules-extra-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:34.770 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up linux-image-generic (5.15.0.102.99) ... 2024-04-15T21:05:34.896 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up linux-generic (5.15.0.102.99) ... 2024-04-15T21:05:35.039 INFO:teuthology.orchestra.run.smithi132.stdout:Processing triggers for linux-image-5.15.0-102-generic (5.15.0-102.112) ... 2024-04-15T21:05:35.111 INFO:teuthology.orchestra.run.smithi132.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-04-15T21:05:35.111 INFO:teuthology.orchestra.run.smithi132.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-102-generic 2024-04-15T21:05:45.142 INFO:teuthology.orchestra.run.smithi133.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-04-15T21:05:45.142 INFO:teuthology.orchestra.run.smithi133.stdout:Sourcing file `/etc/default/grub' 2024-04-15T21:05:45.154 INFO:teuthology.orchestra.run.smithi133.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-15T21:05:45.214 INFO:teuthology.orchestra.run.smithi133.stdout:Generating grub configuration file ... 2024-04-15T21:05:45.504 INFO:teuthology.orchestra.run.smithi133.stdout:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-15T21:05:45.524 INFO:teuthology.orchestra.run.smithi133.stdout:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-15T21:05:45.868 INFO:teuthology.orchestra.run.smithi133.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-15T21:05:45.874 INFO:teuthology.orchestra.run.smithi133.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-15T21:05:45.943 INFO:teuthology.orchestra.run.smithi133.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-15T21:05:45.949 INFO:teuthology.orchestra.run.smithi133.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-15T21:05:46.123 INFO:teuthology.orchestra.run.smithi133.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-15T21:05:46.123 INFO:teuthology.orchestra.run.smithi133.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-04-15T21:05:46.123 INFO:teuthology.orchestra.run.smithi133.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-15T21:05:46.159 INFO:teuthology.orchestra.run.smithi133.stdout:done 2024-04-15T21:05:46.224 INFO:teuthology.orchestra.run.smithi187.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-04-15T21:05:46.225 INFO:teuthology.orchestra.run.smithi187.stdout:Sourcing file `/etc/default/grub' 2024-04-15T21:05:46.243 INFO:teuthology.orchestra.run.smithi187.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-15T21:05:46.261 INFO:teuthology.orchestra.run.smithi187.stdout:Generating grub configuration file ... 2024-04-15T21:05:46.588 DEBUG:teuthology.orchestra.run.smithi133:> dpkg -s linux-image-generic 2024-04-15T21:05:46.610 INFO:teuthology.orchestra.run.smithi133.stdout:Package: linux-image-generic 2024-04-15T21:05:46.610 INFO:teuthology.orchestra.run.smithi133.stdout:Status: install ok installed 2024-04-15T21:05:46.610 INFO:teuthology.orchestra.run.smithi133.stdout:Priority: optional 2024-04-15T21:05:46.610 INFO:teuthology.orchestra.run.smithi133.stdout:Section: kernel 2024-04-15T21:05:46.610 INFO:teuthology.orchestra.run.smithi133.stdout:Installed-Size: 21 2024-04-15T21:05:46.610 INFO:teuthology.orchestra.run.smithi133.stdout:Maintainer: Ubuntu Kernel Team 2024-04-15T21:05:46.610 INFO:teuthology.orchestra.run.smithi133.stdout:Architecture: amd64 2024-04-15T21:05:46.611 INFO:teuthology.orchestra.run.smithi133.stdout:Source: linux-meta 2024-04-15T21:05:46.611 INFO:teuthology.orchestra.run.smithi133.stdout:Version: 5.15.0.102.99 2024-04-15T21:05:46.611 INFO:teuthology.orchestra.run.smithi133.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-102), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-15T21:05:46.611 INFO:teuthology.orchestra.run.smithi133.stdout:Depends: linux-image-5.15.0-102-generic, linux-modules-extra-5.15.0-102-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-15T21:05:46.611 INFO:teuthology.orchestra.run.smithi133.stdout:Recommends: thermald 2024-04-15T21:05:46.611 INFO:teuthology.orchestra.run.smithi133.stdout:Description: Generic Linux kernel image 2024-04-15T21:05:46.611 INFO:teuthology.orchestra.run.smithi133.stdout: This package will always depend on the latest generic kernel image 2024-04-15T21:05:46.611 INFO:teuthology.orchestra.run.smithi133.stdout: available. 2024-04-15T21:05:46.612 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-102-generic 2024-04-15T21:05:46.612 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T21:05:46.612 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T21:05:46.612 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-15T21:05:46.612 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi133.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T21:05:46.613 DEBUG:teuthology.orchestra.run.smithi133:> sudo apt-get clean 2024-04-15T21:05:46.634 INFO:teuthology.orchestra.run.smithi187.stdout:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-15T21:05:46.649 INFO:teuthology.orchestra.run.smithi187.stdout:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-15T21:05:46.805 DEBUG:teuthology.orchestra.run.smithi133:> sudo apt-get update 2024-04-15T21:05:46.969 INFO:teuthology.orchestra.run.smithi133.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T21:05:47.002 INFO:teuthology.orchestra.run.smithi133.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-15T21:05:47.043 INFO:teuthology.orchestra.run.smithi133.stdout:Hit:3 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-15T21:05:47.045 INFO:teuthology.orchestra.run.smithi133.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-15T21:05:47.073 INFO:teuthology.orchestra.run.smithi187.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-15T21:05:47.079 INFO:teuthology.orchestra.run.smithi187.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-15T21:05:47.156 INFO:teuthology.orchestra.run.smithi187.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-15T21:05:47.161 INFO:teuthology.orchestra.run.smithi187.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-15T21:05:47.327 INFO:teuthology.orchestra.run.smithi187.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-15T21:05:47.327 INFO:teuthology.orchestra.run.smithi187.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-04-15T21:05:47.327 INFO:teuthology.orchestra.run.smithi187.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-15T21:05:47.377 INFO:teuthology.orchestra.run.smithi187.stdout:done 2024-04-15T21:05:47.857 DEBUG:teuthology.orchestra.run.smithi187:> dpkg -s linux-image-generic 2024-04-15T21:05:47.922 INFO:teuthology.orchestra.run.smithi187.stdout:Package: linux-image-generic 2024-04-15T21:05:47.923 INFO:teuthology.orchestra.run.smithi187.stdout:Status: install ok installed 2024-04-15T21:05:47.923 INFO:teuthology.orchestra.run.smithi187.stdout:Priority: optional 2024-04-15T21:05:47.923 INFO:teuthology.orchestra.run.smithi187.stdout:Section: kernel 2024-04-15T21:05:47.923 INFO:teuthology.orchestra.run.smithi187.stdout:Installed-Size: 21 2024-04-15T21:05:47.923 INFO:teuthology.orchestra.run.smithi187.stdout:Maintainer: Ubuntu Kernel Team 2024-04-15T21:05:47.923 INFO:teuthology.orchestra.run.smithi187.stdout:Architecture: amd64 2024-04-15T21:05:47.923 INFO:teuthology.orchestra.run.smithi187.stdout:Source: linux-meta 2024-04-15T21:05:47.923 INFO:teuthology.orchestra.run.smithi187.stdout:Version: 5.15.0.102.99 2024-04-15T21:05:47.923 INFO:teuthology.orchestra.run.smithi187.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-102), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-15T21:05:47.923 INFO:teuthology.orchestra.run.smithi187.stdout:Depends: linux-image-5.15.0-102-generic, linux-modules-extra-5.15.0-102-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-15T21:05:47.923 INFO:teuthology.orchestra.run.smithi187.stdout:Recommends: thermald 2024-04-15T21:05:47.923 INFO:teuthology.orchestra.run.smithi187.stdout:Description: Generic Linux kernel image 2024-04-15T21:05:47.923 INFO:teuthology.orchestra.run.smithi187.stdout: This package will always depend on the latest generic kernel image 2024-04-15T21:05:47.923 INFO:teuthology.orchestra.run.smithi187.stdout: available. 2024-04-15T21:05:47.924 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-102-generic 2024-04-15T21:05:47.924 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T21:05:47.924 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T21:05:47.924 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-04-15T21:05:47.924 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi187.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T21:05:47.924 DEBUG:teuthology.orchestra.run.smithi187:> sudo apt-get clean 2024-04-15T21:05:48.108 DEBUG:teuthology.orchestra.run.smithi187:> sudo apt-get update 2024-04-15T21:05:48.231 INFO:teuthology.orchestra.run.smithi187.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-15T21:05:48.257 INFO:teuthology.orchestra.run.smithi133.stdout:Reading package lists... 2024-04-15T21:05:48.275 DEBUG:teuthology.orchestra.run.smithi133:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-15T21:05:48.334 INFO:teuthology.orchestra.run.smithi133.stdout:Reading package lists... 2024-04-15T21:05:48.348 INFO:teuthology.orchestra.run.smithi187.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T21:05:48.430 INFO:teuthology.orchestra.run.smithi187.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-15T21:05:48.510 INFO:teuthology.orchestra.run.smithi187.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-15T21:05:48.530 INFO:teuthology.orchestra.run.smithi133.stdout:Building dependency tree... 2024-04-15T21:05:48.531 INFO:teuthology.orchestra.run.smithi133.stdout:Reading state information... 2024-04-15T21:05:48.705 INFO:teuthology.orchestra.run.smithi133.stdout:linux-image-generic is already the newest version (5.15.0.102.99). 2024-04-15T21:05:48.705 INFO:teuthology.orchestra.run.smithi133.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T21:05:48.705 INFO:teuthology.orchestra.run.smithi133.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T21:05:48.705 INFO:teuthology.orchestra.run.smithi133.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T21:05:48.706 INFO:teuthology.orchestra.run.smithi133.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T21:05:48.706 INFO:teuthology.orchestra.run.smithi133.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-15T21:05:48.706 INFO:teuthology.orchestra.run.smithi133.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-15T21:05:48.706 INFO:teuthology.orchestra.run.smithi133.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T21:05:48.745 INFO:teuthology.orchestra.run.smithi133.stdout:0 upgraded, 0 newly installed, 0 to remove and 313 not upgraded. 2024-04-15T21:05:48.747 DEBUG:teuthology.orchestra.run.smithi133:> dpkg -s linux-image-generic 2024-04-15T21:05:48.807 INFO:teuthology.orchestra.run.smithi133.stdout:Package: linux-image-generic 2024-04-15T21:05:48.807 INFO:teuthology.orchestra.run.smithi133.stdout:Status: install ok installed 2024-04-15T21:05:48.807 INFO:teuthology.orchestra.run.smithi133.stdout:Priority: optional 2024-04-15T21:05:48.807 INFO:teuthology.orchestra.run.smithi133.stdout:Section: kernel 2024-04-15T21:05:48.807 INFO:teuthology.orchestra.run.smithi133.stdout:Installed-Size: 21 2024-04-15T21:05:48.807 INFO:teuthology.orchestra.run.smithi133.stdout:Maintainer: Ubuntu Kernel Team 2024-04-15T21:05:48.808 INFO:teuthology.orchestra.run.smithi133.stdout:Architecture: amd64 2024-04-15T21:05:48.808 INFO:teuthology.orchestra.run.smithi133.stdout:Source: linux-meta 2024-04-15T21:05:48.808 INFO:teuthology.orchestra.run.smithi133.stdout:Version: 5.15.0.102.99 2024-04-15T21:05:48.808 INFO:teuthology.orchestra.run.smithi133.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-102), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-15T21:05:48.808 INFO:teuthology.orchestra.run.smithi133.stdout:Depends: linux-image-5.15.0-102-generic, linux-modules-extra-5.15.0-102-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-15T21:05:48.808 INFO:teuthology.orchestra.run.smithi133.stdout:Recommends: thermald 2024-04-15T21:05:48.808 INFO:teuthology.orchestra.run.smithi133.stdout:Description: Generic Linux kernel image 2024-04-15T21:05:48.808 INFO:teuthology.orchestra.run.smithi133.stdout: This package will always depend on the latest generic kernel image 2024-04-15T21:05:48.808 INFO:teuthology.orchestra.run.smithi133.stdout: available. 2024-04-15T21:05:48.809 DEBUG:teuthology.orchestra.run.smithi133:> mktemp 2024-04-15T21:05:48.852 INFO:teuthology.orchestra.run.smithi133.stdout:/tmp/tmp.BS4y1vwwfA 2024-04-15T21:05:48.853 DEBUG:teuthology.orchestra.run.smithi133:> sudo cp /boot/grub/grub.cfg /tmp/tmp.BS4y1vwwfA 2024-04-15T21:05:48.908 DEBUG:teuthology.orchestra.run.smithi133:> sudo chmod 0666 /tmp/tmp.BS4y1vwwfA 2024-04-15T21:05:49.030 DEBUG:teuthology.orchestra.remote:smithi133:/tmp/tmp.BS4y1vwwfA is 10KB 2024-04-15T21:05:49.043 DEBUG:teuthology.orchestra.run.smithi133:> rm -fr /tmp/tmp.BS4y1vwwfA 2024-04-15T21:05:49.048 DEBUG:teuthology.orchestra.run.smithi133:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-04-15T21:05:49.104 DEBUG:teuthology.orchestra.run.smithi133:> set -ex 2024-04-15T21:05:49.105 DEBUG:teuthology.orchestra.run.smithi133:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-04-15T21:05:49.105 DEBUG:teuthology.orchestra.run.smithi133:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-04-15T21:05:49.173 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-102-generic 2024-04-15T21:05:49.173 DEBUG:teuthology.orchestra.run.smithi133:> sudo update-grub 2024-04-15T21:05:49.452 INFO:teuthology.orchestra.run.smithi132.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-04-15T21:05:49.452 INFO:teuthology.orchestra.run.smithi132.stdout:Sourcing file `/etc/default/grub' 2024-04-15T21:05:49.477 INFO:teuthology.orchestra.run.smithi132.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-15T21:05:49.499 INFO:teuthology.orchestra.run.smithi132.stdout:Generating grub configuration file ... 2024-04-15T21:05:49.601 INFO:teuthology.orchestra.run.smithi187.stdout:Reading package lists... 2024-04-15T21:05:49.619 DEBUG:teuthology.orchestra.run.smithi187:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-15T21:05:49.678 INFO:teuthology.orchestra.run.smithi187.stdout:Reading package lists... 2024-04-15T21:05:49.789 INFO:teuthology.orchestra.run.smithi132.stdout:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-15T21:05:49.812 INFO:teuthology.orchestra.run.smithi132.stdout:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-15T21:05:49.886 INFO:teuthology.orchestra.run.smithi187.stdout:Building dependency tree... 2024-04-15T21:05:49.887 INFO:teuthology.orchestra.run.smithi187.stdout:Reading state information... 2024-04-15T21:05:50.053 INFO:teuthology.orchestra.run.smithi187.stdout:linux-image-generic is already the newest version (5.15.0.102.99). 2024-04-15T21:05:50.054 INFO:teuthology.orchestra.run.smithi187.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T21:05:50.054 INFO:teuthology.orchestra.run.smithi187.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T21:05:50.054 INFO:teuthology.orchestra.run.smithi187.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T21:05:50.054 INFO:teuthology.orchestra.run.smithi187.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T21:05:50.054 INFO:teuthology.orchestra.run.smithi187.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-15T21:05:50.054 INFO:teuthology.orchestra.run.smithi187.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-15T21:05:50.054 INFO:teuthology.orchestra.run.smithi187.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T21:05:50.092 INFO:teuthology.orchestra.run.smithi187.stdout:0 upgraded, 0 newly installed, 0 to remove and 313 not upgraded. 2024-04-15T21:05:50.094 DEBUG:teuthology.orchestra.run.smithi187:> dpkg -s linux-image-generic 2024-04-15T21:05:50.109 INFO:teuthology.orchestra.run.smithi187.stdout:Package: linux-image-generic 2024-04-15T21:05:50.109 INFO:teuthology.orchestra.run.smithi187.stdout:Status: install ok installed 2024-04-15T21:05:50.109 INFO:teuthology.orchestra.run.smithi187.stdout:Priority: optional 2024-04-15T21:05:50.109 INFO:teuthology.orchestra.run.smithi187.stdout:Section: kernel 2024-04-15T21:05:50.109 INFO:teuthology.orchestra.run.smithi187.stdout:Installed-Size: 21 2024-04-15T21:05:50.109 INFO:teuthology.orchestra.run.smithi187.stdout:Maintainer: Ubuntu Kernel Team 2024-04-15T21:05:50.109 INFO:teuthology.orchestra.run.smithi187.stdout:Architecture: amd64 2024-04-15T21:05:50.109 INFO:teuthology.orchestra.run.smithi187.stdout:Source: linux-meta 2024-04-15T21:05:50.109 INFO:teuthology.orchestra.run.smithi187.stdout:Version: 5.15.0.102.99 2024-04-15T21:05:50.109 INFO:teuthology.orchestra.run.smithi187.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-102), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-15T21:05:50.109 INFO:teuthology.orchestra.run.smithi187.stdout:Depends: linux-image-5.15.0-102-generic, linux-modules-extra-5.15.0-102-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-15T21:05:50.109 INFO:teuthology.orchestra.run.smithi187.stdout:Recommends: thermald 2024-04-15T21:05:50.110 INFO:teuthology.orchestra.run.smithi187.stdout:Description: Generic Linux kernel image 2024-04-15T21:05:50.110 INFO:teuthology.orchestra.run.smithi187.stdout: This package will always depend on the latest generic kernel image 2024-04-15T21:05:50.110 INFO:teuthology.orchestra.run.smithi187.stdout: available. 2024-04-15T21:05:50.110 DEBUG:teuthology.orchestra.run.smithi187:> mktemp 2024-04-15T21:05:50.153 INFO:teuthology.orchestra.run.smithi187.stdout:/tmp/tmp.CI2t0WX5qN 2024-04-15T21:05:50.153 DEBUG:teuthology.orchestra.run.smithi187:> sudo cp /boot/grub/grub.cfg /tmp/tmp.CI2t0WX5qN 2024-04-15T21:05:50.154 INFO:teuthology.orchestra.run.smithi132.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-15T21:05:50.159 INFO:teuthology.orchestra.run.smithi132.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-15T21:05:50.209 DEBUG:teuthology.orchestra.run.smithi187:> sudo chmod 0666 /tmp/tmp.CI2t0WX5qN 2024-04-15T21:05:50.223 INFO:teuthology.orchestra.run.smithi132.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-15T21:05:50.230 INFO:teuthology.orchestra.run.smithi132.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-15T21:05:50.322 DEBUG:teuthology.orchestra.remote:smithi187:/tmp/tmp.CI2t0WX5qN is 10KB 2024-04-15T21:05:50.334 DEBUG:teuthology.orchestra.run.smithi187:> rm -fr /tmp/tmp.CI2t0WX5qN 2024-04-15T21:05:50.340 DEBUG:teuthology.orchestra.run.smithi187:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-04-15T21:05:50.369 INFO:teuthology.orchestra.run.smithi133.stderr:Sourcing file `/etc/default/grub' 2024-04-15T21:05:50.371 INFO:teuthology.orchestra.run.smithi133.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-15T21:05:50.375 INFO:teuthology.orchestra.run.smithi133.stderr:Generating grub configuration file ... 2024-04-15T21:05:50.397 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-04-15T21:05:50.397 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-04-15T21:05:50.397 DEBUG:teuthology.orchestra.run.smithi187:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-04-15T21:05:50.408 INFO:teuthology.orchestra.run.smithi132.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-15T21:05:50.408 INFO:teuthology.orchestra.run.smithi132.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-04-15T21:05:50.408 INFO:teuthology.orchestra.run.smithi132.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-15T21:05:50.449 INFO:teuthology.orchestra.run.smithi132.stdout:done 2024-04-15T21:05:50.478 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-102-generic 2024-04-15T21:05:50.478 DEBUG:teuthology.orchestra.run.smithi187:> sudo update-grub 2024-04-15T21:05:50.563 INFO:teuthology.orchestra.run.smithi133.stderr:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-15T21:05:50.570 INFO:teuthology.orchestra.run.smithi133.stderr:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-15T21:05:50.865 INFO:teuthology.orchestra.run.smithi133.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-15T21:05:50.871 INFO:teuthology.orchestra.run.smithi133.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-15T21:05:50.911 INFO:teuthology.orchestra.run.smithi133.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-15T21:05:50.917 INFO:teuthology.orchestra.run.smithi133.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-15T21:05:50.932 DEBUG:teuthology.orchestra.run.smithi132:> dpkg -s linux-image-generic 2024-04-15T21:05:50.963 INFO:teuthology.orchestra.run.smithi132.stdout:Package: linux-image-generic 2024-04-15T21:05:50.963 INFO:teuthology.orchestra.run.smithi132.stdout:Status: install ok installed 2024-04-15T21:05:50.963 INFO:teuthology.orchestra.run.smithi132.stdout:Priority: optional 2024-04-15T21:05:50.963 INFO:teuthology.orchestra.run.smithi132.stdout:Section: kernel 2024-04-15T21:05:50.963 INFO:teuthology.orchestra.run.smithi132.stdout:Installed-Size: 21 2024-04-15T21:05:50.963 INFO:teuthology.orchestra.run.smithi132.stdout:Maintainer: Ubuntu Kernel Team 2024-04-15T21:05:50.963 INFO:teuthology.orchestra.run.smithi132.stdout:Architecture: amd64 2024-04-15T21:05:50.963 INFO:teuthology.orchestra.run.smithi132.stdout:Source: linux-meta 2024-04-15T21:05:50.963 INFO:teuthology.orchestra.run.smithi132.stdout:Version: 5.15.0.102.99 2024-04-15T21:05:50.963 INFO:teuthology.orchestra.run.smithi132.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-102), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-15T21:05:50.963 INFO:teuthology.orchestra.run.smithi132.stdout:Depends: linux-image-5.15.0-102-generic, linux-modules-extra-5.15.0-102-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-15T21:05:50.963 INFO:teuthology.orchestra.run.smithi132.stdout:Recommends: thermald 2024-04-15T21:05:50.963 INFO:teuthology.orchestra.run.smithi132.stdout:Description: Generic Linux kernel image 2024-04-15T21:05:50.963 INFO:teuthology.orchestra.run.smithi132.stdout: This package will always depend on the latest generic kernel image 2024-04-15T21:05:50.964 INFO:teuthology.orchestra.run.smithi132.stdout: available. 2024-04-15T21:05:50.964 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-102-generic 2024-04-15T21:05:50.964 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T21:05:50.965 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T21:05:50.965 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-15T21:05:50.965 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi132.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T21:05:50.965 DEBUG:teuthology.orchestra.run.smithi132:> sudo apt-get clean 2024-04-15T21:05:51.048 INFO:teuthology.orchestra.run.smithi133.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-15T21:05:51.048 INFO:teuthology.orchestra.run.smithi133.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-04-15T21:05:51.048 INFO:teuthology.orchestra.run.smithi133.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-15T21:05:51.061 INFO:teuthology.orchestra.run.smithi133.stderr:done 2024-04-15T21:05:51.075 DEBUG:teuthology.orchestra.run.smithi133:> sudo shutdown -r now 2024-04-15T21:05:51.133 DEBUG:teuthology.orchestra.run.smithi132:> sudo apt-get update 2024-04-15T21:05:51.257 INFO:teuthology.orchestra.run.smithi132.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T21:05:51.269 INFO:teuthology.orchestra.run.smithi132.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-15T21:05:51.289 INFO:teuthology.orchestra.run.smithi132.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-15T21:05:51.373 INFO:teuthology.orchestra.run.smithi132.stdout:Hit:4 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-15T21:05:51.802 INFO:teuthology.orchestra.run.smithi187.stderr:Sourcing file `/etc/default/grub' 2024-04-15T21:05:51.804 INFO:teuthology.orchestra.run.smithi187.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-15T21:05:51.807 INFO:teuthology.orchestra.run.smithi187.stderr:Generating grub configuration file ... 2024-04-15T21:05:51.989 INFO:teuthology.orchestra.run.smithi187.stderr:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-15T21:05:51.995 INFO:teuthology.orchestra.run.smithi187.stderr:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-15T21:05:52.283 INFO:teuthology.orchestra.run.smithi187.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-15T21:05:52.288 INFO:teuthology.orchestra.run.smithi187.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-15T21:05:52.326 INFO:teuthology.orchestra.run.smithi187.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-15T21:05:52.330 INFO:teuthology.orchestra.run.smithi187.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-15T21:05:52.443 INFO:teuthology.orchestra.run.smithi187.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-15T21:05:52.443 INFO:teuthology.orchestra.run.smithi187.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-04-15T21:05:52.443 INFO:teuthology.orchestra.run.smithi187.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-15T21:05:52.453 INFO:teuthology.orchestra.run.smithi187.stderr:done 2024-04-15T21:05:52.458 DEBUG:teuthology.orchestra.run.smithi187:> sudo shutdown -r now 2024-04-15T21:05:52.635 INFO:teuthology.orchestra.run.smithi132.stdout:Reading package lists... 2024-04-15T21:05:52.653 DEBUG:teuthology.orchestra.run.smithi132:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-15T21:05:52.703 INFO:teuthology.orchestra.run.smithi132.stdout:Reading package lists... 2024-04-15T21:05:52.879 INFO:teuthology.orchestra.run.smithi132.stdout:Building dependency tree... 2024-04-15T21:05:52.880 INFO:teuthology.orchestra.run.smithi132.stdout:Reading state information... 2024-04-15T21:05:53.036 INFO:teuthology.orchestra.run.smithi132.stdout:linux-image-generic is already the newest version (5.15.0.102.99). 2024-04-15T21:05:53.036 INFO:teuthology.orchestra.run.smithi132.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T21:05:53.036 INFO:teuthology.orchestra.run.smithi132.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T21:05:53.036 INFO:teuthology.orchestra.run.smithi132.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T21:05:53.036 INFO:teuthology.orchestra.run.smithi132.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T21:05:53.036 INFO:teuthology.orchestra.run.smithi132.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-15T21:05:53.037 INFO:teuthology.orchestra.run.smithi132.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-15T21:05:53.037 INFO:teuthology.orchestra.run.smithi132.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T21:05:53.074 INFO:teuthology.orchestra.run.smithi132.stdout:0 upgraded, 0 newly installed, 0 to remove and 313 not upgraded. 2024-04-15T21:05:53.076 DEBUG:teuthology.orchestra.run.smithi132:> dpkg -s linux-image-generic 2024-04-15T21:05:53.133 INFO:teuthology.orchestra.run.smithi132.stdout:Package: linux-image-generic 2024-04-15T21:05:53.134 INFO:teuthology.orchestra.run.smithi132.stdout:Status: install ok installed 2024-04-15T21:05:53.134 INFO:teuthology.orchestra.run.smithi132.stdout:Priority: optional 2024-04-15T21:05:53.134 INFO:teuthology.orchestra.run.smithi132.stdout:Section: kernel 2024-04-15T21:05:53.134 INFO:teuthology.orchestra.run.smithi132.stdout:Installed-Size: 21 2024-04-15T21:05:53.134 INFO:teuthology.orchestra.run.smithi132.stdout:Maintainer: Ubuntu Kernel Team 2024-04-15T21:05:53.134 INFO:teuthology.orchestra.run.smithi132.stdout:Architecture: amd64 2024-04-15T21:05:53.134 INFO:teuthology.orchestra.run.smithi132.stdout:Source: linux-meta 2024-04-15T21:05:53.134 INFO:teuthology.orchestra.run.smithi132.stdout:Version: 5.15.0.102.99 2024-04-15T21:05:53.134 INFO:teuthology.orchestra.run.smithi132.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-102), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-15T21:05:53.134 INFO:teuthology.orchestra.run.smithi132.stdout:Depends: linux-image-5.15.0-102-generic, linux-modules-extra-5.15.0-102-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-15T21:05:53.134 INFO:teuthology.orchestra.run.smithi132.stdout:Recommends: thermald 2024-04-15T21:05:53.134 INFO:teuthology.orchestra.run.smithi132.stdout:Description: Generic Linux kernel image 2024-04-15T21:05:53.134 INFO:teuthology.orchestra.run.smithi132.stdout: This package will always depend on the latest generic kernel image 2024-04-15T21:05:53.135 INFO:teuthology.orchestra.run.smithi132.stdout: available. 2024-04-15T21:05:53.135 DEBUG:teuthology.orchestra.run.smithi132:> mktemp 2024-04-15T21:05:53.179 INFO:teuthology.orchestra.run.smithi132.stdout:/tmp/tmp.LSChjsGfFC 2024-04-15T21:05:53.179 DEBUG:teuthology.orchestra.run.smithi132:> sudo cp /boot/grub/grub.cfg /tmp/tmp.LSChjsGfFC 2024-04-15T21:05:53.251 DEBUG:teuthology.orchestra.run.smithi132:> sudo chmod 0666 /tmp/tmp.LSChjsGfFC 2024-04-15T21:05:53.370 DEBUG:teuthology.orchestra.remote:smithi132:/tmp/tmp.LSChjsGfFC is 10KB 2024-04-15T21:05:53.383 DEBUG:teuthology.orchestra.run.smithi132:> rm -fr /tmp/tmp.LSChjsGfFC 2024-04-15T21:05:53.388 DEBUG:teuthology.orchestra.run.smithi132:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-04-15T21:05:53.443 DEBUG:teuthology.orchestra.run.smithi132:> set -ex 2024-04-15T21:05:53.444 DEBUG:teuthology.orchestra.run.smithi132:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-04-15T21:05:53.444 DEBUG:teuthology.orchestra.run.smithi132:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-04-15T21:05:53.509 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-102-generic 2024-04-15T21:05:53.510 DEBUG:teuthology.orchestra.run.smithi132:> sudo update-grub 2024-04-15T21:05:54.770 INFO:teuthology.orchestra.run.smithi132.stderr:Sourcing file `/etc/default/grub' 2024-04-15T21:05:54.771 INFO:teuthology.orchestra.run.smithi132.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-15T21:05:54.774 INFO:teuthology.orchestra.run.smithi132.stderr:Generating grub configuration file ... 2024-04-15T21:05:54.992 INFO:teuthology.orchestra.run.smithi132.stderr:Found linux image: /boot/vmlinuz-5.15.0-102-generic 2024-04-15T21:05:54.999 INFO:teuthology.orchestra.run.smithi132.stderr:Found initrd image: /boot/initrd.img-5.15.0-102-generic 2024-04-15T21:05:55.267 INFO:teuthology.orchestra.run.smithi132.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-15T21:05:55.273 INFO:teuthology.orchestra.run.smithi132.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-15T21:05:55.316 INFO:teuthology.orchestra.run.smithi132.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-15T21:05:55.322 INFO:teuthology.orchestra.run.smithi132.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-15T21:05:55.473 INFO:teuthology.orchestra.run.smithi132.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-15T21:05:55.473 INFO:teuthology.orchestra.run.smithi132.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-04-15T21:05:55.473 INFO:teuthology.orchestra.run.smithi132.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-15T21:05:55.485 INFO:teuthology.orchestra.run.smithi132.stderr:done 2024-04-15T21:05:55.487 DEBUG:teuthology.orchestra.run.smithi132:> sudo shutdown -r now 2024-04-15T21:06:21.099 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-15T21:06:21.100 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi133.front.sepia.ceph.com' 2024-04-15T21:06:21.101 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi133.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:06:22.461 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-04-15T21:06:22.461 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi187.front.sepia.ceph.com' 2024-04-15T21:06:22.461 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi187.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:06:25.492 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-15T21:06:25.492 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi132.front.sepia.ceph.com' 2024-04-15T21:06:25.492 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi132.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:06:39.519 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.133 2024-04-15T21:06:40.798 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.187 2024-04-15T21:06:43.870 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.132 2024-04-15T21:06:48.522 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi133.front.sepia.ceph.com' 2024-04-15T21:06:48.523 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi133.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:06:49.800 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi187.front.sepia.ceph.com' 2024-04-15T21:06:49.801 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi187.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:06:51.582 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.133 2024-04-15T21:06:52.866 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.187 2024-04-15T21:06:52.872 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi132.front.sepia.ceph.com' 2024-04-15T21:06:52.872 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi132.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:06:55.934 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.132 2024-04-15T21:07:03.593 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi133.front.sepia.ceph.com' 2024-04-15T21:07:03.594 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi133.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:07:04.869 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi187.front.sepia.ceph.com' 2024-04-15T21:07:04.869 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi187.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:07:07.938 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi132.front.sepia.ceph.com' 2024-04-15T21:07:07.939 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi132.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:07:22.014 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.133 2024-04-15T21:07:26.370 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.132 2024-04-15T21:07:36.864 DEBUG:teuthology.orchestra.run.smithi187:> true 2024-04-15T21:07:37.015 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi133.front.sepia.ceph.com' 2024-04-15T21:07:37.016 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi133.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:07:37.520 DEBUG:teuthology.orchestra.run.smithi133:> true 2024-04-15T21:07:37.777 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi187.front.sepia.ceph.com' 2024-04-15T21:07:37.777 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.15.0-102-generic"... 2024-04-15T21:07:37.777 DEBUG:teuthology.orchestra.run.smithi187:> uname -r 2024-04-15T21:07:37.782 INFO:teuthology.orchestra.run.smithi187.stdout:5.15.0-102-generic 2024-04-15T21:07:37.783 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-102-generic vs 5.15.0-102-generic 2024-04-15T21:07:37.783 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T21:07:37.783 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-04-15T21:07:38.370 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi133.front.sepia.ceph.com' 2024-04-15T21:07:38.370 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-102-generic"... 2024-04-15T21:07:38.370 DEBUG:teuthology.orchestra.run.smithi133:> uname -r 2024-04-15T21:07:38.418 INFO:teuthology.orchestra.run.smithi133.stdout:5.15.0-102-generic 2024-04-15T21:07:38.418 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-102-generic vs 5.15.0-102-generic 2024-04-15T21:07:38.418 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T21:07:38.418 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-04-15T21:07:38.783 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-04-15T21:07:38.784 DEBUG:teuthology.orchestra.run.smithi187:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T21:07:39.153 INFO:teuthology.orchestra.run.smithi187.stdout:ttyS1 2024-04-15T21:07:39.179 DEBUG:teuthology.parallel:result is None 2024-04-15T21:07:39.420 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-15T21:07:39.420 DEBUG:teuthology.orchestra.run.smithi133:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T21:07:39.496 INFO:teuthology.orchestra.run.smithi133.stdout:ttyS1 2024-04-15T21:07:39.528 DEBUG:teuthology.parallel:result is None 2024-04-15T21:07:41.371 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi132.front.sepia.ceph.com' 2024-04-15T21:07:41.372 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi132.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:07:41.588 DEBUG:teuthology.orchestra.run.smithi132:> true 2024-04-15T21:07:42.193 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi132.front.sepia.ceph.com' 2024-04-15T21:07:42.193 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-102-generic"... 2024-04-15T21:07:42.193 DEBUG:teuthology.orchestra.run.smithi132:> uname -r 2024-04-15T21:07:42.241 INFO:teuthology.orchestra.run.smithi132.stdout:5.15.0-102-generic 2024-04-15T21:07:42.241 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-102-generic vs 5.15.0-102-generic 2024-04-15T21:07:42.241 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T21:07:42.241 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-04-15T21:07:43.242 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-15T21:07:43.243 DEBUG:teuthology.orchestra.run.smithi132:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T21:07:43.635 INFO:teuthology.orchestra.run.smithi132.stdout:ttyS1 2024-04-15T21:07:43.666 DEBUG:teuthology.parallel:result is None 2024-04-15T21:07:43.666 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-15T21:07:43.673 INFO:teuthology.task.internal:Creating test directory... 2024-04-15T21:07:43.674 DEBUG:teuthology.orchestra.run.smithi132:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T21:07:43.676 DEBUG:teuthology.orchestra.run.smithi133:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T21:07:43.678 DEBUG:teuthology.orchestra.run.smithi187:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T21:07:43.685 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-15T21:07:43.719 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-15T21:07:43.769 INFO:teuthology.task.internal:Creating archive directory... 2024-04-15T21:07:43.769 DEBUG:teuthology.orchestra.run.smithi132:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T21:07:43.773 DEBUG:teuthology.orchestra.run.smithi133:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T21:07:43.775 DEBUG:teuthology.orchestra.run.smithi187:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T21:07:43.893 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-15T21:07:43.899 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-15T21:07:43.899 DEBUG:teuthology.orchestra.run.smithi132:> 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-04-15T21:07:43.902 DEBUG:teuthology.orchestra.run.smithi133:> 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-04-15T21:07:43.904 DEBUG:teuthology.orchestra.run.smithi187:> 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-04-15T21:07:43.919 INFO:teuthology.orchestra.run.smithi132.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T21:07:43.924 INFO:teuthology.orchestra.run.smithi133.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T21:07:43.927 INFO:teuthology.orchestra.run.smithi132.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T21:07:43.933 INFO:teuthology.orchestra.run.smithi133.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T21:07:43.937 INFO:teuthology.orchestra.run.smithi187.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T21:07:43.945 INFO:teuthology.orchestra.run.smithi187.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T21:07:43.946 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-15T21:07:43.953 INFO:teuthology.task.internal:Configuring sudo... 2024-04-15T21:07:43.954 DEBUG:teuthology.orchestra.run.smithi132:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T21:07:43.973 DEBUG:teuthology.orchestra.run.smithi133:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T21:07:43.979 DEBUG:teuthology.orchestra.run.smithi187:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T21:07:44.000 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-15T21:07:44.009 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-15T21:07:44.009 DEBUG:teuthology.orchestra.run.smithi132:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T21:07:44.025 DEBUG:teuthology.orchestra.run.smithi133:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T21:07:44.035 DEBUG:teuthology.orchestra.run.smithi187:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T21:07:44.049 DEBUG:teuthology.orchestra.run.smithi132:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T21:07:44.077 DEBUG:teuthology.orchestra.run.smithi132:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T21:07:44.125 DEBUG:teuthology.orchestra.run.smithi132:> set -ex 2024-04-15T21:07:44.125 DEBUG:teuthology.orchestra.run.smithi132:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T21:07:44.195 DEBUG:teuthology.orchestra.run.smithi133:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T21:07:44.200 DEBUG:teuthology.orchestra.run.smithi133:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T21:07:44.247 DEBUG:teuthology.orchestra.run.smithi133:> set -ex 2024-04-15T21:07:44.247 DEBUG:teuthology.orchestra.run.smithi133:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T21:07:44.311 DEBUG:teuthology.orchestra.run.smithi187:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T21:07:44.317 DEBUG:teuthology.orchestra.run.smithi187:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T21:07:44.365 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-04-15T21:07:44.365 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T21:07:44.437 DEBUG:teuthology.orchestra.run.smithi132:> sudo service rsyslog restart 2024-04-15T21:07:44.439 DEBUG:teuthology.orchestra.run.smithi133:> sudo service rsyslog restart 2024-04-15T21:07:44.442 DEBUG:teuthology.orchestra.run.smithi187:> sudo service rsyslog restart 2024-04-15T21:07:44.532 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-15T21:07:44.542 INFO:teuthology.task.internal:Starting timer... 2024-04-15T21:07:44.543 INFO:teuthology.run_tasks:Running task pcp... 2024-04-15T21:07:44.590 INFO:teuthology.run_tasks:Running task selinux... 2024-04-15T21:07:44.638 DEBUG:teuthology.task.selinux:Excluding smithi132: OS 'ubuntu' does not support SELinux 2024-04-15T21:07:44.638 DEBUG:teuthology.task.selinux:Excluding smithi133: OS 'ubuntu' does not support SELinux 2024-04-15T21:07:44.638 DEBUG:teuthology.task.selinux:Excluding smithi187: OS 'ubuntu' does not support SELinux 2024-04-15T21:07:44.639 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-15T21:07:44.639 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-04-15T21:07:44.639 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-15T21:07:44.639 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-15T21:07:44.689 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-15T21:07:44.706 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-04-15T21:07:44.708 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi132.front.sepia.ceph.com,smithi133.front.sepia.ceph.com,smithi187.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-15T21:14:48.209 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi132.front.sepia.ceph.com'), Remote(name='ubuntu@smithi133.front.sepia.ceph.com'), Remote(name='ubuntu@smithi187.front.sepia.ceph.com')] 2024-04-15T21:14:48.211 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi132.front.sepia.ceph.com' 2024-04-15T21:14:48.212 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi132.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:14:48.296 DEBUG:teuthology.orchestra.run.smithi132:> true 2024-04-15T21:14:48.374 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi132.front.sepia.ceph.com' 2024-04-15T21:14:48.375 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi133.front.sepia.ceph.com' 2024-04-15T21:14:48.375 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi133.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:14:48.455 DEBUG:teuthology.orchestra.run.smithi133:> true 2024-04-15T21:14:48.530 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi133.front.sepia.ceph.com' 2024-04-15T21:14:48.530 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi187.front.sepia.ceph.com' 2024-04-15T21:14:48.531 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi187.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:14:48.613 DEBUG:teuthology.orchestra.run.smithi187:> true 2024-04-15T21:14:48.686 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi187.front.sepia.ceph.com' 2024-04-15T21:14:48.686 INFO:teuthology.run_tasks:Running task clock... 2024-04-15T21:14:48.701 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-15T21:14:48.701 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T21:14:48.702 DEBUG:teuthology.orchestra.run.smithi132:> 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-04-15T21:14:48.704 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T21:14:48.704 DEBUG:teuthology.orchestra.run.smithi133:> 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-04-15T21:14:48.707 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T21:14:48.707 DEBUG:teuthology.orchestra.run.smithi187:> 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-04-15T21:14:48.733 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:48 ntpd[17211]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-04-15T21:14:48.734 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:48 ntpd[17211]: Command line: ntpd -gq 2024-04-15T21:14:48.734 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:48 ntpd[17211]: ---------------------------------------------------- 2024-04-15T21:14:48.734 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:48 ntpd[17211]: ntp-4 is maintained by Network Time Foundation, 2024-04-15T21:14:48.734 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:48 ntpd[17211]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-04-15T21:14:48.734 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:48 ntpd[17211]: corporation. Support and training for ntp-4 are 2024-04-15T21:14:48.734 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:48 ntpd[17211]: available at https://www.nwtime.org/support 2024-04-15T21:14:48.734 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:48 ntpd[17211]: ---------------------------------------------------- 2024-04-15T21:14:48.735 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:48 ntpd[17190]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-04-15T21:14:48.735 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:48 ntpd[17190]: Command line: ntpd -gq 2024-04-15T21:14:48.735 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:48 ntpd[17190]: ---------------------------------------------------- 2024-04-15T21:14:48.735 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:48 ntpd[17190]: ntp-4 is maintained by Network Time Foundation, 2024-04-15T21:14:48.735 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:48 ntpd[17190]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-04-15T21:14:48.735 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:48 ntpd[17190]: corporation. Support and training for ntp-4 are 2024-04-15T21:14:48.735 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:48 ntpd[17190]: available at https://www.nwtime.org/support 2024-04-15T21:14:48.736 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:48 ntpd[17190]: ---------------------------------------------------- 2024-04-15T21:14:48.736 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:48 ntpd[17190]: proto: precision = 0.059 usec (-24) 2024-04-15T21:14:48.736 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:48 ntpd[17211]: proto: precision = 0.061 usec (-24) 2024-04-15T21:14:48.736 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:48 ntpd[17211]: basedate set to 2022-02-04 2024-04-15T21:14:48.736 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:48 ntpd[17211]: gps base set to 2022-02-06 (week 2196) 2024-04-15T21:14:48.736 INFO:teuthology.orchestra.run.smithi132.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-15T21:14:48.737 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:48 ntpd[17211]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-15T21:14:48.737 INFO:teuthology.orchestra.run.smithi132.stderr:restrict ::: KOD does nothing without LIMITED. 2024-04-15T21:14:48.738 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:48 ntpd[17211]: restrict ::: KOD does nothing without LIMITED. 2024-04-15T21:14:48.738 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:48 ntpd[17211]: Listen and drop on 0 v6wildcard [::]:123 2024-04-15T21:14:48.738 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:48 ntpd[17211]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-04-15T21:14:48.738 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:48 ntpd[17211]: Listen normally on 2 lo 127.0.0.1:123 2024-04-15T21:14:48.738 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:48 ntpd[17211]: Listen normally on 3 enp3s0f1 172.21.15.132:123 2024-04-15T21:14:48.739 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:48 ntpd[17211]: Listen normally on 4 lo [::1]:123 2024-04-15T21:14:48.739 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:48 ntpd[17211]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:773f%5]:123 2024-04-15T21:14:48.739 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:48 ntpd[17211]: Listening on routing socket on fd #22 for interface updates 2024-04-15T21:14:48.739 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:48 ntpd[17190]: basedate set to 2022-02-04 2024-04-15T21:14:48.739 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:48 ntpd[17190]: gps base set to 2022-02-06 (week 2196) 2024-04-15T21:14:48.739 INFO:teuthology.orchestra.run.smithi133.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-15T21:14:48.740 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:48 ntpd[17190]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-15T21:14:48.740 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:48 ntpd[17190]: restrict ::: KOD does nothing without LIMITED. 2024-04-15T21:14:48.740 INFO:teuthology.orchestra.run.smithi133.stderr:restrict ::: KOD does nothing without LIMITED. 2024-04-15T21:14:48.741 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:48 ntpd[17190]: Listen and drop on 0 v6wildcard [::]:123 2024-04-15T21:14:48.741 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:48 ntpd[17190]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-04-15T21:14:48.741 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:48 ntpd[17190]: Listen normally on 2 lo 127.0.0.1:123 2024-04-15T21:14:48.741 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:48 ntpd[17190]: Listen normally on 3 enp3s0f1 172.21.15.133:123 2024-04-15T21:14:48.742 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:48 ntpd[17190]: Listen normally on 4 lo [::1]:123 2024-04-15T21:14:48.742 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:48 ntpd[17190]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:8087%5]:123 2024-04-15T21:14:48.742 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:48 ntpd[17190]: Listening on routing socket on fd #22 for interface updates 2024-04-15T21:14:48.753 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:48 ntpd[17174]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-04-15T21:14:48.753 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:48 ntpd[17174]: Command line: ntpd -gq 2024-04-15T21:14:48.753 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:48 ntpd[17174]: ---------------------------------------------------- 2024-04-15T21:14:48.753 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:48 ntpd[17174]: ntp-4 is maintained by Network Time Foundation, 2024-04-15T21:14:48.753 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:48 ntpd[17174]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-04-15T21:14:48.753 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:48 ntpd[17174]: corporation. Support and training for ntp-4 are 2024-04-15T21:14:48.753 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:48 ntpd[17174]: available at https://www.nwtime.org/support 2024-04-15T21:14:48.754 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:48 ntpd[17174]: ---------------------------------------------------- 2024-04-15T21:14:48.754 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:48 ntpd[17174]: proto: precision = 0.056 usec (-24) 2024-04-15T21:14:48.755 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:48 ntpd[17174]: basedate set to 2022-02-04 2024-04-15T21:14:48.755 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:48 ntpd[17174]: gps base set to 2022-02-06 (week 2196) 2024-04-15T21:14:48.755 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:48 ntpd[17174]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-15T21:14:48.755 INFO:teuthology.orchestra.run.smithi187.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-15T21:14:48.756 INFO:teuthology.orchestra.run.smithi187.stderr:restrict ::: KOD does nothing without LIMITED. 2024-04-15T21:14:48.757 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:48 ntpd[17174]: restrict ::: KOD does nothing without LIMITED. 2024-04-15T21:14:48.757 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:48 ntpd[17174]: Listen and drop on 0 v6wildcard [::]:123 2024-04-15T21:14:48.757 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:48 ntpd[17174]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-04-15T21:14:48.757 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:48 ntpd[17174]: Listen normally on 2 lo 127.0.0.1:123 2024-04-15T21:14:48.757 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:48 ntpd[17174]: Listen normally on 3 enp3s0f1 172.21.15.187:123 2024-04-15T21:14:48.757 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:48 ntpd[17174]: Listen normally on 4 lo [::1]:123 2024-04-15T21:14:48.757 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:48 ntpd[17174]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:77b1%5]:123 2024-04-15T21:14:48.757 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:48 ntpd[17174]: Listening on routing socket on fd #22 for interface updates 2024-04-15T21:14:49.734 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:49 ntpd[17211]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:49.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:49 ntpd[17211]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:49.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:49 ntpd[17211]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:49.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:49 ntpd[17211]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:49.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:49 ntpd[17211]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:49.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:49 ntpd[17211]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:49.753 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:49 ntpd[17174]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:49.753 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:49 ntpd[17174]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:49.753 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:49 ntpd[17174]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:49.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:49 ntpd[17174]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:49.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:49 ntpd[17174]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:49.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:49 ntpd[17174]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:50.735 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:50 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:50.735 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:50 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:50.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:50 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:50.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:50 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:50.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:50 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:50.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:50 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:50.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:50 ntpd[17190]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:50.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:50 ntpd[17190]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:50.753 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:50 ntpd[17174]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:50.753 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:50 ntpd[17174]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:50.753 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:50 ntpd[17174]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:50.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:50 ntpd[17174]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:50.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:50 ntpd[17174]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:50.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:50 ntpd[17174]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:51.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:51 ntpd[17211]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:51.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:51 ntpd[17211]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:51.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:51 ntpd[17211]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:51.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:51 ntpd[17211]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:51.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:51 ntpd[17211]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:51.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:51 ntpd[17211]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:51.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:51 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:51.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:51 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:51.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:51 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:51.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:51 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:51.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:51 ntpd[17190]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:51.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:51 ntpd[17190]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:51.753 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:51 ntpd[17174]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:51.753 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:51 ntpd[17174]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:51.753 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:51 ntpd[17174]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:51.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:51 ntpd[17174]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:51.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:51 ntpd[17174]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:51.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:51 ntpd[17174]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:52.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:52 ntpd[17211]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:52.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:52 ntpd[17211]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:52.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:52 ntpd[17211]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:52.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:52 ntpd[17211]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:52.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:52 ntpd[17211]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:52.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:52 ntpd[17211]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:52.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:52 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:52.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:52 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:52.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:52 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:52.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:52 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:52.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:52 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:52.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:52 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:52.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:52 ntpd[17190]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:52.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:52 ntpd[17190]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:52.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:52 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:52.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:52 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:52.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:52 ntpd[17190]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:52.738 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:52 ntpd[17190]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:52.755 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:52 ntpd[17174]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:52.755 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:52 ntpd[17174]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:52.755 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:52 ntpd[17174]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:52.755 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:52 ntpd[17174]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:52.755 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:52 ntpd[17174]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:52.756 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:52 ntpd[17174]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:52.756 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:52 ntpd[17174]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:52.756 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:52 ntpd[17174]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:52.756 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:52 ntpd[17174]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:52.756 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:52 ntpd[17174]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:52.756 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:52 ntpd[17174]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:52.756 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:52 ntpd[17174]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:53.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:53 ntpd[17211]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:53.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:53 ntpd[17211]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:53.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:53 ntpd[17211]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:53.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:53 ntpd[17211]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:53.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:53 ntpd[17211]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:53.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:53 ntpd[17211]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:53.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:53 ntpd[17211]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:53.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:53 ntpd[17211]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:53.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:53 ntpd[17211]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:53.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:53 ntpd[17211]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:53.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:53 ntpd[17211]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:53.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:53 ntpd[17211]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:53.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:53 ntpd[17211]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:53.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:53 ntpd[17211]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:53.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:53 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:53.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:53 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:53.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:53 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:53.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:53 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:53.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:53 ntpd[17190]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:53.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:53 ntpd[17190]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:53.753 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:53 ntpd[17174]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:53.753 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:53 ntpd[17174]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:53.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:53 ntpd[17174]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:53.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:53 ntpd[17174]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:53.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:53 ntpd[17174]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:53.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:53 ntpd[17174]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:53.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:53 ntpd[17174]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:53.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:53 ntpd[17174]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:54.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:54 ntpd[17211]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:54.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:54 ntpd[17211]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:54.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:54 ntpd[17211]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:54.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:54 ntpd[17211]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:54.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:54 ntpd[17211]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:54.735 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:54 ntpd[17211]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:54.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:54 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:54.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:54 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:54.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:54 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:54.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:54 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:54.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:54 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:54.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:54 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:54.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:54 ntpd[17190]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:54.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:54 ntpd[17190]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:54.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:54 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:54.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:54 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:54.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:54 ntpd[17190]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:54.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:54 ntpd[17190]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:54.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:54 ntpd[17174]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:54.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:54 ntpd[17174]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:54.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:54 ntpd[17174]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:54.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:54 ntpd[17174]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:54.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:54 ntpd[17174]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:54.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:54 ntpd[17174]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:54.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:54 ntpd[17174]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:54.755 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:54 ntpd[17174]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:54.755 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:54 ntpd[17174]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:54.755 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:54 ntpd[17174]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:54.755 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:54 ntpd[17174]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:54.755 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:54 ntpd[17174]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:55.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:55 ntpd[17211]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:55.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:55 ntpd[17211]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:55.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:55 ntpd[17211]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:55.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:55 ntpd[17211]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:55.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:55 ntpd[17211]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:55.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:55 ntpd[17211]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:55.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:55 ntpd[17211]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:55.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:55 ntpd[17211]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:55.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:55 ntpd[17211]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:55.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:55 ntpd[17211]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:55.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:55 ntpd[17211]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:55.736 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:55 ntpd[17211]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:55.737 INFO:teuthology.orchestra.run.smithi132.stdout:15 Apr 21:14:55 ntpd[17211]: ntpd: time slew -0.002627 s 2024-04-15T21:14:55.737 INFO:teuthology.orchestra.run.smithi132.stdout:ntpd: time slew -0.002627s 2024-04-15T21:14:55.737 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:55 ntpd[17211]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-04-15T21:14:55.737 INFO:teuthology.orchestra.run.smithi132.stderr:15 Apr 21:14:55 ntpd[17211]: can't open /var/log/ntpstats/loopstats.20240415: Permission denied 2024-04-15T21:14:55.738 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:55 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:55.738 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:55 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:55.738 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:55 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:55.738 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:55 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:55.739 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:55 ntpd[17190]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:55.739 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:55 ntpd[17190]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:55.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:55 ntpd[17174]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:55.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:55 ntpd[17174]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:55.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:55 ntpd[17174]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:55.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:55 ntpd[17174]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:55.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:55 ntpd[17174]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:55.754 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:55 ntpd[17174]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:55.754 INFO:teuthology.orchestra.run.smithi187.stdout:15 Apr 21:14:55 ntpd[17174]: ntpd: time slew -0.001034 s 2024-04-15T21:14:55.755 INFO:teuthology.orchestra.run.smithi187.stdout:ntpd: time slew -0.001034s 2024-04-15T21:14:55.755 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:55 ntpd[17174]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-04-15T21:14:55.755 INFO:teuthology.orchestra.run.smithi187.stderr:15 Apr 21:14:55 ntpd[17174]: can't open /var/log/ntpstats/loopstats.20240415: Permission denied 2024-04-15T21:14:55.791 INFO:teuthology.orchestra.run.smithi132.stdout: remote refid st t when poll reach delay offset jitter 2024-04-15T21:14:55.791 INFO:teuthology.orchestra.run.smithi132.stdout:============================================================================== 2024-04-15T21:14:55.791 INFO:teuthology.orchestra.run.smithi132.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:14:55.791 INFO:teuthology.orchestra.run.smithi132.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:14:55.791 INFO:teuthology.orchestra.run.smithi132.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:14:55.791 INFO:teuthology.orchestra.run.smithi132.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:14:55.807 INFO:teuthology.orchestra.run.smithi187.stdout: remote refid st t when poll reach delay offset jitter 2024-04-15T21:14:55.807 INFO:teuthology.orchestra.run.smithi187.stdout:============================================================================== 2024-04-15T21:14:55.808 INFO:teuthology.orchestra.run.smithi187.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:14:55.808 INFO:teuthology.orchestra.run.smithi187.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:14:55.808 INFO:teuthology.orchestra.run.smithi187.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:14:55.808 INFO:teuthology.orchestra.run.smithi187.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:14:56.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:56 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:56.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:56 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:56.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:56 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:56.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:56 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:56.736 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:56 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:56.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:56 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:56.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:56 ntpd[17190]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:56.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:56 ntpd[17190]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:56.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:56 ntpd[17190]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-15T21:14:56.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:56 ntpd[17190]: can't open /var/log/ntpstats/rawstats.20240415: Permission denied 2024-04-15T21:14:56.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:56 ntpd[17190]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-15T21:14:56.737 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:56 ntpd[17190]: can't open /var/log/ntpstats/peerstats.20240415: Permission denied 2024-04-15T21:14:56.737 INFO:teuthology.orchestra.run.smithi133.stdout:15 Apr 21:14:56 ntpd[17190]: ntpd: time slew -0.002179 s 2024-04-15T21:14:56.737 INFO:teuthology.orchestra.run.smithi133.stdout:ntpd: time slew -0.002179s 2024-04-15T21:14:56.738 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:56 ntpd[17190]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-04-15T21:14:56.738 INFO:teuthology.orchestra.run.smithi133.stderr:15 Apr 21:14:56 ntpd[17190]: can't open /var/log/ntpstats/loopstats.20240415: Permission denied 2024-04-15T21:14:56.842 INFO:teuthology.orchestra.run.smithi133.stdout: remote refid st t when poll reach delay offset jitter 2024-04-15T21:14:56.842 INFO:teuthology.orchestra.run.smithi133.stdout:============================================================================== 2024-04-15T21:14:56.842 INFO:teuthology.orchestra.run.smithi133.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:14:56.842 INFO:teuthology.orchestra.run.smithi133.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:14:56.842 INFO:teuthology.orchestra.run.smithi133.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:14:56.842 INFO:teuthology.orchestra.run.smithi133.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-15T21:14:56.843 INFO:teuthology.run_tasks:Running task install... 2024-04-15T21:14:56.851 DEBUG:teuthology.task.install:project ceph 2024-04-15T21:14:56.851 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': '87dbfb632e974cb2c28d17423071d2d833b53b29'}} 2024-04-15T21:14:56.851 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': '87dbfb632e974cb2c28d17423071d2d833b53b29'} 2024-04-15T21:14:56.852 INFO:teuthology.task.install:Using flavor: default 2024-04-15T21:14:56.858 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-04-15T21:14:56.858 INFO:teuthology.task.install:extra packages: [] 2024-04-15T21:14:56.858 DEBUG:teuthology.orchestra.run.smithi132:> sudo apt-key list | grep Ceph 2024-04-15T21:14:56.859 DEBUG:teuthology.orchestra.run.smithi133:> sudo apt-key list | grep Ceph 2024-04-15T21:14:56.859 DEBUG:teuthology.orchestra.run.smithi187:> sudo apt-key list | grep Ceph 2024-04-15T21:14:56.918 INFO:teuthology.orchestra.run.smithi187.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-04-15T21:14:56.923 INFO:teuthology.orchestra.run.smithi132.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-04-15T21:14:56.941 INFO:teuthology.orchestra.run.smithi133.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-04-15T21:14:56.944 INFO:teuthology.orchestra.run.smithi187.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-04-15T21:14:56.944 INFO:teuthology.orchestra.run.smithi187.stdout:uid [ unknown] Ceph.com (release key) 2024-04-15T21:14:56.945 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-04-15T21:14:56.945 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T21:14:56.951 INFO:teuthology.orchestra.run.smithi132.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-04-15T21:14:56.951 INFO:teuthology.orchestra.run.smithi132.stdout:uid [ unknown] Ceph.com (release key) 2024-04-15T21:14:56.952 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-04-15T21:14:56.952 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T21:14:56.969 INFO:teuthology.orchestra.run.smithi133.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-04-15T21:14:56.969 INFO:teuthology.orchestra.run.smithi133.stdout:uid [ unknown] Ceph.com (release key) 2024-04-15T21:14:56.969 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-04-15T21:14:56.970 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T21:14:57.090 INFO:teuthology.task.install.deb:Pulling from https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default/ 2024-04-15T21:14:57.091 INFO:teuthology.task.install.deb:Package version is 19.0.0-3084-g87dbfb63-1jammy 2024-04-15T21:14:57.108 INFO:teuthology.task.install.deb:Pulling from https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default/ 2024-04-15T21:14:57.108 INFO:teuthology.task.install.deb:Package version is 19.0.0-3084-g87dbfb63-1jammy 2024-04-15T21:14:57.155 INFO:teuthology.task.install.deb:Pulling from https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default/ 2024-04-15T21:14:57.156 INFO:teuthology.task.install.deb:Package version is 19.0.0-3084-g87dbfb63-1jammy 2024-04-15T21:14:57.264 DEBUG:teuthology.orchestra.run.smithi132:> set -ex 2024-04-15T21:14:57.264 DEBUG:teuthology.orchestra.run.smithi132:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-04-15T21:14:57.276 DEBUG:teuthology.orchestra.run.smithi133:> set -ex 2024-04-15T21:14:57.276 DEBUG:teuthology.orchestra.run.smithi133:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-04-15T21:14:57.278 DEBUG:teuthology.orchestra.run.smithi132:> sudo apt-get update 2024-04-15T21:14:57.290 DEBUG:teuthology.orchestra.run.smithi133:> sudo apt-get update 2024-04-15T21:14:57.329 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-04-15T21:14:57.329 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-04-15T21:14:57.343 DEBUG:teuthology.orchestra.run.smithi187:> sudo apt-get update 2024-04-15T21:14:57.462 INFO:teuthology.orchestra.run.smithi133.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T21:14:57.475 INFO:teuthology.orchestra.run.smithi133.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-15T21:14:57.496 INFO:teuthology.orchestra.run.smithi133.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-15T21:14:57.510 INFO:teuthology.orchestra.run.smithi133.stdout:Ign:4 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy InRelease 2024-04-15T21:14:57.516 INFO:teuthology.orchestra.run.smithi187.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-15T21:14:57.531 INFO:teuthology.orchestra.run.smithi133.stdout:Get:5 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-04-15T21:14:57.554 INFO:teuthology.orchestra.run.smithi133.stdout:Ign:6 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy Release.gpg 2024-04-15T21:14:57.560 INFO:teuthology.orchestra.run.smithi132.stdout:Ign:1 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy InRelease 2024-04-15T21:14:57.564 INFO:teuthology.orchestra.run.smithi187.stdout:Ign:2 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy InRelease 2024-04-15T21:14:57.575 INFO:teuthology.orchestra.run.smithi132.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T21:14:57.575 INFO:teuthology.orchestra.run.smithi132.stdout:Hit:3 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-15T21:14:57.578 INFO:teuthology.orchestra.run.smithi133.stdout:Hit:7 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-15T21:14:57.585 INFO:teuthology.orchestra.run.smithi187.stdout:Get:3 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-04-15T21:14:57.597 INFO:teuthology.orchestra.run.smithi132.stdout:Get:4 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-04-15T21:14:57.607 INFO:teuthology.orchestra.run.smithi187.stdout:Ign:4 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy Release.gpg 2024-04-15T21:14:57.628 INFO:teuthology.orchestra.run.smithi187.stdout:Get:5 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 Packages [18.1 kB] 2024-04-15T21:14:57.635 INFO:teuthology.orchestra.run.smithi132.stdout:Ign:5 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy Release.gpg 2024-04-15T21:14:57.635 INFO:teuthology.orchestra.run.smithi187.stdout:Hit:6 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-15T21:14:57.647 INFO:teuthology.orchestra.run.smithi132.stdout:Hit:6 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-15T21:14:57.656 INFO:teuthology.orchestra.run.smithi187.stdout:Get:7 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,403 B] 2024-04-15T21:14:57.671 INFO:teuthology.orchestra.run.smithi132.stdout:Get:7 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 Packages [18.1 kB] 2024-04-15T21:14:57.713 INFO:teuthology.orchestra.run.smithi132.stdout:Get:8 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,403 B] 2024-04-15T21:14:57.714 INFO:teuthology.orchestra.run.smithi187.stdout:Hit:8 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-15T21:14:57.728 INFO:teuthology.orchestra.run.smithi132.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-15T21:14:57.794 INFO:teuthology.orchestra.run.smithi187.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-15T21:14:57.801 INFO:teuthology.orchestra.run.smithi133.stdout:Get:8 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 Packages [18.1 kB] 2024-04-15T21:14:57.831 INFO:teuthology.orchestra.run.smithi133.stdout:Get:9 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,403 B] 2024-04-15T21:14:57.908 INFO:teuthology.orchestra.run.smithi133.stdout:Fetched 29.2 kB in 0s (67.2 kB/s) 2024-04-15T21:14:57.933 INFO:teuthology.orchestra.run.smithi187.stdout:Fetched 29.2 kB in 0s (70.9 kB/s) 2024-04-15T21:14:57.935 INFO:teuthology.orchestra.run.smithi132.stdout:Fetched 29.2 kB in 0s (61.1 kB/s) 2024-04-15T21:14:58.843 INFO:teuthology.orchestra.run.smithi133.stdout:Reading package lists... 2024-04-15T21:14:58.858 DEBUG:teuthology.orchestra.run.smithi133:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.0.0-3084-g87dbfb63-1jammy cephadm=19.0.0-3084-g87dbfb63-1jammy ceph-mds=19.0.0-3084-g87dbfb63-1jammy ceph-mgr=19.0.0-3084-g87dbfb63-1jammy ceph-common=19.0.0-3084-g87dbfb63-1jammy ceph-fuse=19.0.0-3084-g87dbfb63-1jammy ceph-test=19.0.0-3084-g87dbfb63-1jammy ceph-volume=19.0.0-3084-g87dbfb63-1jammy radosgw=19.0.0-3084-g87dbfb63-1jammy python3-rados=19.0.0-3084-g87dbfb63-1jammy python3-rgw=19.0.0-3084-g87dbfb63-1jammy python3-cephfs=19.0.0-3084-g87dbfb63-1jammy python3-rbd=19.0.0-3084-g87dbfb63-1jammy libcephfs2=19.0.0-3084-g87dbfb63-1jammy libcephfs-dev=19.0.0-3084-g87dbfb63-1jammy librados2=19.0.0-3084-g87dbfb63-1jammy librbd1=19.0.0-3084-g87dbfb63-1jammy rbd-fuse=19.0.0-3084-g87dbfb63-1jammy 2024-04-15T21:14:58.900 INFO:teuthology.orchestra.run.smithi132.stdout:Reading package lists... 2024-04-15T21:14:58.901 INFO:teuthology.orchestra.run.smithi187.stdout:Reading package lists... 2024-04-15T21:14:58.909 INFO:teuthology.orchestra.run.smithi133.stdout:Reading package lists... 2024-04-15T21:14:58.916 DEBUG:teuthology.orchestra.run.smithi132:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.0.0-3084-g87dbfb63-1jammy cephadm=19.0.0-3084-g87dbfb63-1jammy ceph-mds=19.0.0-3084-g87dbfb63-1jammy ceph-mgr=19.0.0-3084-g87dbfb63-1jammy ceph-common=19.0.0-3084-g87dbfb63-1jammy ceph-fuse=19.0.0-3084-g87dbfb63-1jammy ceph-test=19.0.0-3084-g87dbfb63-1jammy ceph-volume=19.0.0-3084-g87dbfb63-1jammy radosgw=19.0.0-3084-g87dbfb63-1jammy python3-rados=19.0.0-3084-g87dbfb63-1jammy python3-rgw=19.0.0-3084-g87dbfb63-1jammy python3-cephfs=19.0.0-3084-g87dbfb63-1jammy python3-rbd=19.0.0-3084-g87dbfb63-1jammy libcephfs2=19.0.0-3084-g87dbfb63-1jammy libcephfs-dev=19.0.0-3084-g87dbfb63-1jammy librados2=19.0.0-3084-g87dbfb63-1jammy librbd1=19.0.0-3084-g87dbfb63-1jammy rbd-fuse=19.0.0-3084-g87dbfb63-1jammy 2024-04-15T21:14:58.919 DEBUG:teuthology.orchestra.run.smithi187:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=19.0.0-3084-g87dbfb63-1jammy cephadm=19.0.0-3084-g87dbfb63-1jammy ceph-mds=19.0.0-3084-g87dbfb63-1jammy ceph-mgr=19.0.0-3084-g87dbfb63-1jammy ceph-common=19.0.0-3084-g87dbfb63-1jammy ceph-fuse=19.0.0-3084-g87dbfb63-1jammy ceph-test=19.0.0-3084-g87dbfb63-1jammy ceph-volume=19.0.0-3084-g87dbfb63-1jammy radosgw=19.0.0-3084-g87dbfb63-1jammy python3-rados=19.0.0-3084-g87dbfb63-1jammy python3-rgw=19.0.0-3084-g87dbfb63-1jammy python3-cephfs=19.0.0-3084-g87dbfb63-1jammy python3-rbd=19.0.0-3084-g87dbfb63-1jammy libcephfs2=19.0.0-3084-g87dbfb63-1jammy libcephfs-dev=19.0.0-3084-g87dbfb63-1jammy librados2=19.0.0-3084-g87dbfb63-1jammy librbd1=19.0.0-3084-g87dbfb63-1jammy rbd-fuse=19.0.0-3084-g87dbfb63-1jammy 2024-04-15T21:14:58.971 INFO:teuthology.orchestra.run.smithi187.stdout:Reading package lists... 2024-04-15T21:14:58.975 INFO:teuthology.orchestra.run.smithi132.stdout:Reading package lists... 2024-04-15T21:14:59.089 INFO:teuthology.orchestra.run.smithi133.stdout:Building dependency tree... 2024-04-15T21:14:59.090 INFO:teuthology.orchestra.run.smithi133.stdout:Reading state information... 2024-04-15T21:14:59.147 INFO:teuthology.orchestra.run.smithi187.stdout:Building dependency tree... 2024-04-15T21:14:59.147 INFO:teuthology.orchestra.run.smithi187.stdout:Reading state information... 2024-04-15T21:14:59.172 INFO:teuthology.orchestra.run.smithi132.stdout:Building dependency tree... 2024-04-15T21:14:59.172 INFO:teuthology.orchestra.run.smithi132.stdout:Reading state information... 2024-04-15T21:14:59.260 INFO:teuthology.orchestra.run.smithi133.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T21:14:59.261 INFO:teuthology.orchestra.run.smithi133.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T21:14:59.261 INFO:teuthology.orchestra.run.smithi133.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T21:14:59.261 INFO:teuthology.orchestra.run.smithi133.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T21:14:59.261 INFO:teuthology.orchestra.run.smithi133.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-15T21:14:59.261 INFO:teuthology.orchestra.run.smithi133.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-15T21:14:59.261 INFO:teuthology.orchestra.run.smithi133.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T21:14:59.263 INFO:teuthology.orchestra.run.smithi133.stdout:The following additional packages will be installed: 2024-04-15T21:14:59.263 INFO:teuthology.orchestra.run.smithi133.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-04-15T21:14:59.263 INFO:teuthology.orchestra.run.smithi133.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-04-15T21:14:59.263 INFO:teuthology.orchestra.run.smithi133.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-04-15T21:14:59.263 INFO:teuthology.orchestra.run.smithi133.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-04-15T21:14:59.263 INFO:teuthology.orchestra.run.smithi133.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-04-15T21:14:59.263 INFO:teuthology.orchestra.run.smithi133.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-04-15T21:14:59.264 INFO:teuthology.orchestra.run.smithi133.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-04-15T21:14:59.264 INFO:teuthology.orchestra.run.smithi133.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-04-15T21:14:59.264 INFO:teuthology.orchestra.run.smithi133.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-04-15T21:14:59.264 INFO:teuthology.orchestra.run.smithi133.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-15T21:14:59.264 INFO:teuthology.orchestra.run.smithi133.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-15T21:14:59.264 INFO:teuthology.orchestra.run.smithi133.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-15T21:14:59.264 INFO:teuthology.orchestra.run.smithi133.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-15T21:14:59.264 INFO:teuthology.orchestra.run.smithi133.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-15T21:14:59.264 INFO:teuthology.orchestra.run.smithi133.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-15T21:14:59.264 INFO:teuthology.orchestra.run.smithi133.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-15T21:14:59.264 INFO:teuthology.orchestra.run.smithi133.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-04-15T21:14:59.264 INFO:teuthology.orchestra.run.smithi133.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-04-15T21:14:59.264 INFO:teuthology.orchestra.run.smithi133.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-04-15T21:14:59.264 INFO:teuthology.orchestra.run.smithi133.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-04-15T21:14:59.265 INFO:teuthology.orchestra.run.smithi133.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-04-15T21:14:59.265 INFO:teuthology.orchestra.run.smithi133.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-04-15T21:14:59.265 INFO:teuthology.orchestra.run.smithi133.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-04-15T21:14:59.265 INFO:teuthology.orchestra.run.smithi133.stdout: xmlstarlet zip 2024-04-15T21:14:59.265 INFO:teuthology.orchestra.run.smithi133.stdout:Suggested packages: 2024-04-15T21:14:59.265 INFO:teuthology.orchestra.run.smithi133.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-04-15T21:14:59.266 INFO:teuthology.orchestra.run.smithi133.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-04-15T21:14:59.266 INFO:teuthology.orchestra.run.smithi133.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-04-15T21:14:59.266 INFO:teuthology.orchestra.run.smithi133.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-04-15T21:14:59.266 INFO:teuthology.orchestra.run.smithi133.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-04-15T21:14:59.266 INFO:teuthology.orchestra.run.smithi133.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-04-15T21:14:59.266 INFO:teuthology.orchestra.run.smithi133.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-04-15T21:14:59.266 INFO:teuthology.orchestra.run.smithi133.stdout:Recommended packages: 2024-04-15T21:14:59.266 INFO:teuthology.orchestra.run.smithi133.stdout: btrfs-tools 2024-04-15T21:14:59.318 INFO:teuthology.orchestra.run.smithi187.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T21:14:59.318 INFO:teuthology.orchestra.run.smithi187.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T21:14:59.318 INFO:teuthology.orchestra.run.smithi187.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T21:14:59.318 INFO:teuthology.orchestra.run.smithi187.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T21:14:59.318 INFO:teuthology.orchestra.run.smithi187.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-15T21:14:59.319 INFO:teuthology.orchestra.run.smithi187.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-15T21:14:59.319 INFO:teuthology.orchestra.run.smithi187.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T21:14:59.319 INFO:teuthology.orchestra.run.smithi187.stdout:The following additional packages will be installed: 2024-04-15T21:14:59.319 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-04-15T21:14:59.320 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-04-15T21:14:59.320 INFO:teuthology.orchestra.run.smithi187.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-04-15T21:14:59.320 INFO:teuthology.orchestra.run.smithi187.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-04-15T21:14:59.320 INFO:teuthology.orchestra.run.smithi187.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-04-15T21:14:59.321 INFO:teuthology.orchestra.run.smithi187.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-04-15T21:14:59.321 INFO:teuthology.orchestra.run.smithi187.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-04-15T21:14:59.321 INFO:teuthology.orchestra.run.smithi187.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-04-15T21:14:59.321 INFO:teuthology.orchestra.run.smithi187.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-04-15T21:14:59.322 INFO:teuthology.orchestra.run.smithi187.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-15T21:14:59.322 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-15T21:14:59.322 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-15T21:14:59.322 INFO:teuthology.orchestra.run.smithi187.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-15T21:14:59.322 INFO:teuthology.orchestra.run.smithi187.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-15T21:14:59.322 INFO:teuthology.orchestra.run.smithi187.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-15T21:14:59.322 INFO:teuthology.orchestra.run.smithi187.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-15T21:14:59.322 INFO:teuthology.orchestra.run.smithi187.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-04-15T21:14:59.322 INFO:teuthology.orchestra.run.smithi187.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-04-15T21:14:59.322 INFO:teuthology.orchestra.run.smithi187.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-04-15T21:14:59.322 INFO:teuthology.orchestra.run.smithi187.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-04-15T21:14:59.322 INFO:teuthology.orchestra.run.smithi187.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-04-15T21:14:59.322 INFO:teuthology.orchestra.run.smithi187.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-04-15T21:14:59.322 INFO:teuthology.orchestra.run.smithi187.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-04-15T21:14:59.323 INFO:teuthology.orchestra.run.smithi187.stdout: xmlstarlet zip 2024-04-15T21:14:59.323 INFO:teuthology.orchestra.run.smithi187.stdout:Suggested packages: 2024-04-15T21:14:59.323 INFO:teuthology.orchestra.run.smithi187.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-04-15T21:14:59.323 INFO:teuthology.orchestra.run.smithi187.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-04-15T21:14:59.323 INFO:teuthology.orchestra.run.smithi187.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-04-15T21:14:59.323 INFO:teuthology.orchestra.run.smithi187.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-04-15T21:14:59.323 INFO:teuthology.orchestra.run.smithi187.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-04-15T21:14:59.323 INFO:teuthology.orchestra.run.smithi187.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-04-15T21:14:59.323 INFO:teuthology.orchestra.run.smithi187.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-04-15T21:14:59.323 INFO:teuthology.orchestra.run.smithi187.stdout:Recommended packages: 2024-04-15T21:14:59.323 INFO:teuthology.orchestra.run.smithi187.stdout: btrfs-tools 2024-04-15T21:14:59.362 INFO:teuthology.orchestra.run.smithi132.stdout:The following packages were automatically installed and are no longer required: 2024-04-15T21:14:59.363 INFO:teuthology.orchestra.run.smithi132.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-15T21:14:59.363 INFO:teuthology.orchestra.run.smithi132.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-15T21:14:59.363 INFO:teuthology.orchestra.run.smithi132.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-15T21:14:59.363 INFO:teuthology.orchestra.run.smithi132.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-15T21:14:59.363 INFO:teuthology.orchestra.run.smithi132.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-15T21:14:59.364 INFO:teuthology.orchestra.run.smithi132.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-15T21:14:59.364 INFO:teuthology.orchestra.run.smithi132.stdout:The following additional packages will be installed: 2024-04-15T21:14:59.364 INFO:teuthology.orchestra.run.smithi132.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-04-15T21:14:59.364 INFO:teuthology.orchestra.run.smithi132.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-04-15T21:14:59.365 INFO:teuthology.orchestra.run.smithi132.stdout: libdouble-conversion3 libjq1 liblttng-ust1 liblua5.3-dev liboath0 libonig5 2024-04-15T21:14:59.365 INFO:teuthology.orchestra.run.smithi132.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-04-15T21:14:59.365 INFO:teuthology.orchestra.run.smithi132.stdout: librdkafka1 libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 2024-04-15T21:14:59.365 INFO:teuthology.orchestra.run.smithi132.stdout: lua-any lua-sec lua-socket lua5.1 luarocks nvme-cli pkg-config 2024-04-15T21:14:59.365 INFO:teuthology.orchestra.run.smithi132.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-04-15T21:14:59.365 INFO:teuthology.orchestra.run.smithi132.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-04-15T21:14:59.365 INFO:teuthology.orchestra.run.smithi132.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-04-15T21:14:59.365 INFO:teuthology.orchestra.run.smithi132.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-15T21:14:59.366 INFO:teuthology.orchestra.run.smithi132.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-15T21:14:59.366 INFO:teuthology.orchestra.run.smithi132.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-15T21:14:59.366 INFO:teuthology.orchestra.run.smithi132.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-15T21:14:59.366 INFO:teuthology.orchestra.run.smithi132.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-15T21:14:59.366 INFO:teuthology.orchestra.run.smithi132.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-15T21:14:59.366 INFO:teuthology.orchestra.run.smithi132.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-15T21:14:59.366 INFO:teuthology.orchestra.run.smithi132.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-04-15T21:14:59.366 INFO:teuthology.orchestra.run.smithi132.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-04-15T21:14:59.366 INFO:teuthology.orchestra.run.smithi132.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-04-15T21:14:59.366 INFO:teuthology.orchestra.run.smithi132.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-04-15T21:14:59.366 INFO:teuthology.orchestra.run.smithi132.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-04-15T21:14:59.366 INFO:teuthology.orchestra.run.smithi132.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-04-15T21:14:59.366 INFO:teuthology.orchestra.run.smithi132.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat unzip 2024-04-15T21:14:59.367 INFO:teuthology.orchestra.run.smithi132.stdout: xmlstarlet zip 2024-04-15T21:14:59.368 INFO:teuthology.orchestra.run.smithi132.stdout:Suggested packages: 2024-04-15T21:14:59.368 INFO:teuthology.orchestra.run.smithi132.stdout: python3-influxdb readline-doc python-jinja2-doc python3-beaker 2024-04-15T21:14:59.368 INFO:teuthology.orchestra.run.smithi132.stdout: python-mako-doc python-natsort-doc python-openssl-doc python3-openssl-dbg 2024-04-15T21:14:59.368 INFO:teuthology.orchestra.run.smithi132.stdout: httpd-wsgi libapache2-mod-python libapache2-mod-scgi libjs-mochikit 2024-04-15T21:14:59.368 INFO:teuthology.orchestra.run.smithi132.stdout: python-pecan-doc python-psutil-doc subversion python-pygments-doc 2024-04-15T21:14:59.368 INFO:teuthology.orchestra.run.smithi132.stdout: python-pyinotify-doc python3-socks python-requests-doc python3-dap 2024-04-15T21:14:59.368 INFO:teuthology.orchestra.run.smithi132.stdout: python-sklearn-doc ipython3 python-waitress-doc python-webob-doc 2024-04-15T21:14:59.368 INFO:teuthology.orchestra.run.smithi132.stdout: python-webtest-doc python-werkzeug-doc python3-watchdog 2024-04-15T21:14:59.369 INFO:teuthology.orchestra.run.smithi132.stdout:Recommended packages: 2024-04-15T21:14:59.369 INFO:teuthology.orchestra.run.smithi132.stdout: btrfs-tools 2024-04-15T21:14:59.370 INFO:teuthology.orchestra.run.smithi133.stdout:The following NEW packages will be installed: 2024-04-15T21:14:59.370 INFO:teuthology.orchestra.run.smithi133.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-04-15T21:14:59.370 INFO:teuthology.orchestra.run.smithi133.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-04-15T21:14:59.370 INFO:teuthology.orchestra.run.smithi133.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-04-15T21:14:59.371 INFO:teuthology.orchestra.run.smithi133.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-04-15T21:14:59.371 INFO:teuthology.orchestra.run.smithi133.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-04-15T21:14:59.371 INFO:teuthology.orchestra.run.smithi133.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-04-15T21:14:59.371 INFO:teuthology.orchestra.run.smithi133.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-04-15T21:14:59.371 INFO:teuthology.orchestra.run.smithi133.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-04-15T21:14:59.371 INFO:teuthology.orchestra.run.smithi133.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-04-15T21:14:59.371 INFO:teuthology.orchestra.run.smithi133.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-04-15T21:14:59.371 INFO:teuthology.orchestra.run.smithi133.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-04-15T21:14:59.371 INFO:teuthology.orchestra.run.smithi133.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-15T21:14:59.371 INFO:teuthology.orchestra.run.smithi133.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-15T21:14:59.371 INFO:teuthology.orchestra.run.smithi133.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-15T21:14:59.371 INFO:teuthology.orchestra.run.smithi133.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-15T21:14:59.371 INFO:teuthology.orchestra.run.smithi133.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-15T21:14:59.371 INFO:teuthology.orchestra.run.smithi133.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-15T21:14:59.372 INFO:teuthology.orchestra.run.smithi133.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-15T21:14:59.372 INFO:teuthology.orchestra.run.smithi133.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-04-15T21:14:59.372 INFO:teuthology.orchestra.run.smithi133.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-04-15T21:14:59.372 INFO:teuthology.orchestra.run.smithi133.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-04-15T21:14:59.372 INFO:teuthology.orchestra.run.smithi133.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-04-15T21:14:59.372 INFO:teuthology.orchestra.run.smithi133.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-04-15T21:14:59.372 INFO:teuthology.orchestra.run.smithi133.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-04-15T21:14:59.372 INFO:teuthology.orchestra.run.smithi133.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-04-15T21:14:59.372 INFO:teuthology.orchestra.run.smithi133.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-04-15T21:14:59.424 INFO:teuthology.orchestra.run.smithi187.stdout:The following NEW packages will be installed: 2024-04-15T21:14:59.424 INFO:teuthology.orchestra.run.smithi187.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-04-15T21:14:59.424 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-04-15T21:14:59.424 INFO:teuthology.orchestra.run.smithi187.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-04-15T21:14:59.424 INFO:teuthology.orchestra.run.smithi187.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-04-15T21:14:59.424 INFO:teuthology.orchestra.run.smithi187.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-04-15T21:14:59.424 INFO:teuthology.orchestra.run.smithi187.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-04-15T21:14:59.425 INFO:teuthology.orchestra.run.smithi187.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-04-15T21:14:59.426 INFO:teuthology.orchestra.run.smithi187.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-04-15T21:14:59.426 INFO:teuthology.orchestra.run.smithi187.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-04-15T21:14:59.426 INFO:teuthology.orchestra.run.smithi187.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-04-15T21:14:59.426 INFO:teuthology.orchestra.run.smithi187.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-04-15T21:14:59.426 INFO:teuthology.orchestra.run.smithi187.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-15T21:14:59.426 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-15T21:14:59.426 INFO:teuthology.orchestra.run.smithi187.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-15T21:14:59.426 INFO:teuthology.orchestra.run.smithi187.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-15T21:14:59.426 INFO:teuthology.orchestra.run.smithi187.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-15T21:14:59.426 INFO:teuthology.orchestra.run.smithi187.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-15T21:14:59.426 INFO:teuthology.orchestra.run.smithi187.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-15T21:14:59.426 INFO:teuthology.orchestra.run.smithi187.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-04-15T21:14:59.426 INFO:teuthology.orchestra.run.smithi187.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-04-15T21:14:59.427 INFO:teuthology.orchestra.run.smithi187.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-04-15T21:14:59.427 INFO:teuthology.orchestra.run.smithi187.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-04-15T21:14:59.427 INFO:teuthology.orchestra.run.smithi187.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-04-15T21:14:59.427 INFO:teuthology.orchestra.run.smithi187.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-04-15T21:14:59.427 INFO:teuthology.orchestra.run.smithi187.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-04-15T21:14:59.427 INFO:teuthology.orchestra.run.smithi187.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-04-15T21:14:59.465 INFO:teuthology.orchestra.run.smithi132.stdout:The following NEW packages will be installed: 2024-04-15T21:14:59.466 INFO:teuthology.orchestra.run.smithi132.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-04-15T21:14:59.466 INFO:teuthology.orchestra.run.smithi132.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-04-15T21:14:59.466 INFO:teuthology.orchestra.run.smithi132.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-04-15T21:14:59.466 INFO:teuthology.orchestra.run.smithi132.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libjq1 liblttng-ust1 2024-04-15T21:14:59.466 INFO:teuthology.orchestra.run.smithi132.stdout: liblua5.3-dev liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 2024-04-15T21:14:59.466 INFO:teuthology.orchestra.run.smithi132.stdout: libqt5network5 librados2 libradosstriper1 librbd1 librdkafka1 2024-04-15T21:14:59.467 INFO:teuthology.orchestra.run.smithi132.stdout: libreadline-dev librgw2 libsqlite3-mod-ceph libthrift-0.16.0 lua-any lua-sec 2024-04-15T21:14:59.467 INFO:teuthology.orchestra.run.smithi132.stdout: lua-socket lua5.1 luarocks nvme-cli pkg-config python-asyncssh-doc 2024-04-15T21:14:59.467 INFO:teuthology.orchestra.run.smithi132.stdout: python-babel-localedata python-pastedeploy-tpl python3-asyncssh 2024-04-15T21:14:59.468 INFO:teuthology.orchestra.run.smithi132.stdout: python3-babel python3-bcrypt python3-cachetools python3-ceph-argparse 2024-04-15T21:14:59.468 INFO:teuthology.orchestra.run.smithi132.stdout: python3-ceph-common python3-cephfs python3-certifi python3-cheroot 2024-04-15T21:14:59.468 INFO:teuthology.orchestra.run.smithi132.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-04-15T21:14:59.468 INFO:teuthology.orchestra.run.smithi132.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-04-15T21:14:59.468 INFO:teuthology.orchestra.run.smithi132.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-04-15T21:14:59.468 INFO:teuthology.orchestra.run.smithi132.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-04-15T21:14:59.468 INFO:teuthology.orchestra.run.smithi132.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-04-15T21:14:59.468 INFO:teuthology.orchestra.run.smithi132.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-04-15T21:14:59.468 INFO:teuthology.orchestra.run.smithi132.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-04-15T21:14:59.468 INFO:teuthology.orchestra.run.smithi132.stdout: python3-pygments python3-pyinotify python3-pytest python3-rados python3-rbd 2024-04-15T21:14:59.468 INFO:teuthology.orchestra.run.smithi132.stdout: python3-repoze.lru python3-requests python3-requests-oauthlib python3-rgw 2024-04-15T21:14:59.468 INFO:teuthology.orchestra.run.smithi132.stdout: python3-routes python3-rsa python3-simplegeneric python3-simplejson 2024-04-15T21:14:59.468 INFO:teuthology.orchestra.run.smithi132.stdout: python3-singledispatch python3-sklearn python3-sklearn-lib python3-tempita 2024-04-15T21:14:59.469 INFO:teuthology.orchestra.run.smithi132.stdout: python3-tempora python3-threadpoolctl python3-toml python3-urllib3 2024-04-15T21:14:59.469 INFO:teuthology.orchestra.run.smithi132.stdout: python3-waitress python3-wcwidth python3-webob python3-websocket 2024-04-15T21:14:59.469 INFO:teuthology.orchestra.run.smithi132.stdout: python3-webtest python3-werkzeug python3-zc.lockfile qttranslations5-l10n 2024-04-15T21:14:59.469 INFO:teuthology.orchestra.run.smithi132.stdout: radosgw rbd-fuse socat unzip xmlstarlet zip 2024-04-15T21:14:59.530 INFO:teuthology.orchestra.run.smithi132.stdout:0 upgraded, 118 newly installed, 0 to remove and 300 not upgraded. 2024-04-15T21:14:59.530 INFO:teuthology.orchestra.run.smithi132.stdout:Need to get 181 MB of archives. 2024-04-15T21:14:59.530 INFO:teuthology.orchestra.run.smithi132.stdout:After this operation, 829 MB of additional disk space will be used. 2024-04-15T21:14:59.531 INFO:teuthology.orchestra.run.smithi132.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-04-15T21:14:59.555 INFO:teuthology.orchestra.run.smithi133.stdout:0 upgraded, 118 newly installed, 0 to remove and 300 not upgraded. 2024-04-15T21:14:59.555 INFO:teuthology.orchestra.run.smithi133.stdout:Need to get 181 MB of archives. 2024-04-15T21:14:59.555 INFO:teuthology.orchestra.run.smithi133.stdout:After this operation, 829 MB of additional disk space will be used. 2024-04-15T21:14:59.555 INFO:teuthology.orchestra.run.smithi133.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-04-15T21:14:59.585 INFO:teuthology.orchestra.run.smithi133.stdout:Get:2 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.0.0-3084-g87dbfb63-1jammy [3,554 kB] 2024-04-15T21:14:59.613 INFO:teuthology.orchestra.run.smithi187.stdout:0 upgraded, 118 newly installed, 0 to remove and 300 not upgraded. 2024-04-15T21:14:59.613 INFO:teuthology.orchestra.run.smithi187.stdout:Need to get 181 MB of archives. 2024-04-15T21:14:59.613 INFO:teuthology.orchestra.run.smithi187.stdout:After this operation, 829 MB of additional disk space will be used. 2024-04-15T21:14:59.613 INFO:teuthology.orchestra.run.smithi187.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-04-15T21:14:59.633 INFO:teuthology.orchestra.run.smithi132.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-04-15T21:14:59.635 INFO:teuthology.orchestra.run.smithi132.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-04-15T21:14:59.643 INFO:teuthology.orchestra.run.smithi187.stdout:Get:2 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.0.0-3084-g87dbfb63-1jammy [3,554 kB] 2024-04-15T21:14:59.655 INFO:teuthology.orchestra.run.smithi132.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-04-15T21:14:59.684 INFO:teuthology.orchestra.run.smithi132.stdout:Get:5 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 19.0.0-3084-g87dbfb63-1jammy [3,554 kB] 2024-04-15T21:14:59.719 INFO:teuthology.orchestra.run.smithi132.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-04-15T21:14:59.724 INFO:teuthology.orchestra.run.smithi132.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-04-15T21:14:59.736 INFO:teuthology.orchestra.run.smithi132.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-04-15T21:14:59.741 INFO:teuthology.orchestra.run.smithi132.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-04-15T21:14:59.741 INFO:teuthology.orchestra.run.smithi132.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-04-15T21:14:59.742 INFO:teuthology.orchestra.run.smithi132.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-04-15T21:14:59.750 INFO:teuthology.orchestra.run.smithi132.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-04-15T21:14:59.753 INFO:teuthology.orchestra.run.smithi132.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-04-15T21:14:59.755 INFO:teuthology.orchestra.run.smithi132.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-04-15T21:14:59.756 INFO:teuthology.orchestra.run.smithi132.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-04-15T21:14:59.765 INFO:teuthology.orchestra.run.smithi132.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-04-15T21:14:59.767 INFO:teuthology.orchestra.run.smithi132.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-04-15T21:14:59.769 INFO:teuthology.orchestra.run.smithi132.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-04-15T21:14:59.771 INFO:teuthology.orchestra.run.smithi132.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-04-15T21:14:59.784 INFO:teuthology.orchestra.run.smithi132.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-04-15T21:14:59.785 INFO:teuthology.orchestra.run.smithi132.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-04-15T21:14:59.785 INFO:teuthology.orchestra.run.smithi132.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-04-15T21:14:59.786 INFO:teuthology.orchestra.run.smithi132.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-04-15T21:14:59.786 INFO:teuthology.orchestra.run.smithi132.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-04-15T21:14:59.787 INFO:teuthology.orchestra.run.smithi132.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-04-15T21:14:59.804 INFO:teuthology.orchestra.run.smithi132.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-04-15T21:14:59.805 INFO:teuthology.orchestra.run.smithi132.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-04-15T21:14:59.805 INFO:teuthology.orchestra.run.smithi132.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-04-15T21:14:59.807 INFO:teuthology.orchestra.run.smithi132.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-04-15T21:14:59.823 INFO:teuthology.orchestra.run.smithi132.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-04-15T21:14:59.824 INFO:teuthology.orchestra.run.smithi132.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-04-15T21:14:59.825 INFO:teuthology.orchestra.run.smithi132.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-04-15T21:14:59.825 INFO:teuthology.orchestra.run.smithi132.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-04-15T21:14:59.826 INFO:teuthology.orchestra.run.smithi132.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-04-15T21:14:59.826 INFO:teuthology.orchestra.run.smithi132.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webob all 1:1.8.6-1.1 [85.2 kB] 2024-04-15T21:14:59.844 INFO:teuthology.orchestra.run.smithi132.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-04-15T21:14:59.845 INFO:teuthology.orchestra.run.smithi132.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-04-15T21:14:59.845 INFO:teuthology.orchestra.run.smithi132.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-04-15T21:14:59.850 INFO:teuthology.orchestra.run.smithi132.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-04-15T21:14:59.863 INFO:teuthology.orchestra.run.smithi132.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-04-15T21:14:59.864 INFO:teuthology.orchestra.run.smithi132.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-04-15T21:14:59.864 INFO:teuthology.orchestra.run.smithi132.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-04-15T21:14:59.866 INFO:teuthology.orchestra.run.smithi132.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-04-15T21:14:59.868 INFO:teuthology.orchestra.run.smithi132.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-04-15T21:14:59.868 INFO:teuthology.orchestra.run.smithi132.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-04-15T21:14:59.885 INFO:teuthology.orchestra.run.smithi132.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-04-15T21:14:59.886 INFO:teuthology.orchestra.run.smithi132.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.1 [181 kB] 2024-04-15T21:14:59.889 INFO:teuthology.orchestra.run.smithi132.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-04-15T21:14:59.889 INFO:teuthology.orchestra.run.smithi132.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-04-15T21:14:59.905 INFO:teuthology.orchestra.run.smithi132.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-04-15T21:14:59.907 INFO:teuthology.orchestra.run.smithi132.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-04-15T21:14:59.964 INFO:teuthology.orchestra.run.smithi132.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-04-15T21:14:59.965 INFO:teuthology.orchestra.run.smithi132.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.1 [108 kB] 2024-04-15T21:14:59.970 INFO:teuthology.orchestra.run.smithi132.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-04-15T21:14:59.970 INFO:teuthology.orchestra.run.smithi132.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-04-15T21:14:59.970 INFO:teuthology.orchestra.run.smithi132.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-04-15T21:14:59.982 INFO:teuthology.orchestra.run.smithi133.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-04-15T21:14:59.992 INFO:teuthology.orchestra.run.smithi132.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-04-15T21:14:59.994 INFO:teuthology.orchestra.run.smithi133.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-04-15T21:14:59.994 INFO:teuthology.orchestra.run.smithi132.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-04-15T21:14:59.994 INFO:teuthology.orchestra.run.smithi132.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-04-15T21:15:00.018 INFO:teuthology.orchestra.run.smithi132.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-04-15T21:15:00.019 INFO:teuthology.orchestra.run.smithi132.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-04-15T21:15:00.019 INFO:teuthology.orchestra.run.smithi132.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-04-15T21:15:00.019 INFO:teuthology.orchestra.run.smithi132.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-04-15T21:15:00.020 INFO:teuthology.orchestra.run.smithi132.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-04-15T21:15:00.020 INFO:teuthology.orchestra.run.smithi132.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-04-15T21:15:00.030 INFO:teuthology.orchestra.run.smithi132.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-04-15T21:15:00.031 INFO:teuthology.orchestra.run.smithi132.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-04-15T21:15:00.034 INFO:teuthology.orchestra.run.smithi132.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-04-15T21:15:00.038 INFO:teuthology.orchestra.run.smithi187.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-04-15T21:15:00.050 INFO:teuthology.orchestra.run.smithi132.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-04-15T21:15:00.051 INFO:teuthology.orchestra.run.smithi187.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-04-15T21:15:00.051 INFO:teuthology.orchestra.run.smithi132.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-04-15T21:15:00.052 INFO:teuthology.orchestra.run.smithi132.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-04-15T21:15:00.055 INFO:teuthology.orchestra.run.smithi132.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-04-15T21:15:00.058 INFO:teuthology.orchestra.run.smithi132.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-04-15T21:15:00.059 INFO:teuthology.orchestra.run.smithi132.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-04-15T21:15:00.059 INFO:teuthology.orchestra.run.smithi132.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.1 [474 kB] 2024-04-15T21:15:00.064 INFO:teuthology.orchestra.run.smithi133.stdout:Get:5 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.0.0-3084-g87dbfb63-1jammy [3,224 kB] 2024-04-15T21:15:00.069 INFO:teuthology.orchestra.run.smithi132.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-04-15T21:15:00.070 INFO:teuthology.orchestra.run.smithi132.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-04-15T21:15:00.073 INFO:teuthology.orchestra.run.smithi132.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-04-15T21:15:00.076 INFO:teuthology.orchestra.run.smithi133.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-04-15T21:15:00.089 INFO:teuthology.orchestra.run.smithi132.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-04-15T21:15:00.090 INFO:teuthology.orchestra.run.smithi132.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-04-15T21:15:00.090 INFO:teuthology.orchestra.run.smithi132.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-04-15T21:15:00.092 INFO:teuthology.orchestra.run.smithi132.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-04-15T21:15:00.092 INFO:teuthology.orchestra.run.smithi132.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-04-15T21:15:00.099 INFO:teuthology.orchestra.run.smithi132.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-04-15T21:15:00.100 INFO:teuthology.orchestra.run.smithi132.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-04-15T21:15:00.103 INFO:teuthology.orchestra.run.smithi187.stdout:Get:5 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.0.0-3084-g87dbfb63-1jammy [3,224 kB] 2024-04-15T21:15:00.108 INFO:teuthology.orchestra.run.smithi132.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-04-15T21:15:00.111 INFO:teuthology.orchestra.run.smithi132.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-04-15T21:15:00.111 INFO:teuthology.orchestra.run.smithi132.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-04-15T21:15:00.132 INFO:teuthology.orchestra.run.smithi187.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-04-15T21:15:00.184 INFO:teuthology.orchestra.run.smithi132.stdout:Get:89 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 19.0.0-3084-g87dbfb63-1jammy [3,224 kB] 2024-04-15T21:15:00.306 INFO:teuthology.orchestra.run.smithi133.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-04-15T21:15:00.307 INFO:teuthology.orchestra.run.smithi133.stdout:Get:8 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.0.0-3084-g87dbfb63-1jammy [712 kB] 2024-04-15T21:15:00.318 INFO:teuthology.orchestra.run.smithi133.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-04-15T21:15:00.347 INFO:teuthology.orchestra.run.smithi133.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-04-15T21:15:00.357 INFO:teuthology.orchestra.run.smithi133.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-04-15T21:15:00.358 INFO:teuthology.orchestra.run.smithi133.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-04-15T21:15:00.359 INFO:teuthology.orchestra.run.smithi133.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-04-15T21:15:00.362 INFO:teuthology.orchestra.run.smithi187.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-04-15T21:15:00.371 INFO:teuthology.orchestra.run.smithi187.stdout:Get:8 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.0.0-3084-g87dbfb63-1jammy [712 kB] 2024-04-15T21:15:00.374 INFO:teuthology.orchestra.run.smithi133.stdout:Get:14 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.0.0-3084-g87dbfb63-1jammy [356 kB] 2024-04-15T21:15:00.374 INFO:teuthology.orchestra.run.smithi187.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-04-15T21:15:00.378 INFO:teuthology.orchestra.run.smithi133.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-04-15T21:15:00.389 INFO:teuthology.orchestra.run.smithi133.stdout:Get:16 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.0.0-3084-g87dbfb63-1jammy [32.8 kB] 2024-04-15T21:15:00.391 INFO:teuthology.orchestra.run.smithi133.stdout:Get:17 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.0.0-3084-g87dbfb63-1jammy [180 kB] 2024-04-15T21:15:00.407 INFO:teuthology.orchestra.run.smithi187.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-04-15T21:15:00.416 INFO:teuthology.orchestra.run.smithi187.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-04-15T21:15:00.418 INFO:teuthology.orchestra.run.smithi187.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-04-15T21:15:00.419 INFO:teuthology.orchestra.run.smithi187.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-04-15T21:15:00.420 INFO:teuthology.orchestra.run.smithi133.stdout:Get:18 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.0.0-3084-g87dbfb63-1jammy [66.9 kB] 2024-04-15T21:15:00.423 INFO:teuthology.orchestra.run.smithi133.stdout:Get:19 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.0.0-3084-g87dbfb63-1jammy [330 kB] 2024-04-15T21:15:00.437 INFO:teuthology.orchestra.run.smithi187.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline-dev amd64 8.1.2-1 [166 kB] 2024-04-15T21:15:00.443 INFO:teuthology.orchestra.run.smithi187.stdout:Get:15 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.0.0-3084-g87dbfb63-1jammy [356 kB] 2024-04-15T21:15:00.461 INFO:teuthology.orchestra.run.smithi133.stdout:Get:20 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.0.0-3084-g87dbfb63-1jammy [6,889 kB] 2024-04-15T21:15:00.492 INFO:teuthology.orchestra.run.smithi132.stdout:Get:90 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 19.0.0-3084-g87dbfb63-1jammy [712 kB] 2024-04-15T21:15:00.507 INFO:teuthology.orchestra.run.smithi187.stdout:Get:16 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.0.0-3084-g87dbfb63-1jammy [32.8 kB] 2024-04-15T21:15:00.508 INFO:teuthology.orchestra.run.smithi187.stdout:Get:17 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.0.0-3084-g87dbfb63-1jammy [180 kB] 2024-04-15T21:15:00.517 INFO:teuthology.orchestra.run.smithi187.stdout:Get:18 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.0.0-3084-g87dbfb63-1jammy [66.9 kB] 2024-04-15T21:15:00.519 INFO:teuthology.orchestra.run.smithi187.stdout:Get:19 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.0.0-3084-g87dbfb63-1jammy [330 kB] 2024-04-15T21:15:00.532 INFO:teuthology.orchestra.run.smithi187.stdout:Get:20 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.0.0-3084-g87dbfb63-1jammy [6,889 kB] 2024-04-15T21:15:00.547 INFO:teuthology.orchestra.run.smithi133.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-04-15T21:15:00.571 INFO:teuthology.orchestra.run.smithi132.stdout:Get:91 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 19.0.0-3084-g87dbfb63-1jammy [356 kB] 2024-04-15T21:15:00.605 INFO:teuthology.orchestra.run.smithi187.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblua5.3-dev amd64 5.3.6-1build1 [167 kB] 2024-04-15T21:15:00.641 INFO:teuthology.orchestra.run.smithi132.stdout:Get:92 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 19.0.0-3084-g87dbfb63-1jammy [32.8 kB] 2024-04-15T21:15:00.642 INFO:teuthology.orchestra.run.smithi132.stdout:Get:93 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 19.0.0-3084-g87dbfb63-1jammy [180 kB] 2024-04-15T21:15:00.648 INFO:teuthology.orchestra.run.smithi132.stdout:Get:94 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 19.0.0-3084-g87dbfb63-1jammy [66.9 kB] 2024-04-15T21:15:00.651 INFO:teuthology.orchestra.run.smithi132.stdout:Get:95 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 19.0.0-3084-g87dbfb63-1jammy [330 kB] 2024-04-15T21:15:00.662 INFO:teuthology.orchestra.run.smithi132.stdout:Get:96 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 19.0.0-3084-g87dbfb63-1jammy [6,889 kB] 2024-04-15T21:15:00.949 INFO:teuthology.orchestra.run.smithi133.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-04-15T21:15:00.984 INFO:teuthology.orchestra.run.smithi133.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-04-15T21:15:00.986 INFO:teuthology.orchestra.run.smithi133.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-04-15T21:15:01.013 INFO:teuthology.orchestra.run.smithi187.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua5.1 amd64 5.1.5-8.1build4 [94.6 kB] 2024-04-15T21:15:01.046 INFO:teuthology.orchestra.run.smithi187.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-any all 27ubuntu1 [5,034 B] 2024-04-15T21:15:01.048 INFO:teuthology.orchestra.run.smithi187.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 zip amd64 3.0-12build2 [176 kB] 2024-04-15T21:15:01.066 INFO:teuthology.orchestra.run.smithi133.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-04-15T21:15:01.110 INFO:teuthology.orchestra.run.smithi133.stdout:Get:26 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.0.0-3084-g87dbfb63-1jammy [112 kB] 2024-04-15T21:15:01.117 INFO:teuthology.orchestra.run.smithi133.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-04-15T21:15:01.117 INFO:teuthology.orchestra.run.smithi133.stdout:Get:28 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.0.0-3084-g87dbfb63-1jammy [466 kB] 2024-04-15T21:15:01.128 INFO:teuthology.orchestra.run.smithi187.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 unzip amd64 6.0-26ubuntu3.2 [175 kB] 2024-04-15T21:15:01.138 INFO:teuthology.orchestra.run.smithi133.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-04-15T21:15:01.144 INFO:teuthology.orchestra.run.smithi133.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-04-15T21:15:01.144 INFO:teuthology.orchestra.run.smithi133.stdout:Get:31 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.0.0-3084-g87dbfb63-1jammy [25.8 MB] 2024-04-15T21:15:01.146 INFO:teuthology.orchestra.run.smithi133.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-04-15T21:15:01.157 INFO:teuthology.orchestra.run.smithi133.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-04-15T21:15:01.157 INFO:teuthology.orchestra.run.smithi133.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-04-15T21:15:01.179 INFO:teuthology.orchestra.run.smithi187.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy/universe amd64 luarocks all 3.8.0+dfsg1-1 [140 kB] 2024-04-15T21:15:01.201 INFO:teuthology.orchestra.run.smithi187.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-04-15T21:15:01.208 INFO:teuthology.orchestra.run.smithi187.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-04-15T21:15:01.208 INFO:teuthology.orchestra.run.smithi187.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-04-15T21:15:01.220 INFO:teuthology.orchestra.run.smithi187.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-04-15T21:15:01.221 INFO:teuthology.orchestra.run.smithi187.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-04-15T21:15:01.243 INFO:teuthology.orchestra.run.smithi187.stdout:Get:32 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.0.0-3084-g87dbfb63-1jammy [112 kB] 2024-04-15T21:15:01.246 INFO:teuthology.orchestra.run.smithi187.stdout:Get:33 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.0.0-3084-g87dbfb63-1jammy [466 kB] 2024-04-15T21:15:01.268 INFO:teuthology.orchestra.run.smithi187.stdout:Get:34 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.0.0-3084-g87dbfb63-1jammy [25.8 MB] 2024-04-15T21:15:01.324 INFO:teuthology.orchestra.run.smithi133.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-04-15T21:15:01.387 INFO:teuthology.orchestra.run.smithi187.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-04-15T21:15:01.407 INFO:teuthology.orchestra.run.smithi133.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-04-15T21:15:01.435 INFO:teuthology.orchestra.run.smithi133.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-04-15T21:15:01.440 INFO:teuthology.orchestra.run.smithi132.stdout:Get:97 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 19.0.0-3084-g87dbfb63-1jammy [112 kB] 2024-04-15T21:15:01.443 INFO:teuthology.orchestra.run.smithi132.stdout:Get:98 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 19.0.0-3084-g87dbfb63-1jammy [466 kB] 2024-04-15T21:15:01.452 INFO:teuthology.orchestra.run.smithi133.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-04-15T21:15:01.471 INFO:teuthology.orchestra.run.smithi187.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-04-15T21:15:01.497 INFO:teuthology.orchestra.run.smithi133.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-04-15T21:15:01.499 INFO:teuthology.orchestra.run.smithi187.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-04-15T21:15:01.510 INFO:teuthology.orchestra.run.smithi132.stdout:Get:99 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 19.0.0-3084-g87dbfb63-1jammy [25.8 MB] 2024-04-15T21:15:01.516 INFO:teuthology.orchestra.run.smithi187.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-04-15T21:15:01.561 INFO:teuthology.orchestra.run.smithi187.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-04-15T21:15:01.708 INFO:teuthology.orchestra.run.smithi133.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-04-15T21:15:01.723 INFO:teuthology.orchestra.run.smithi133.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-04-15T21:15:01.730 INFO:teuthology.orchestra.run.smithi133.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-04-15T21:15:01.736 INFO:teuthology.orchestra.run.smithi133.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-04-15T21:15:01.756 INFO:teuthology.orchestra.run.smithi133.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-04-15T21:15:01.760 INFO:teuthology.orchestra.run.smithi133.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-04-15T21:15:01.776 INFO:teuthology.orchestra.run.smithi187.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-04-15T21:15:01.791 INFO:teuthology.orchestra.run.smithi187.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-04-15T21:15:01.797 INFO:teuthology.orchestra.run.smithi187.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-04-15T21:15:01.803 INFO:teuthology.orchestra.run.smithi187.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-04-15T21:15:01.824 INFO:teuthology.orchestra.run.smithi187.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-04-15T21:15:01.828 INFO:teuthology.orchestra.run.smithi187.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-04-15T21:15:02.160 INFO:teuthology.orchestra.run.smithi133.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webob all 1:1.8.6-1.1 [85.2 kB] 2024-04-15T21:15:02.184 INFO:teuthology.orchestra.run.smithi187.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webob all 1:1.8.6-1.1 [85.2 kB] 2024-04-15T21:15:02.492 INFO:teuthology.orchestra.run.smithi133.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-04-15T21:15:02.516 INFO:teuthology.orchestra.run.smithi187.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-04-15T21:15:02.523 INFO:teuthology.orchestra.run.smithi133.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-04-15T21:15:02.533 INFO:teuthology.orchestra.run.smithi133.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-04-15T21:15:02.548 INFO:teuthology.orchestra.run.smithi187.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-04-15T21:15:02.558 INFO:teuthology.orchestra.run.smithi187.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-04-15T21:15:02.740 INFO:teuthology.orchestra.run.smithi133.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-04-15T21:15:02.741 INFO:teuthology.orchestra.run.smithi133.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-04-15T21:15:02.746 INFO:teuthology.orchestra.run.smithi133.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-04-15T21:15:02.751 INFO:teuthology.orchestra.run.smithi133.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-04-15T21:15:02.760 INFO:teuthology.orchestra.run.smithi187.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-04-15T21:15:02.761 INFO:teuthology.orchestra.run.smithi187.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-04-15T21:15:02.766 INFO:teuthology.orchestra.run.smithi133.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-04-15T21:15:02.768 INFO:teuthology.orchestra.run.smithi187.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-04-15T21:15:02.774 INFO:teuthology.orchestra.run.smithi187.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-04-15T21:15:02.788 INFO:teuthology.orchestra.run.smithi133.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-04-15T21:15:02.789 INFO:teuthology.orchestra.run.smithi187.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-04-15T21:15:02.795 INFO:teuthology.orchestra.run.smithi133.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-04-15T21:15:02.810 INFO:teuthology.orchestra.run.smithi187.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-04-15T21:15:02.816 INFO:teuthology.orchestra.run.smithi187.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-04-15T21:15:03.198 INFO:teuthology.orchestra.run.smithi187.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-04-15T21:15:03.235 INFO:teuthology.orchestra.run.smithi133.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-04-15T21:15:03.451 INFO:teuthology.orchestra.run.smithi187.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.1 [181 kB] 2024-04-15T21:15:03.499 INFO:teuthology.orchestra.run.smithi133.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.1 [181 kB] 2024-04-15T21:15:03.628 INFO:teuthology.orchestra.run.smithi187.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-04-15T21:15:03.642 INFO:teuthology.orchestra.run.smithi187.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-04-15T21:15:03.662 INFO:teuthology.orchestra.run.smithi187.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-04-15T21:15:03.719 INFO:teuthology.orchestra.run.smithi133.stdout:Get:59 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.0.0-3084-g87dbfb63-1jammy [5,094 kB] 2024-04-15T21:15:03.719 INFO:teuthology.orchestra.run.smithi133.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-04-15T21:15:03.720 INFO:teuthology.orchestra.run.smithi133.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-04-15T21:15:03.721 INFO:teuthology.orchestra.run.smithi133.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-04-15T21:15:03.726 INFO:teuthology.orchestra.run.smithi187.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-04-15T21:15:03.777 INFO:teuthology.orchestra.run.smithi133.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-04-15T21:15:03.962 INFO:teuthology.orchestra.run.smithi187.stdout:Get:63 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.0.0-3084-g87dbfb63-1jammy [5,094 kB] 2024-04-15T21:15:04.014 INFO:teuthology.orchestra.run.smithi187.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-04-15T21:15:04.016 INFO:teuthology.orchestra.run.smithi187.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.1 [108 kB] 2024-04-15T21:15:04.019 INFO:teuthology.orchestra.run.smithi187.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-04-15T21:15:04.019 INFO:teuthology.orchestra.run.smithi187.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-04-15T21:15:04.022 INFO:teuthology.orchestra.run.smithi187.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-04-15T21:15:04.066 INFO:teuthology.orchestra.run.smithi133.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-04-15T21:15:04.068 INFO:teuthology.orchestra.run.smithi133.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.1 [108 kB] 2024-04-15T21:15:04.071 INFO:teuthology.orchestra.run.smithi133.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-04-15T21:15:04.071 INFO:teuthology.orchestra.run.smithi133.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-04-15T21:15:04.074 INFO:teuthology.orchestra.run.smithi133.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-04-15T21:15:04.087 INFO:teuthology.orchestra.run.smithi133.stdout:Get:69 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.0.0-3084-g87dbfb63-1jammy [244 kB] 2024-04-15T21:15:04.102 INFO:teuthology.orchestra.run.smithi133.stdout:Get:70 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.0.0-3084-g87dbfb63-1jammy [124 kB] 2024-04-15T21:15:04.120 INFO:teuthology.orchestra.run.smithi133.stdout:Get:71 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.0.0-3084-g87dbfb63-1jammy [1,525 kB] 2024-04-15T21:15:04.249 INFO:teuthology.orchestra.run.smithi187.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-04-15T21:15:04.269 INFO:teuthology.orchestra.run.smithi133.stdout:Get:72 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.0.0-3084-g87dbfb63-1jammy [6,258 kB] 2024-04-15T21:15:04.296 INFO:teuthology.orchestra.run.smithi133.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-04-15T21:15:04.311 INFO:teuthology.orchestra.run.smithi132.stdout:Get:100 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 19.0.0-3084-g87dbfb63-1jammy [5,094 kB] 2024-04-15T21:15:04.331 INFO:teuthology.orchestra.run.smithi187.stdout:Get:70 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.0.0-3084-g87dbfb63-1jammy [244 kB] 2024-04-15T21:15:04.391 INFO:teuthology.orchestra.run.smithi187.stdout:Get:71 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.0.0-3084-g87dbfb63-1jammy [124 kB] 2024-04-15T21:15:04.394 INFO:teuthology.orchestra.run.smithi187.stdout:Get:72 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.0.0-3084-g87dbfb63-1jammy [1,525 kB] 2024-04-15T21:15:04.517 INFO:teuthology.orchestra.run.smithi187.stdout:Get:73 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.0.0-3084-g87dbfb63-1jammy [6,258 kB] 2024-04-15T21:15:04.685 INFO:teuthology.orchestra.run.smithi187.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-04-15T21:15:04.691 INFO:teuthology.orchestra.run.smithi187.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-04-15T21:15:04.733 INFO:teuthology.orchestra.run.smithi133.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-04-15T21:15:04.739 INFO:teuthology.orchestra.run.smithi133.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-04-15T21:15:04.776 INFO:teuthology.orchestra.run.smithi132.stdout:Get:101 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 19.0.0-3084-g87dbfb63-1jammy [244 kB] 2024-04-15T21:15:04.782 INFO:teuthology.orchestra.run.smithi132.stdout:Get:102 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 19.0.0-3084-g87dbfb63-1jammy [124 kB] 2024-04-15T21:15:04.815 INFO:teuthology.orchestra.run.smithi132.stdout:Get:103 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 19.0.0-3084-g87dbfb63-1jammy [1,525 kB] 2024-04-15T21:15:04.834 INFO:teuthology.orchestra.run.smithi133.stdout:Get:76 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.0.0-3084-g87dbfb63-1jammy [22.8 MB] 2024-04-15T21:15:04.980 INFO:teuthology.orchestra.run.smithi187.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-04-15T21:15:04.981 INFO:teuthology.orchestra.run.smithi187.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-04-15T21:15:04.983 INFO:teuthology.orchestra.run.smithi187.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-04-15T21:15:04.984 INFO:teuthology.orchestra.run.smithi187.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-04-15T21:15:04.986 INFO:teuthology.orchestra.run.smithi187.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-04-15T21:15:04.988 INFO:teuthology.orchestra.run.smithi187.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-04-15T21:15:04.989 INFO:teuthology.orchestra.run.smithi187.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-04-15T21:15:04.991 INFO:teuthology.orchestra.run.smithi187.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-04-15T21:15:05.030 INFO:teuthology.orchestra.run.smithi133.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-04-15T21:15:05.030 INFO:teuthology.orchestra.run.smithi133.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-04-15T21:15:05.032 INFO:teuthology.orchestra.run.smithi133.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-04-15T21:15:05.034 INFO:teuthology.orchestra.run.smithi133.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-04-15T21:15:05.036 INFO:teuthology.orchestra.run.smithi133.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-04-15T21:15:05.038 INFO:teuthology.orchestra.run.smithi133.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-04-15T21:15:05.039 INFO:teuthology.orchestra.run.smithi133.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-04-15T21:15:05.040 INFO:teuthology.orchestra.run.smithi133.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-04-15T21:15:05.060 INFO:teuthology.orchestra.run.smithi132.stdout:Get:104 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 19.0.0-3084-g87dbfb63-1jammy [6,258 kB] 2024-04-15T21:15:05.173 INFO:teuthology.orchestra.run.smithi187.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-04-15T21:15:05.203 INFO:teuthology.orchestra.run.smithi187.stdout:Get:85 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.0.0-3084-g87dbfb63-1jammy [22.8 MB] 2024-04-15T21:15:05.224 INFO:teuthology.orchestra.run.smithi133.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-04-15T21:15:05.589 INFO:teuthology.orchestra.run.smithi187.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-04-15T21:15:05.635 INFO:teuthology.orchestra.run.smithi187.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-04-15T21:15:05.636 INFO:teuthology.orchestra.run.smithi133.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-04-15T21:15:05.671 INFO:teuthology.orchestra.run.smithi187.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-04-15T21:15:05.684 INFO:teuthology.orchestra.run.smithi133.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-04-15T21:15:05.708 INFO:teuthology.orchestra.run.smithi132.stdout:Get:105 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 19.0.0-3084-g87dbfb63-1jammy [22.8 MB] 2024-04-15T21:15:05.718 INFO:teuthology.orchestra.run.smithi133.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-04-15T21:15:05.767 INFO:teuthology.orchestra.run.smithi187.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-04-15T21:15:05.809 INFO:teuthology.orchestra.run.smithi187.stdout:Get:90 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-04-15T21:15:05.815 INFO:teuthology.orchestra.run.smithi133.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-04-15T21:15:05.819 INFO:teuthology.orchestra.run.smithi187.stdout:Get:91 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-04-15T21:15:05.824 INFO:teuthology.orchestra.run.smithi187.stdout:Get:92 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.1 [474 kB] 2024-04-15T21:15:05.855 INFO:teuthology.orchestra.run.smithi133.stdout:Get:90 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-socket amd64 3.0~rc1+git+ac3201d-6 [78.9 kB] 2024-04-15T21:15:05.867 INFO:teuthology.orchestra.run.smithi133.stdout:Get:91 http://archive.ubuntu.com/ubuntu jammy/universe amd64 lua-sec amd64 1.0.2-1 [37.6 kB] 2024-04-15T21:15:05.871 INFO:teuthology.orchestra.run.smithi187.stdout:Get:93 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-04-15T21:15:05.872 INFO:teuthology.orchestra.run.smithi133.stdout:Get:92 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.1 [474 kB] 2024-04-15T21:15:05.875 INFO:teuthology.orchestra.run.smithi187.stdout:Get:94 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-04-15T21:15:05.896 INFO:teuthology.orchestra.run.smithi187.stdout:Get:95 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-04-15T21:15:05.920 INFO:teuthology.orchestra.run.smithi133.stdout:Get:93 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] 2024-04-15T21:15:05.923 INFO:teuthology.orchestra.run.smithi133.stdout:Get:94 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-04-15T21:15:05.944 INFO:teuthology.orchestra.run.smithi133.stdout:Get:95 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-04-15T21:15:06.060 INFO:teuthology.orchestra.run.smithi187.stdout:Get:96 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-04-15T21:15:06.109 INFO:teuthology.orchestra.run.smithi133.stdout:Get:96 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-04-15T21:15:06.324 INFO:teuthology.orchestra.run.smithi187.stdout:Get:97 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-04-15T21:15:06.342 INFO:teuthology.orchestra.run.smithi187.stdout:Get:98 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-04-15T21:15:06.382 INFO:teuthology.orchestra.run.smithi133.stdout:Get:97 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-04-15T21:15:06.399 INFO:teuthology.orchestra.run.smithi133.stdout:Get:98 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-04-15T21:15:06.494 INFO:teuthology.orchestra.run.smithi187.stdout:Get:99 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-04-15T21:15:06.523 INFO:teuthology.orchestra.run.smithi187.stdout:Get:100 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-04-15T21:15:06.553 INFO:teuthology.orchestra.run.smithi133.stdout:Get:99 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-04-15T21:15:06.582 INFO:teuthology.orchestra.run.smithi133.stdout:Get:100 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-04-15T21:15:06.680 INFO:teuthology.orchestra.run.smithi187.stdout:Get:101 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-04-15T21:15:06.682 INFO:teuthology.orchestra.run.smithi187.stdout:Get:102 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-04-15T21:15:06.684 INFO:teuthology.orchestra.run.smithi187.stdout:Get:103 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-04-15T21:15:06.706 INFO:teuthology.orchestra.run.smithi187.stdout:Get:104 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-04-15T21:15:06.711 INFO:teuthology.orchestra.run.smithi187.stdout:Get:105 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-04-15T21:15:06.730 INFO:teuthology.orchestra.run.smithi133.stdout:Get:101 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.0.0-3084-g87dbfb63-1jammy [14.1 kB] 2024-04-15T21:15:06.731 INFO:teuthology.orchestra.run.smithi133.stdout:Get:102 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.0.0-3084-g87dbfb63-1jammy [870 kB] 2024-04-15T21:15:06.771 INFO:teuthology.orchestra.run.smithi133.stdout:Get:103 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.0.0-3084-g87dbfb63-1jammy [2,437 kB] 2024-04-15T21:15:06.771 INFO:teuthology.orchestra.run.smithi133.stdout:Get:104 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-04-15T21:15:06.772 INFO:teuthology.orchestra.run.smithi133.stdout:Get:105 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-04-15T21:15:06.772 INFO:teuthology.orchestra.run.smithi133.stdout:Get:106 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-04-15T21:15:06.777 INFO:teuthology.orchestra.run.smithi133.stdout:Get:107 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-04-15T21:15:06.779 INFO:teuthology.orchestra.run.smithi133.stdout:Get:108 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-04-15T21:15:06.917 INFO:teuthology.orchestra.run.smithi133.stdout:Get:109 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.0.0-3084-g87dbfb63-1jammy [791 kB] 2024-04-15T21:15:06.962 INFO:teuthology.orchestra.run.smithi133.stdout:Get:110 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.0.0-3084-g87dbfb63-1jammy [148 kB] 2024-04-15T21:15:06.978 INFO:teuthology.orchestra.run.smithi133.stdout:Get:111 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.0.0-3084-g87dbfb63-1jammy [2,308 kB] 2024-04-15T21:15:07.165 INFO:teuthology.orchestra.run.smithi133.stdout:Get:112 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.0.0-3084-g87dbfb63-1jammy [8,625 kB] 2024-04-15T21:15:07.783 INFO:teuthology.orchestra.run.smithi187.stdout:Get:106 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.0.0-3084-g87dbfb63-1jammy [14.1 kB] 2024-04-15T21:15:07.784 INFO:teuthology.orchestra.run.smithi187.stdout:Get:107 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.0.0-3084-g87dbfb63-1jammy [870 kB] 2024-04-15T21:15:07.801 INFO:teuthology.orchestra.run.smithi187.stdout:Get:108 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.0.0-3084-g87dbfb63-1jammy [2,437 kB] 2024-04-15T21:15:07.841 INFO:teuthology.orchestra.run.smithi133.stdout:Get:113 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.0.0-3084-g87dbfb63-1jammy [14.2 kB] 2024-04-15T21:15:07.841 INFO:teuthology.orchestra.run.smithi133.stdout:Get:114 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.0.0-3084-g87dbfb63-1jammy [51.6 MB] 2024-04-15T21:15:08.029 INFO:teuthology.orchestra.run.smithi187.stdout:Get:109 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.0.0-3084-g87dbfb63-1jammy [791 kB] 2024-04-15T21:15:08.115 INFO:teuthology.orchestra.run.smithi187.stdout:Get:110 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.0.0-3084-g87dbfb63-1jammy [148 kB] 2024-04-15T21:15:08.119 INFO:teuthology.orchestra.run.smithi187.stdout:Get:111 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.0.0-3084-g87dbfb63-1jammy [2,308 kB] 2024-04-15T21:15:08.375 INFO:teuthology.orchestra.run.smithi187.stdout:Get:112 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.0.0-3084-g87dbfb63-1jammy [8,625 kB] 2024-04-15T21:15:08.416 INFO:teuthology.orchestra.run.smithi132.stdout:Get:106 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 19.0.0-3084-g87dbfb63-1jammy [14.1 kB] 2024-04-15T21:15:08.416 INFO:teuthology.orchestra.run.smithi132.stdout:Get:107 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 19.0.0-3084-g87dbfb63-1jammy [870 kB] 2024-04-15T21:15:08.467 INFO:teuthology.orchestra.run.smithi132.stdout:Get:108 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 19.0.0-3084-g87dbfb63-1jammy [2,437 kB] 2024-04-15T21:15:08.758 INFO:teuthology.orchestra.run.smithi132.stdout:Get:109 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 19.0.0-3084-g87dbfb63-1jammy [791 kB] 2024-04-15T21:15:08.846 INFO:teuthology.orchestra.run.smithi132.stdout:Get:110 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 19.0.0-3084-g87dbfb63-1jammy [148 kB] 2024-04-15T21:15:08.850 INFO:teuthology.orchestra.run.smithi132.stdout:Get:111 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 19.0.0-3084-g87dbfb63-1jammy [2,308 kB] 2024-04-15T21:15:09.116 INFO:teuthology.orchestra.run.smithi132.stdout:Get:112 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 19.0.0-3084-g87dbfb63-1jammy [8,625 kB] 2024-04-15T21:15:09.282 INFO:teuthology.orchestra.run.smithi187.stdout:Get:113 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.0.0-3084-g87dbfb63-1jammy [14.2 kB] 2024-04-15T21:15:09.282 INFO:teuthology.orchestra.run.smithi187.stdout:Get:114 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.0.0-3084-g87dbfb63-1jammy [51.6 MB] 2024-04-15T21:15:10.256 INFO:teuthology.orchestra.run.smithi132.stdout:Get:113 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 19.0.0-3084-g87dbfb63-1jammy [14.2 kB] 2024-04-15T21:15:10.256 INFO:teuthology.orchestra.run.smithi132.stdout:Get:114 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 19.0.0-3084-g87dbfb63-1jammy [51.6 MB] 2024-04-15T21:15:11.909 INFO:teuthology.orchestra.run.smithi133.stdout:Get:115 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.0.0-3084-g87dbfb63-1jammy [121 kB] 2024-04-15T21:15:11.911 INFO:teuthology.orchestra.run.smithi133.stdout:Get:116 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.0.0-3084-g87dbfb63-1jammy [38.9 kB] 2024-04-15T21:15:11.912 INFO:teuthology.orchestra.run.smithi133.stdout:Get:117 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.0.0-3084-g87dbfb63-1jammy [13.6 MB] 2024-04-15T21:15:12.682 INFO:teuthology.orchestra.run.smithi133.stdout:Get:118 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.0.0-3084-g87dbfb63-1jammy [91.6 kB] 2024-04-15T21:15:13.250 INFO:teuthology.orchestra.run.smithi133.stdout:Fetched 181 MB in 13s (13.6 MB/s) 2024-04-15T21:15:13.408 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-04-15T21:15:13.503 INFO:teuthology.orchestra.run.smithi133.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 ... 165995 files and directories currently installed.) 2024-04-15T21:15:13.509 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-04-15T21:15:13.590 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-15T21:15:13.927 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-04-15T21:15:13.953 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-04-15T21:15:14.002 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-15T21:15:14.313 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-04-15T21:15:14.340 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-04-15T21:15:14.379 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-15T21:15:14.791 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-04-15T21:15:14.812 INFO:teuthology.orchestra.run.smithi187.stdout:Get:115 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.0.0-3084-g87dbfb63-1jammy [121 kB] 2024-04-15T21:15:14.815 INFO:teuthology.orchestra.run.smithi187.stdout:Get:116 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.0.0-3084-g87dbfb63-1jammy [38.9 kB] 2024-04-15T21:15:14.816 INFO:teuthology.orchestra.run.smithi187.stdout:Get:117 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.0.0-3084-g87dbfb63-1jammy [13.6 MB] 2024-04-15T21:15:14.818 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-15T21:15:14.866 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:15:15.261 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-04-15T21:15:15.287 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-15T21:15:15.327 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:15:15.681 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-04-15T21:15:15.707 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-15T21:15:15.747 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:15:15.942 INFO:teuthology.orchestra.run.smithi132.stdout:Get:115 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 19.0.0-3084-g87dbfb63-1jammy [121 kB] 2024-04-15T21:15:15.944 INFO:teuthology.orchestra.run.smithi132.stdout:Get:116 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 19.0.0-3084-g87dbfb63-1jammy [38.9 kB] 2024-04-15T21:15:15.945 INFO:teuthology.orchestra.run.smithi132.stdout:Get:117 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 19.0.0-3084-g87dbfb63-1jammy [13.6 MB] 2024-04-15T21:15:16.092 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-04-15T21:15:16.115 INFO:teuthology.orchestra.run.smithi187.stdout:Get:118 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.0.0-3084-g87dbfb63-1jammy [91.6 kB] 2024-04-15T21:15:16.118 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-04-15T21:15:16.158 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-15T21:15:16.428 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package librados2. 2024-04-15T21:15:16.454 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../007-librados2_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:16.550 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking librados2 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:16.742 INFO:teuthology.orchestra.run.smithi187.stdout:Fetched 181 MB in 17s (10.8 MB/s) 2024-04-15T21:15:16.903 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-04-15T21:15:17.000 INFO:teuthology.orchestra.run.smithi187.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 ... 165995 files and directories currently installed.) 2024-04-15T21:15:17.005 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-04-15T21:15:17.093 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-15T21:15:17.214 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package librbd1. 2024-04-15T21:15:17.240 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../008-librbd1_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:17.280 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking librbd1 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:17.438 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-04-15T21:15:17.465 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-04-15T21:15:17.505 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-15T21:15:17.596 INFO:teuthology.orchestra.run.smithi132.stdout:Get:118 https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 19.0.0-3084-g87dbfb63-1jammy [91.6 kB] 2024-04-15T21:15:17.725 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package libcephfs2. 2024-04-15T21:15:17.751 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../009-libcephfs2_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:17.791 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking libcephfs2 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:17.850 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-04-15T21:15:17.876 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-04-15T21:15:17.916 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-15T21:15:18.070 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-rados. 2024-04-15T21:15:18.095 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../010-python3-rados_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:18.127 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-rados (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:18.155 INFO:teuthology.orchestra.run.smithi132.stdout:Fetched 181 MB in 18s (9,993 kB/s) 2024-04-15T21:15:18.278 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-04-15T21:15:18.300 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-04-15T21:15:18.304 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-15T21:15:18.353 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:15:18.399 INFO:teuthology.orchestra.run.smithi132.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 ... 165995 files and directories currently installed.) 2024-04-15T21:15:18.405 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../000-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-04-15T21:15:18.422 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-04-15T21:15:18.448 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:15:18.488 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-ceph-argparse (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:18.490 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-15T21:15:18.756 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-04-15T21:15:18.765 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-cephfs. 2024-04-15T21:15:18.782 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-15T21:15:18.792 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../012-python3-cephfs_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:18.822 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:15:18.827 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-04-15T21:15:18.832 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-cephfs (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:18.853 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../001-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-04-15T21:15:18.885 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-15T21:15:19.143 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-ceph-common. 2024-04-15T21:15:19.169 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../013-python3-ceph-common_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:15:19.201 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-04-15T21:15:19.209 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-ceph-common (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:19.213 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-04-15T21:15:19.227 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-15T21:15:19.240 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../002-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-04-15T21:15:19.267 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:15:19.280 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-15T21:15:19.538 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-wcwidth. 2024-04-15T21:15:19.554 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-04-15T21:15:19.564 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-04-15T21:15:19.580 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-04-15T21:15:19.604 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-15T21:15:19.620 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-15T21:15:19.651 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-04-15T21:15:19.677 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../003-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-15T21:15:19.717 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:15:19.890 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-prettytable. 2024-04-15T21:15:19.916 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-04-15T21:15:19.948 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-04-15T21:15:19.981 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package librados2. 2024-04-15T21:15:20.007 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../007-librados2_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:20.056 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking librados2 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:20.137 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-04-15T21:15:20.163 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../004-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-15T21:15:20.192 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-rbd. 2024-04-15T21:15:20.204 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:15:20.218 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../016-python3-rbd_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:20.259 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-rbd (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:20.532 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-04-15T21:15:20.559 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../005-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-04-15T21:15:20.599 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:15:20.612 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-04-15T21:15:20.639 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-04-15T21:15:20.676 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package librbd1. 2024-04-15T21:15:20.678 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-15T21:15:20.702 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../008-librbd1_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:20.742 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking librbd1 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:20.893 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-04-15T21:15:20.909 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../006-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-04-15T21:15:20.943 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-15T21:15:20.956 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-04-15T21:15:20.983 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-04-15T21:15:21.022 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-04-15T21:15:21.153 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package libcephfs2. 2024-04-15T21:15:21.179 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../009-libcephfs2_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:21.211 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking libcephfs2 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:21.263 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package librados2. 2024-04-15T21:15:21.290 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../007-librados2_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:21.308 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-04-15T21:15:21.324 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-04-15T21:15:21.330 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking librados2 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:21.358 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-15T21:15:21.455 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-rados. 2024-04-15T21:15:21.482 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../010-python3-rados_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:21.522 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-rados (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:21.687 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package lua5.1. 2024-04-15T21:15:21.713 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-04-15T21:15:21.753 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-04-15T21:15:21.783 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package librbd1. 2024-04-15T21:15:21.809 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../008-librbd1_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:21.849 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking librbd1 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:21.866 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-04-15T21:15:21.893 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:15:21.933 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-ceph-argparse (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:22.006 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package lua-any. 2024-04-15T21:15:22.021 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-04-15T21:15:22.056 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking lua-any (27ubuntu1) ... 2024-04-15T21:15:22.186 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-cephfs. 2024-04-15T21:15:22.212 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../012-python3-cephfs_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:22.252 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-cephfs (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:22.261 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package libcephfs2. 2024-04-15T21:15:22.287 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../009-libcephfs2_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:22.325 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package zip. 2024-04-15T21:15:22.327 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking libcephfs2 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:22.351 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-04-15T21:15:22.521 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking zip (3.0-12build2) ... 2024-04-15T21:15:22.538 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-ceph-common. 2024-04-15T21:15:22.564 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../013-python3-ceph-common_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:15:22.605 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-ceph-common (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:22.605 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-rados. 2024-04-15T21:15:22.631 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../010-python3-rados_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:22.672 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-rados (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:22.862 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package unzip. 2024-04-15T21:15:22.888 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-04-15T21:15:22.893 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-wcwidth. 2024-04-15T21:15:22.908 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-04-15T21:15:22.928 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-04-15T21:15:22.943 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-15T21:15:22.991 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-04-15T21:15:23.018 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../011-python3-ceph-argparse_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:15:23.213 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-prettytable. 2024-04-15T21:15:23.216 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-ceph-argparse (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:23.239 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-04-15T21:15:23.279 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-04-15T21:15:23.349 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package luarocks. 2024-04-15T21:15:23.374 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-04-15T21:15:23.407 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-04-15T21:15:23.460 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-cephfs. 2024-04-15T21:15:23.475 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../012-python3-cephfs_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:23.510 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-cephfs (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:23.540 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-rbd. 2024-04-15T21:15:23.566 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../016-python3-rbd_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:23.598 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-rbd (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:23.789 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-ceph-common. 2024-04-15T21:15:23.814 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package librgw2. 2024-04-15T21:15:23.815 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../013-python3-ceph-common_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:15:23.841 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../025-librgw2_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:23.855 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-ceph-common (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:23.872 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking librgw2 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:23.993 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-04-15T21:15:24.020 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-04-15T21:15:24.060 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-15T21:15:24.183 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-wcwidth. 2024-04-15T21:15:24.210 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../014-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-04-15T21:15:24.250 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-15T21:15:24.346 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-04-15T21:15:24.361 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-04-15T21:15:24.391 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-rgw. 2024-04-15T21:15:24.405 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-04-15T21:15:24.418 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../026-python3-rgw_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:24.458 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-rgw (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:24.570 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-prettytable. 2024-04-15T21:15:24.593 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../015-python3-prettytable_2.5.0-2_all.deb ... 2024-04-15T21:15:24.636 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-04-15T21:15:24.707 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-04-15T21:15:24.733 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-04-15T21:15:24.774 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-15T21:15:24.786 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package liboath0:amd64. 2024-04-15T21:15:24.812 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-04-15T21:15:24.861 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-04-15T21:15:24.864 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-rbd. 2024-04-15T21:15:24.879 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../016-python3-rbd_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:24.914 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-rbd (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:25.094 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package lua5.1. 2024-04-15T21:15:25.120 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-04-15T21:15:25.161 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-04-15T21:15:25.163 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package libradosstriper1. 2024-04-15T21:15:25.190 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../028-libradosstriper1_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:25.230 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking libradosstriper1 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:25.234 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-04-15T21:15:25.260 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../017-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-04-15T21:15:25.300 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-15T21:15:25.464 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package lua-any. 2024-04-15T21:15:25.490 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-04-15T21:15:25.530 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking lua-any (27ubuntu1) ... 2024-04-15T21:15:25.569 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package libreadline-dev:amd64. 2024-04-15T21:15:25.583 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package ceph-common. 2024-04-15T21:15:25.584 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../018-libreadline-dev_8.1.2-1_amd64.deb ... 2024-04-15T21:15:25.610 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../029-ceph-common_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:25.636 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking libreadline-dev:amd64 (8.1.2-1) ... 2024-04-15T21:15:25.642 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking ceph-common (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:25.883 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package zip. 2024-04-15T21:15:25.909 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-04-15T21:15:25.948 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package liblua5.3-dev:amd64. 2024-04-15T21:15:25.949 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking zip (3.0-12build2) ... 2024-04-15T21:15:25.963 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../019-liblua5.3-dev_5.3.6-1build1_amd64.deb ... 2024-04-15T21:15:26.006 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-15T21:15:26.228 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package unzip. 2024-04-15T21:15:26.254 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-04-15T21:15:26.295 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-04-15T21:15:26.301 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package lua5.1. 2024-04-15T21:15:26.316 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../020-lua5.1_5.1.5-8.1build4_amd64.deb ... 2024-04-15T21:15:26.351 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking lua5.1 (5.1.5-8.1build4) ... 2024-04-15T21:15:26.671 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package lua-any. 2024-04-15T21:15:26.682 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package luarocks. 2024-04-15T21:15:26.697 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../021-lua-any_27ubuntu1_all.deb ... 2024-04-15T21:15:26.708 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-04-15T21:15:26.738 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking lua-any (27ubuntu1) ... 2024-04-15T21:15:26.748 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-04-15T21:15:26.990 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package zip. 2024-04-15T21:15:27.013 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package ceph-base. 2024-04-15T21:15:27.016 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../022-zip_3.0-12build2_amd64.deb ... 2024-04-15T21:15:27.040 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../030-ceph-base_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:27.057 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking zip (3.0-12build2) ... 2024-04-15T21:15:27.089 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking ceph-base (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:27.132 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package librgw2. 2024-04-15T21:15:27.158 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../025-librgw2_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:27.198 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking librgw2 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:27.360 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package unzip. 2024-04-15T21:15:27.387 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../023-unzip_6.0-26ubuntu3.2_amd64.deb ... 2024-04-15T21:15:27.427 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking unzip (6.0-26ubuntu3.2) ... 2024-04-15T21:15:27.676 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-04-15T21:15:27.702 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-04-15T21:15:27.742 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-04-15T21:15:27.759 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-rgw. 2024-04-15T21:15:27.774 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../026-python3-rgw_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:27.817 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-rgw (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:27.873 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package luarocks. 2024-04-15T21:15:27.899 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../024-luarocks_3.8.0+dfsg1-1_all.deb ... 2024-04-15T21:15:27.939 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking luarocks (3.8.0+dfsg1-1) ... 2024-04-15T21:15:28.045 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-cheroot. 2024-04-15T21:15:28.071 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-04-15T21:15:28.111 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-15T21:15:28.112 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package liboath0:amd64. 2024-04-15T21:15:28.138 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-04-15T21:15:28.170 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-04-15T21:15:28.431 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-04-15T21:15:28.457 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-04-15T21:15:28.489 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-04-15T21:15:28.490 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package libradosstriper1. 2024-04-15T21:15:28.498 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package librgw2. 2024-04-15T21:15:28.516 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../028-libradosstriper1_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:28.524 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../025-librgw2_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:28.556 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking libradosstriper1 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:28.564 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking librgw2 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:28.775 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-jaraco.text. 2024-04-15T21:15:28.802 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-04-15T21:15:28.842 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-04-15T21:15:28.977 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package ceph-common. 2024-04-15T21:15:29.003 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../029-ceph-common_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:29.043 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking ceph-common (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:29.083 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-rgw. 2024-04-15T21:15:29.098 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../026-python3-rgw_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:29.133 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-rgw (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:29.153 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-04-15T21:15:29.179 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-04-15T21:15:29.220 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-04-15T21:15:29.445 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package liboath0:amd64. 2024-04-15T21:15:29.471 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../027-liboath0_2.6.7-3build1_amd64.deb ... 2024-04-15T21:15:29.511 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-04-15T21:15:29.547 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-tempora. 2024-04-15T21:15:29.573 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-04-15T21:15:29.614 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-04-15T21:15:29.815 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package libradosstriper1. 2024-04-15T21:15:29.841 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../028-libradosstriper1_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:29.858 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-portend. 2024-04-15T21:15:29.873 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-04-15T21:15:29.881 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking libradosstriper1 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:29.908 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-04-15T21:15:30.211 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-04-15T21:15:30.237 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-04-15T21:15:30.243 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package ceph-common. 2024-04-15T21:15:30.270 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../029-ceph-common_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:30.286 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-04-15T21:15:30.301 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking ceph-common (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:30.382 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package ceph-base. 2024-04-15T21:15:30.408 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../030-ceph-base_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:30.458 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking ceph-base (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:30.589 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-cherrypy3. 2024-04-15T21:15:30.615 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-04-15T21:15:30.655 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-04-15T21:15:30.992 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-natsort. 2024-04-15T21:15:31.019 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-04-15T21:15:31.058 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-04-15T21:15:31.195 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-04-15T21:15:31.221 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-04-15T21:15:31.261 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-04-15T21:15:31.371 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-logutils. 2024-04-15T21:15:31.397 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-04-15T21:15:31.437 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-04-15T21:15:31.564 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-cheroot. 2024-04-15T21:15:31.591 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-04-15T21:15:31.640 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package ceph-base. 2024-04-15T21:15:31.666 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../030-ceph-base_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:31.716 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking ceph-base (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:31.739 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-markupsafe. 2024-04-15T21:15:31.765 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-04-15T21:15:31.806 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-04-15T21:15:32.014 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-15T21:15:32.100 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-mako. 2024-04-15T21:15:32.126 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-04-15T21:15:32.158 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-15T21:15:32.487 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-simplegeneric. 2024-04-15T21:15:32.514 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-04-15T21:15:32.553 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-04-15T21:15:32.668 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-04-15T21:15:32.683 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-04-15T21:15:32.718 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-04-15T21:15:33.004 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-jaraco.text. 2024-04-15T21:15:33.030 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-04-15T21:15:33.044 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-04-15T21:15:33.070 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-04-15T21:15:33.071 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../031-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-04-15T21:15:33.111 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-04-15T21:15:33.373 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-04-15T21:15:33.400 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-04-15T21:15:33.414 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-cheroot. 2024-04-15T21:15:33.440 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-04-15T21:15:33.441 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../032-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-04-15T21:15:33.481 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-15T21:15:33.706 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-singledispatch. 2024-04-15T21:15:33.718 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-tempora. 2024-04-15T21:15:33.733 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-04-15T21:15:33.745 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-04-15T21:15:33.773 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-04-15T21:15:33.776 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-04-15T21:15:33.800 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-04-15T21:15:33.830 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../033-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-04-15T21:15:33.867 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-04-15T21:15:34.071 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-portend. 2024-04-15T21:15:34.075 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-webob. 2024-04-15T21:15:34.098 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-04-15T21:15:34.102 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1_all.deb ... 2024-04-15T21:15:34.138 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-04-15T21:15:34.142 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-webob (1:1.8.6-1.1) ... 2024-04-15T21:15:34.145 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-jaraco.text. 2024-04-15T21:15:34.172 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../034-python3-jaraco.text_3.6.0-2_all.deb ... 2024-04-15T21:15:34.220 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-04-15T21:15:34.433 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-04-15T21:15:34.460 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-04-15T21:15:34.470 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-waitress. 2024-04-15T21:15:34.496 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-04-15T21:15:34.498 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-04-15T21:15:34.499 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-04-15T21:15:34.525 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../035-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-04-15T21:15:34.539 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-15T21:15:34.565 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-04-15T21:15:34.769 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-cherrypy3. 2024-04-15T21:15:34.796 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-04-15T21:15:34.823 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-tempita. 2024-04-15T21:15:34.835 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-04-15T21:15:34.838 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-04-15T21:15:34.868 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-tempora. 2024-04-15T21:15:34.872 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-04-15T21:15:34.894 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../036-python3-tempora_4.1.2-1_all.deb ... 2024-04-15T21:15:34.934 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-04-15T21:15:35.159 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-paste. 2024-04-15T21:15:35.172 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-natsort. 2024-04-15T21:15:35.185 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-04-15T21:15:35.199 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-04-15T21:15:35.221 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-portend. 2024-04-15T21:15:35.225 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-04-15T21:15:35.238 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-04-15T21:15:35.248 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../037-python3-portend_3.0.0-1_all.deb ... 2024-04-15T21:15:35.288 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-04-15T21:15:35.528 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-04-15T21:15:35.540 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-04-15T21:15:35.542 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-logutils. 2024-04-15T21:15:35.543 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-04-15T21:15:35.553 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../038-python3-zc.lockfile_2.0-1_all.deb ... 2024-04-15T21:15:35.569 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-04-15T21:15:35.578 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-04-15T21:15:35.607 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-04-15T21:15:35.608 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-04-15T21:15:35.856 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-pastedeploy. 2024-04-15T21:15:35.861 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-markupsafe. 2024-04-15T21:15:35.877 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-04-15T21:15:35.882 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-04-15T21:15:35.910 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-cherrypy3. 2024-04-15T21:15:35.920 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-04-15T21:15:35.922 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-04-15T21:15:35.937 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../039-python3-cherrypy3_18.6.1-4_all.deb ... 2024-04-15T21:15:35.976 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-04-15T21:15:36.225 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-webtest. 2024-04-15T21:15:36.239 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-mako. 2024-04-15T21:15:36.251 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-04-15T21:15:36.266 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-04-15T21:15:36.292 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-04-15T21:15:36.306 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-15T21:15:36.322 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-natsort. 2024-04-15T21:15:36.338 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../040-python3-natsort_8.0.2-1_all.deb ... 2024-04-15T21:15:36.372 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-04-15T21:15:36.603 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-pecan. 2024-04-15T21:15:36.630 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-04-15T21:15:36.659 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-logutils. 2024-04-15T21:15:36.659 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-simplegeneric. 2024-04-15T21:15:36.678 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-04-15T21:15:36.686 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../041-python3-logutils_0.3.3-8_all.deb ... 2024-04-15T21:15:36.686 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-04-15T21:15:36.725 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-04-15T21:15:36.726 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-04-15T21:15:37.003 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-markupsafe. 2024-04-15T21:15:37.020 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../042-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-04-15T21:15:37.020 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-singledispatch. 2024-04-15T21:15:37.048 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-04-15T21:15:37.053 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-04-15T21:15:37.057 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-certifi. 2024-04-15T21:15:37.084 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-04-15T21:15:37.087 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-04-15T21:15:37.124 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-04-15T21:15:37.340 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-mako. 2024-04-15T21:15:37.357 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-webob. 2024-04-15T21:15:37.366 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../043-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-04-15T21:15:37.384 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1_all.deb ... 2024-04-15T21:15:37.406 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-15T21:15:37.418 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-idna. 2024-04-15T21:15:37.423 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-webob (1:1.8.6-1.1) ... 2024-04-15T21:15:37.445 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../055-python3-idna_3.3-1_all.deb ... 2024-04-15T21:15:37.477 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-idna (3.3-1) ... 2024-04-15T21:15:37.701 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-simplegeneric. 2024-04-15T21:15:37.727 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../044-python3-simplegeneric_0.8.1-3_all.deb ... 2024-04-15T21:15:37.759 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-04-15T21:15:37.777 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-waitress. 2024-04-15T21:15:37.788 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-urllib3. 2024-04-15T21:15:37.804 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-04-15T21:15:37.814 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-04-15T21:15:37.846 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-15T21:15:37.854 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-15T21:15:38.038 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-singledispatch. 2024-04-15T21:15:38.064 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../045-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-04-15T21:15:38.104 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-04-15T21:15:38.146 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-tempita. 2024-04-15T21:15:38.172 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-04-15T21:15:38.182 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-requests. 2024-04-15T21:15:38.204 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-04-15T21:15:38.209 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-04-15T21:15:38.265 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-15T21:15:38.457 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-paste. 2024-04-15T21:15:38.484 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-04-15T21:15:38.524 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-04-15T21:15:38.552 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-webob. 2024-04-15T21:15:38.577 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-werkzeug. 2024-04-15T21:15:38.578 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../046-python3-webob_1%3a1.8.6-1.1_all.deb ... 2024-04-15T21:15:38.603 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.1_all.deb ... 2024-04-15T21:15:38.643 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-15T21:15:38.657 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-webob (1:1.8.6-1.1) ... 2024-04-15T21:15:38.861 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-04-15T21:15:38.887 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-04-15T21:15:38.927 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-04-15T21:15:38.938 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-04-15T21:15:38.964 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:15:38.993 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-waitress. 2024-04-15T21:15:39.004 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking ceph-mgr-modules-core (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:39.012 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../047-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-04-15T21:15:39.055 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-15T21:15:39.180 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-pastedeploy. 2024-04-15T21:15:39.207 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-04-15T21:15:39.238 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-04-15T21:15:39.347 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-tempita. 2024-04-15T21:15:39.367 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-04-15T21:15:39.373 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../048-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-04-15T21:15:39.394 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:39.413 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-04-15T21:15:39.434 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking libsqlite3-mod-ceph (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:39.508 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-webtest. 2024-04-15T21:15:39.535 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-04-15T21:15:39.575 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-04-15T21:15:39.649 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-paste. 2024-04-15T21:15:39.676 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../049-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-04-15T21:15:39.703 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-bcrypt. 2024-04-15T21:15:39.716 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-04-15T21:15:39.730 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-04-15T21:15:39.778 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-04-15T21:15:39.894 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-pecan. 2024-04-15T21:15:39.921 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-04-15T21:15:39.961 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-04-15T21:15:40.036 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-04-15T21:15:40.052 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../050-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-04-15T21:15:40.081 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-openssl. 2024-04-15T21:15:40.086 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-04-15T21:15:40.107 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-04-15T21:15:40.147 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-04-15T21:15:40.324 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-certifi. 2024-04-15T21:15:40.347 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-pastedeploy. 2024-04-15T21:15:40.351 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-04-15T21:15:40.374 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../051-python3-pastedeploy_2.1.1-1_all.deb ... 2024-04-15T21:15:40.390 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-04-15T21:15:40.414 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-04-15T21:15:40.517 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package ceph-mgr. 2024-04-15T21:15:40.544 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../063-ceph-mgr_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:40.583 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking ceph-mgr (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:40.711 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-idna. 2024-04-15T21:15:40.717 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-webtest. 2024-04-15T21:15:40.737 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../055-python3-idna_3.3-1_all.deb ... 2024-04-15T21:15:40.743 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../052-python3-webtest_2.0.35-1_all.deb ... 2024-04-15T21:15:40.777 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-idna (3.3-1) ... 2024-04-15T21:15:40.783 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-04-15T21:15:40.970 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package ceph-mon. 2024-04-15T21:15:40.996 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../064-ceph-mon_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:41.028 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking ceph-mon (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:41.053 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-pecan. 2024-04-15T21:15:41.055 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-urllib3. 2024-04-15T21:15:41.069 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../053-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-04-15T21:15:41.082 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-04-15T21:15:41.103 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-04-15T21:15:41.122 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-15T21:15:41.417 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-certifi. 2024-04-15T21:15:41.444 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../054-python3-certifi_2020.6.20-1_all.deb ... 2024-04-15T21:15:41.450 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-requests. 2024-04-15T21:15:41.477 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-04-15T21:15:41.483 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-04-15T21:15:41.517 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-15T21:15:41.623 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package ceph-osd. 2024-04-15T21:15:41.650 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../065-ceph-osd_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:41.689 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking ceph-osd (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:41.803 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-idna. 2024-04-15T21:15:41.830 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../055-python3-idna_3.3-1_all.deb ... 2024-04-15T21:15:41.869 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-idna (3.3-1) ... 2024-04-15T21:15:41.886 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-werkzeug. 2024-04-15T21:15:41.913 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.1_all.deb ... 2024-04-15T21:15:41.961 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-15T21:15:42.181 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-urllib3. 2024-04-15T21:15:42.210 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../056-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-04-15T21:15:42.247 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-15T21:15:42.248 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-04-15T21:15:42.263 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:15:42.306 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking ceph-mgr-modules-core (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:42.576 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-requests. 2024-04-15T21:15:42.602 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../057-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-04-15T21:15:42.642 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-15T21:15:42.720 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-04-15T21:15:42.734 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package ceph. 2024-04-15T21:15:42.735 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:42.761 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../066-ceph_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:42.778 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking libsqlite3-mod-ceph (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:42.801 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking ceph (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:42.895 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-werkzeug. 2024-04-15T21:15:42.910 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../058-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.1_all.deb ... 2024-04-15T21:15:42.945 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-15T21:15:43.097 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-bcrypt. 2024-04-15T21:15:43.124 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-04-15T21:15:43.129 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package ceph-fuse. 2024-04-15T21:15:43.155 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../067-ceph-fuse_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:43.165 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-04-15T21:15:43.195 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking ceph-fuse (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:43.241 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-04-15T21:15:43.256 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../059-ceph-mgr-modules-core_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:15:43.290 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking ceph-mgr-modules-core (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:43.467 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-openssl. 2024-04-15T21:15:43.493 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-04-15T21:15:43.533 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-04-15T21:15:43.654 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-04-15T21:15:43.681 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../060-libsqlite3-mod-ceph_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:43.720 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking libsqlite3-mod-ceph (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:43.757 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package ceph-mds. 2024-04-15T21:15:43.783 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../068-ceph-mds_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:43.867 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking ceph-mds (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:43.870 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package ceph-mgr. 2024-04-15T21:15:43.896 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../063-ceph-mgr_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:43.936 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking ceph-mgr (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:44.015 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-bcrypt. 2024-04-15T21:15:44.042 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../061-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-04-15T21:15:44.081 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-04-15T21:15:44.251 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package cephadm. 2024-04-15T21:15:44.278 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../069-cephadm_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:44.317 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking cephadm (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:44.326 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-openssl. 2024-04-15T21:15:44.331 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package ceph-mon. 2024-04-15T21:15:44.341 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../062-python3-openssl_21.0.0-1_all.deb ... 2024-04-15T21:15:44.359 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../064-ceph-mon_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:44.384 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-04-15T21:15:44.398 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking ceph-mon (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:44.620 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-asyncssh. 2024-04-15T21:15:44.639 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-04-15T21:15:44.678 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-04-15T21:15:44.721 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package ceph-mgr. 2024-04-15T21:15:44.748 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../063-ceph-mgr_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:44.821 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking ceph-mgr (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:44.952 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package ceph-osd. 2024-04-15T21:15:44.979 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../065-ceph-osd_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:44.989 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python-babel-localedata. 2024-04-15T21:15:45.004 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-04-15T21:15:45.018 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking ceph-osd (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:45.047 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-15T21:15:45.216 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package ceph-mon. 2024-04-15T21:15:45.243 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../064-ceph-mon_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:45.283 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking ceph-mon (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:45.853 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package ceph-osd. 2024-04-15T21:15:45.880 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../065-ceph-osd_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:45.919 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking ceph-osd (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:46.043 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-babel. 2024-04-15T21:15:46.071 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-04-15T21:15:46.071 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package ceph. 2024-04-15T21:15:46.087 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../066-ceph_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:46.110 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-04-15T21:15:46.130 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking ceph (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:46.421 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-jinja2. 2024-04-15T21:15:46.448 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.1_all.deb ... 2024-04-15T21:15:46.481 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package ceph-fuse. 2024-04-15T21:15:46.487 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-15T21:15:46.509 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../067-ceph-fuse_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:46.674 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking ceph-fuse (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:46.832 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-04-15T21:15:46.859 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:15:46.899 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking ceph-mgr-cephadm (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:46.975 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package ceph. 2024-04-15T21:15:47.002 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../066-ceph_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:47.002 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package ceph-mds. 2024-04-15T21:15:47.030 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../068-ceph-mds_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:47.041 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking ceph (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:47.069 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking ceph-mds (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:47.243 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-repoze.lru. 2024-04-15T21:15:47.270 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-04-15T21:15:47.310 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-04-15T21:15:47.327 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package ceph-fuse. 2024-04-15T21:15:47.354 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../067-ceph-fuse_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:47.385 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking ceph-fuse (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:47.472 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package cephadm. 2024-04-15T21:15:47.499 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../069-cephadm_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:47.539 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking cephadm (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:47.605 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-routes. 2024-04-15T21:15:47.631 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-04-15T21:15:47.663 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-04-15T21:15:47.764 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package ceph-mds. 2024-04-15T21:15:47.791 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../068-ceph-mds_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:47.830 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking ceph-mds (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:47.892 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-asyncssh. 2024-04-15T21:15:47.919 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-04-15T21:15:47.958 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-04-15T21:15:47.974 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-04-15T21:15:48.001 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:15:48.041 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking ceph-mgr-dashboard (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:48.226 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package cephadm. 2024-04-15T21:15:48.252 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../069-cephadm_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:48.286 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python-babel-localedata. 2024-04-15T21:15:48.291 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking cephadm (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:48.302 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-04-15T21:15:48.344 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-15T21:15:48.553 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-asyncssh. 2024-04-15T21:15:48.579 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../070-python3-asyncssh_2.5.0-1_all.deb ... 2024-04-15T21:15:48.619 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-04-15T21:15:49.097 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python-babel-localedata. 2024-04-15T21:15:49.125 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../071-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-04-15T21:15:49.188 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-15T21:15:49.212 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-04-15T21:15:49.229 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-04-15T21:15:49.271 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-15T21:15:49.383 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-babel. 2024-04-15T21:15:49.410 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-04-15T21:15:49.441 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-04-15T21:15:49.707 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-joblib. 2024-04-15T21:15:49.719 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-jinja2. 2024-04-15T21:15:49.723 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-04-15T21:15:49.734 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.1_all.deb ... 2024-04-15T21:15:49.757 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-04-15T21:15:49.769 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-15T21:15:50.094 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-04-15T21:15:50.109 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-04-15T21:15:50.122 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-04-15T21:15:50.150 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:15:50.152 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-04-15T21:15:50.189 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking ceph-mgr-cephadm (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:50.203 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-babel. 2024-04-15T21:15:50.230 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../072-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-04-15T21:15:50.268 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-04-15T21:15:50.430 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-sklearn. 2024-04-15T21:15:50.457 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-04-15T21:15:50.496 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-15T21:15:50.525 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-repoze.lru. 2024-04-15T21:15:50.553 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-04-15T21:15:50.588 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-jinja2. 2024-04-15T21:15:50.591 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-04-15T21:15:50.615 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../073-python3-jinja2_3.0.3-1ubuntu0.1_all.deb ... 2024-04-15T21:15:50.654 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-15T21:15:50.837 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-routes. 2024-04-15T21:15:50.864 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-04-15T21:15:50.903 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-04-15T21:15:51.000 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-04-15T21:15:51.027 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../074-ceph-mgr-cephadm_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:15:51.066 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking ceph-mgr-cephadm (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:51.206 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-04-15T21:15:51.222 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:15:51.223 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-04-15T21:15:51.251 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:15:51.256 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking ceph-mgr-dashboard (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:51.367 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking ceph-mgr-diskprediction-local (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:51.411 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-repoze.lru. 2024-04-15T21:15:51.438 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../075-python3-repoze.lru_0.7-2_all.deb ... 2024-04-15T21:15:51.478 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-04-15T21:15:51.755 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-routes. 2024-04-15T21:15:51.782 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../076-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-04-15T21:15:51.822 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-04-15T21:15:52.159 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-04-15T21:15:52.186 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../077-ceph-mgr-dashboard_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:15:52.225 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking ceph-mgr-dashboard (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:52.279 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-cachetools. 2024-04-15T21:15:52.306 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-04-15T21:15:52.345 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-04-15T21:15:52.503 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-04-15T21:15:52.530 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-04-15T21:15:52.570 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-15T21:15:52.640 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-pyasn1. 2024-04-15T21:15:52.667 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-04-15T21:15:52.706 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-04-15T21:15:53.082 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-joblib. 2024-04-15T21:15:53.109 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-04-15T21:15:53.185 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-04-15T21:15:53.212 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-04-15T21:15:53.248 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-04-15T21:15:53.251 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-04-15T21:15:53.554 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-rsa. 2024-04-15T21:15:53.569 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-04-15T21:15:53.582 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-04-15T21:15:53.588 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-04-15T21:15:53.596 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-04-15T21:15:53.605 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../078-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-04-15T21:15:53.620 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-rsa (4.8-1) ... 2024-04-15T21:15:53.635 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-04-15T21:15:53.638 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-15T21:15:53.905 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-sklearn. 2024-04-15T21:15:53.908 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-google-auth. 2024-04-15T21:15:53.932 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-04-15T21:15:53.935 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-04-15T21:15:53.971 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-15T21:15:53.974 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-04-15T21:15:54.201 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-joblib. 2024-04-15T21:15:54.228 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../079-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-04-15T21:15:54.259 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-04-15T21:15:54.294 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-04-15T21:15:54.322 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-04-15T21:15:54.360 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-15T21:15:54.629 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-04-15T21:15:54.656 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../080-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-04-15T21:15:54.695 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-04-15T21:15:54.697 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-websocket. 2024-04-15T21:15:54.714 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-04-15T21:15:54.724 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-04-15T21:15:54.741 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:15:54.771 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-04-15T21:15:54.874 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking ceph-mgr-diskprediction-local (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:54.998 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-sklearn. 2024-04-15T21:15:55.025 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../081-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-04-15T21:15:55.064 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-15T21:15:55.083 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-kubernetes. 2024-04-15T21:15:55.111 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-04-15T21:15:55.159 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-15T21:15:55.706 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-04-15T21:15:55.734 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../082-ceph-mgr-diskprediction-local_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:15:55.797 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-04-15T21:15:55.813 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:15:55.855 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking ceph-mgr-k8sevents (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:55.858 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking ceph-mgr-diskprediction-local (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:55.903 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-cachetools. 2024-04-15T21:15:55.930 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-04-15T21:15:55.986 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-04-15T21:15:56.183 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package libonig5:amd64. 2024-04-15T21:15:56.198 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-04-15T21:15:56.241 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-15T21:15:56.255 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-pyasn1. 2024-04-15T21:15:56.280 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-04-15T21:15:56.314 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-04-15T21:15:56.570 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package libjq1:amd64. 2024-04-15T21:15:56.597 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-04-15T21:15:56.609 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-04-15T21:15:56.636 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-15T21:15:56.636 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-04-15T21:15:56.675 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-04-15T21:15:56.821 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-cachetools. 2024-04-15T21:15:56.848 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../083-python3-cachetools_5.0.0-1_all.deb ... 2024-04-15T21:15:56.887 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-04-15T21:15:56.896 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package jq. 2024-04-15T21:15:56.924 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-04-15T21:15:56.963 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-04-15T21:15:56.970 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-rsa. 2024-04-15T21:15:56.998 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-04-15T21:15:57.037 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-rsa (4.8-1) ... 2024-04-15T21:15:57.148 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-pyasn1. 2024-04-15T21:15:57.164 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../084-python3-pyasn1_0.4.8-1_all.deb ... 2024-04-15T21:15:57.198 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-04-15T21:15:57.216 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package socat. 2024-04-15T21:15:57.231 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-04-15T21:15:57.274 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-04-15T21:15:57.357 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-google-auth. 2024-04-15T21:15:57.385 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-04-15T21:15:57.424 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-04-15T21:15:57.518 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-04-15T21:15:57.546 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../085-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-04-15T21:15:57.577 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package xmlstarlet. 2024-04-15T21:15:57.586 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-04-15T21:15:57.605 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-04-15T21:15:57.644 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-04-15T21:15:57.752 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-04-15T21:15:57.780 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-04-15T21:15:57.819 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-15T21:15:57.921 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-rsa. 2024-04-15T21:15:57.949 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../086-python3-rsa_4.8-1_all.deb ... 2024-04-15T21:15:57.987 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-rsa (4.8-1) ... 2024-04-15T21:15:57.989 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package ceph-test. 2024-04-15T21:15:58.017 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../097-ceph-test_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:15:58.056 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking ceph-test (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:58.097 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-websocket. 2024-04-15T21:15:58.124 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-04-15T21:15:58.163 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-04-15T21:15:58.308 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-google-auth. 2024-04-15T21:15:58.336 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../087-python3-google-auth_1.5.1-3_all.deb ... 2024-04-15T21:15:58.458 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-04-15T21:15:58.475 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-kubernetes. 2024-04-15T21:15:58.502 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-04-15T21:15:58.542 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-15T21:15:58.778 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-04-15T21:15:58.806 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../088-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-04-15T21:15:58.844 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-15T21:15:59.139 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-websocket. 2024-04-15T21:15:59.166 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../089-python3-websocket_1.2.3-1_all.deb ... 2024-04-15T21:15:59.197 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-04-15T21:15:59.197 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-04-15T21:15:59.214 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:15:59.256 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking ceph-mgr-k8sevents (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:15:59.509 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-kubernetes. 2024-04-15T21:15:59.537 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../090-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-04-15T21:15:59.575 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-15T21:15:59.600 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package libonig5:amd64. 2024-04-15T21:15:59.630 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-04-15T21:15:59.667 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-15T21:15:59.997 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package libjq1:amd64. 2024-04-15T21:16:00.024 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-04-15T21:16:00.063 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-15T21:16:00.156 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-04-15T21:16:00.172 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../091-ceph-mgr-k8sevents_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:16:00.206 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking ceph-mgr-k8sevents (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:00.302 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package ceph-volume. 2024-04-15T21:16:00.329 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../098-ceph-volume_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:16:00.332 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package jq. 2024-04-15T21:16:00.360 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-04-15T21:16:00.368 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking ceph-volume (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:00.399 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-04-15T21:16:00.534 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package libonig5:amd64. 2024-04-15T21:16:00.561 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../092-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-04-15T21:16:00.600 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-15T21:16:00.650 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package libcephfs-dev. 2024-04-15T21:16:00.651 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package socat. 2024-04-15T21:16:00.667 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-04-15T21:16:00.675 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../099-libcephfs-dev_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:16:00.710 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-04-15T21:16:00.722 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking libcephfs-dev (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:00.937 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package libjq1:amd64. 2024-04-15T21:16:00.964 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../093-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-04-15T21:16:00.996 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package xmlstarlet. 2024-04-15T21:16:01.003 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-15T21:16:01.012 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-04-15T21:16:01.025 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package lua-socket:amd64. 2024-04-15T21:16:01.046 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-04-15T21:16:01.053 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-04-15T21:16:01.091 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-15T21:16:01.239 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package jq. 2024-04-15T21:16:01.255 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../094-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-04-15T21:16:01.289 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-04-15T21:16:01.367 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package ceph-test. 2024-04-15T21:16:01.383 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../097-ceph-test_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:16:01.412 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package lua-sec:amd64. 2024-04-15T21:16:01.417 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking ceph-test (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:01.440 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-04-15T21:16:01.479 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-04-15T21:16:01.517 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package socat. 2024-04-15T21:16:01.534 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../095-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-04-15T21:16:01.575 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-04-15T21:16:01.817 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package nvme-cli. 2024-04-15T21:16:01.845 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.1_amd64.deb ... 2024-04-15T21:16:01.870 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package xmlstarlet. 2024-04-15T21:16:01.882 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking nvme-cli (1.16-3ubuntu0.1) ... 2024-04-15T21:16:01.886 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../096-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-04-15T21:16:01.928 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-04-15T21:16:02.257 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package ceph-test. 2024-04-15T21:16:02.263 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package pkg-config. 2024-04-15T21:16:02.285 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../097-ceph-test_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:16:02.291 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-04-15T21:16:02.315 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking ceph-test (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:02.329 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-04-15T21:16:02.573 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-04-15T21:16:02.589 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-04-15T21:16:02.632 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-04-15T21:16:03.010 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-iniconfig. 2024-04-15T21:16:03.026 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-04-15T21:16:03.060 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-04-15T21:16:03.354 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-pastescript. 2024-04-15T21:16:03.382 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-04-15T21:16:03.420 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-04-15T21:16:03.741 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-pluggy. 2024-04-15T21:16:03.768 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-04-15T21:16:03.807 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-04-15T21:16:03.905 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package ceph-volume. 2024-04-15T21:16:03.933 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../098-ceph-volume_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:16:03.971 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking ceph-volume (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:04.119 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-psutil. 2024-04-15T21:16:04.146 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-04-15T21:16:04.185 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-04-15T21:16:04.275 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package libcephfs-dev. 2024-04-15T21:16:04.303 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../099-libcephfs-dev_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:16:04.342 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking libcephfs-dev (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:04.521 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-py. 2024-04-15T21:16:04.549 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-04-15T21:16:04.587 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-py (1.10.0-1) ... 2024-04-15T21:16:04.611 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package lua-socket:amd64. 2024-04-15T21:16:04.627 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-04-15T21:16:04.660 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-15T21:16:04.770 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package ceph-volume. 2024-04-15T21:16:04.798 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../098-ceph-volume_19.0.0-3084-g87dbfb63-1jammy_all.deb ... 2024-04-15T21:16:04.836 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking ceph-volume (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:04.899 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-pygments. 2024-04-15T21:16:04.928 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-04-15T21:16:04.966 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-04-15T21:16:05.007 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package lua-sec:amd64. 2024-04-15T21:16:05.035 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-04-15T21:16:05.073 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-04-15T21:16:05.082 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package libcephfs-dev. 2024-04-15T21:16:05.098 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../099-libcephfs-dev_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:16:05.140 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking libcephfs-dev (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:05.428 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-pyinotify. 2024-04-15T21:16:05.443 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package lua-socket:amd64. 2024-04-15T21:16:05.452 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package nvme-cli. 2024-04-15T21:16:05.456 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-04-15T21:16:05.471 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../100-lua-socket_3.0~rc1+git+ac3201d-6_amd64.deb ... 2024-04-15T21:16:05.480 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.1_amd64.deb ... 2024-04-15T21:16:05.494 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-04-15T21:16:05.509 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-15T21:16:05.518 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking nvme-cli (1.16-3ubuntu0.1) ... 2024-04-15T21:16:05.797 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-toml. 2024-04-15T21:16:05.825 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-04-15T21:16:05.830 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package lua-sec:amd64. 2024-04-15T21:16:05.858 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../101-lua-sec_1.0.2-1_amd64.deb ... 2024-04-15T21:16:05.863 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-04-15T21:16:05.897 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking lua-sec:amd64 (1.0.2-1) ... 2024-04-15T21:16:05.949 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package pkg-config. 2024-04-15T21:16:05.977 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-04-15T21:16:06.015 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-04-15T21:16:06.133 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-pytest. 2024-04-15T21:16:06.161 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-04-15T21:16:06.191 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-04-15T21:16:06.226 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package nvme-cli. 2024-04-15T21:16:06.254 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../102-nvme-cli_1.16-3ubuntu0.1_amd64.deb ... 2024-04-15T21:16:06.276 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-04-15T21:16:06.284 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking nvme-cli (1.16-3ubuntu0.1) ... 2024-04-15T21:16:06.292 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-04-15T21:16:06.334 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-04-15T21:16:06.528 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package python3-simplejson. 2024-04-15T21:16:06.556 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-04-15T21:16:06.594 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-04-15T21:16:06.723 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package pkg-config. 2024-04-15T21:16:06.751 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../103-pkg-config_0.29.2-1ubuntu3_amd64.deb ... 2024-04-15T21:16:06.780 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-iniconfig. 2024-04-15T21:16:06.789 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking pkg-config (0.29.2-1ubuntu3) ... 2024-04-15T21:16:06.807 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-04-15T21:16:06.846 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-04-15T21:16:06.872 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-04-15T21:16:06.900 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-04-15T21:16:06.939 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-04-15T21:16:07.034 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-04-15T21:16:07.050 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../104-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-04-15T21:16:07.084 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-04-15T21:16:07.115 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-pastescript. 2024-04-15T21:16:07.143 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-04-15T21:16:07.173 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-04-15T21:16:07.477 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-pluggy. 2024-04-15T21:16:07.503 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-iniconfig. 2024-04-15T21:16:07.505 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-04-15T21:16:07.520 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../105-python3-iniconfig_1.1.1-2_all.deb ... 2024-04-15T21:16:07.543 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-04-15T21:16:07.553 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-04-15T21:16:07.660 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package radosgw. 2024-04-15T21:16:07.687 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../116-radosgw_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:16:07.726 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking radosgw (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:07.806 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-pastescript. 2024-04-15T21:16:07.833 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../106-python3-pastescript_2.0.2-4_all.deb ... 2024-04-15T21:16:07.846 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-psutil. 2024-04-15T21:16:07.872 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-04-15T21:16:07.874 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-04-15T21:16:07.913 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-04-15T21:16:08.201 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-pluggy. 2024-04-15T21:16:08.229 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../107-python3-pluggy_0.13.0-7.1_all.deb ... 2024-04-15T21:16:08.268 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-04-15T21:16:08.274 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-py. 2024-04-15T21:16:08.302 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-04-15T21:16:08.349 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-py (1.10.0-1) ... 2024-04-15T21:16:08.512 INFO:teuthology.orchestra.run.smithi133.stdout:Selecting previously unselected package rbd-fuse. 2024-04-15T21:16:08.528 INFO:teuthology.orchestra.run.smithi133.stdout:Preparing to unpack .../117-rbd-fuse_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:16:08.570 INFO:teuthology.orchestra.run.smithi133.stdout:Unpacking rbd-fuse (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:08.579 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-psutil. 2024-04-15T21:16:08.603 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../108-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-04-15T21:16:08.645 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-04-15T21:16:08.669 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-pygments. 2024-04-15T21:16:08.697 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-04-15T21:16:08.735 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-04-15T21:16:08.866 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-04-15T21:16:08.982 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-py. 2024-04-15T21:16:09.009 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../109-python3-py_1.10.0-1_all.deb ... 2024-04-15T21:16:09.048 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-py (1.10.0-1) ... 2024-04-15T21:16:09.117 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-15T21:16:09.214 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-pyinotify. 2024-04-15T21:16:09.226 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up nvme-cli (1.16-3ubuntu0.1) ... 2024-04-15T21:16:09.242 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-04-15T21:16:09.281 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-04-15T21:16:09.368 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-pygments. 2024-04-15T21:16:09.396 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../110-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-04-15T21:16:09.435 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-04-15T21:16:09.500 INFO:teuthology.orchestra.run.smithi133.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-04-15T21:16:09.558 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-toml. 2024-04-15T21:16:09.574 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-04-15T21:16:09.608 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-04-15T21:16:09.797 INFO:teuthology.orchestra.run.smithi133.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-04-15T21:16:09.838 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-pyinotify. 2024-04-15T21:16:09.855 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../111-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-04-15T21:16:09.878 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-pytest. 2024-04-15T21:16:09.888 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-04-15T21:16:09.905 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-04-15T21:16:09.944 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-04-15T21:16:10.202 INFO:teuthology.orchestra.run.smithi133.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-04-15T21:16:10.208 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-toml. 2024-04-15T21:16:10.236 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../112-python3-toml_0.10.2-1_all.deb ... 2024-04-15T21:16:10.269 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up cephadm (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:10.274 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-04-15T21:16:10.314 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package python3-simplejson. 2024-04-15T21:16:10.343 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-04-15T21:16:10.380 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-04-15T21:16:10.586 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-pytest. 2024-04-15T21:16:10.613 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../113-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-04-15T21:16:10.650 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-04-15T21:16:10.652 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-04-15T21:16:10.666 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-04-15T21:16:10.708 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-04-15T21:16:10.819 INFO:teuthology.orchestra.run.smithi133.stdout:Adding system user cephadm....done 2024-04-15T21:16:10.959 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-15T21:16:10.998 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package python3-simplejson. 2024-04-15T21:16:11.025 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../114-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-04-15T21:16:11.064 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-04-15T21:16:11.244 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-04-15T21:16:11.333 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-04-15T21:16:11.349 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../115-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-04-15T21:16:11.392 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-04-15T21:16:11.420 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package radosgw. 2024-04-15T21:16:11.449 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../116-radosgw_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:16:11.478 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking radosgw (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:11.494 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-04-15T21:16:11.621 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-04-15T21:16:11.872 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-04-15T21:16:12.137 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package radosgw. 2024-04-15T21:16:12.148 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-04-15T21:16:12.165 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../116-radosgw_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:16:12.203 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking radosgw (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:12.274 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-py (1.10.0-1) ... 2024-04-15T21:16:12.281 INFO:teuthology.orchestra.run.smithi187.stdout:Selecting previously unselected package rbd-fuse. 2024-04-15T21:16:12.299 INFO:teuthology.orchestra.run.smithi187.stdout:Preparing to unpack .../117-rbd-fuse_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:16:12.340 INFO:teuthology.orchestra.run.smithi187.stdout:Unpacking rbd-fuse (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:12.601 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-04-15T21:16:12.891 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-04-15T21:16:12.944 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-04-15T21:16:12.965 INFO:teuthology.orchestra.run.smithi132.stdout:Selecting previously unselected package rbd-fuse. 2024-04-15T21:16:12.981 INFO:teuthology.orchestra.run.smithi132.stdout:Preparing to unpack .../117-rbd-fuse_19.0.0-3084-g87dbfb63-1jammy_amd64.deb ... 2024-04-15T21:16:13.015 INFO:teuthology.orchestra.run.smithi132.stdout:Unpacking rbd-fuse (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:13.127 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-15T21:16:13.195 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-04-15T21:16:13.254 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up nvme-cli (1.16-3ubuntu0.1) ... 2024-04-15T21:16:13.286 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-04-15T21:16:13.463 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-04-15T21:16:13.529 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-04-15T21:16:13.544 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-04-15T21:16:13.671 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up nvme-cli (1.16-3ubuntu0.1) ... 2024-04-15T21:16:13.773 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-04-15T21:16:13.877 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-04-15T21:16:13.917 INFO:teuthology.orchestra.run.smithi132.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-04-15T21:16:14.024 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-04-15T21:16:14.267 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-04-15T21:16:14.278 INFO:teuthology.orchestra.run.smithi132.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-04-15T21:16:14.314 INFO:teuthology.orchestra.run.smithi187.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-04-15T21:16:14.389 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up cephadm (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:14.493 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-ceph-argparse (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:14.712 INFO:teuthology.orchestra.run.smithi132.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-04-15T21:16:14.752 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-15T21:16:14.872 INFO:teuthology.orchestra.run.smithi187.stdout:Adding system user cephadm....done 2024-04-15T21:16:14.878 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-15T21:16:15.004 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-04-15T21:16:15.036 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-15T21:16:15.130 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-04-15T21:16:15.198 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up cephadm (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:15.304 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-04-15T21:16:15.390 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-04-15T21:16:15.564 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-04-15T21:16:15.673 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-04-15T21:16:15.799 INFO:teuthology.orchestra.run.smithi132.stdout:Adding system user cephadm....done 2024-04-15T21:16:15.907 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-04-15T21:16:15.929 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-04-15T21:16:15.945 INFO:teuthology.orchestra.run.smithi133.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-04-15T21:16:15.971 INFO:teuthology.orchestra.run.smithi133.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-04-15T21:16:16.018 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-15T21:16:16.167 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-04-15T21:16:16.169 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-04-15T21:16:16.189 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-04-15T21:16:16.293 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-py (1.10.0-1) ... 2024-04-15T21:16:16.415 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-04-15T21:16:16.516 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-04-15T21:16:16.528 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-15T21:16:16.603 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-04-15T21:16:16.654 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-04-15T21:16:16.776 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-04-15T21:16:16.913 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-04-15T21:16:16.989 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-04-15T21:16:17.035 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-04-15T21:16:17.161 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-py (1.10.0-1) ... 2024-04-15T21:16:17.181 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-04-15T21:16:17.240 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-04-15T21:16:17.463 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-04-15T21:16:17.491 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up zip (3.0-12build2) ... 2024-04-15T21:16:17.507 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-04-15T21:16:17.609 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-04-15T21:16:17.759 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-04-15T21:16:17.814 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-04-15T21:16:18.027 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-04-15T21:16:18.049 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-04-15T21:16:18.269 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-04-15T21:16:18.286 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-04-15T21:16:18.317 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up unzip (6.0-26ubuntu3.2) ... 2024-04-15T21:16:18.528 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-04-15T21:16:18.545 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-ceph-argparse (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:18.602 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-04-15T21:16:18.654 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-04-15T21:16:18.780 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-15T21:16:18.855 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-15T21:16:18.870 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-04-15T21:16:18.964 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-15T21:16:19.065 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-04-15T21:16:19.098 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-04-15T21:16:19.183 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-04-15T21:16:19.221 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-04-15T21:16:19.442 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-04-15T21:16:19.463 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-ceph-argparse (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:19.474 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-04-15T21:16:19.698 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-04-15T21:16:19.708 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-04-15T21:16:19.799 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up lua-socket:amd64 (3.0~rc1+git+ac3201d-6) ... 2024-04-15T21:16:19.857 INFO:teuthology.orchestra.run.smithi187.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-04-15T21:16:19.891 INFO:teuthology.orchestra.run.smithi187.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-04-15T21:16:19.917 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up libreadline-dev:amd64 (8.1.2-1) ... 2024-04-15T21:16:19.954 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-15T21:16:20.043 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-04-15T21:16:20.071 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-04-15T21:16:20.093 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-15T21:16:20.319 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up lua5.1 (5.1.5-8.1build4) ... 2024-04-15T21:16:20.386 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-15T21:16:20.431 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-15T21:16:20.534 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-04-15T21:16:20.700 INFO:teuthology.orchestra.run.smithi132.stdout:update-alternatives: using /usr/bin/lua5.1 to provide /usr/bin/lua (lua-interpreter) in auto mode 2024-04-15T21:16:20.721 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-04-15T21:16:20.737 INFO:teuthology.orchestra.run.smithi132.stdout:update-alternatives: using /usr/bin/luac5.1 to provide /usr/bin/luac (lua-compiler) in auto mode 2024-04-15T21:16:20.789 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-04-15T21:16:20.799 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-04-15T21:16:20.890 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-04-15T21:16:20.972 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-04-15T21:16:21.067 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-04-15T21:16:21.098 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-ceph-common (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:21.233 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-04-15T21:16:21.359 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-04-15T21:16:21.377 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up zip (3.0-12build2) ... 2024-04-15T21:16:21.382 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-idna (3.3-1) ... 2024-04-15T21:16:21.503 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-04-15T21:16:21.627 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-04-15T21:16:21.675 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-15T21:16:21.895 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-04-15T21:16:22.205 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-04-15T21:16:22.237 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up zip (3.0-12build2) ... 2024-04-15T21:16:22.375 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-04-15T21:16:22.456 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-04-15T21:16:22.565 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-04-15T21:16:22.683 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-15T21:16:22.865 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-04-15T21:16:22.985 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-04-15T21:16:23.040 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-04-15T21:16:23.124 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:16:23.250 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-toml (0.10.2-1) ... 2024-04-15T21:16:23.275 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-04-15T21:16:23.393 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-04-15T21:16:23.401 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-04-15T21:16:23.518 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-15T21:16:23.527 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-04-15T21:16:23.636 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-04-15T21:16:23.644 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-04-15T21:16:23.770 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-15T21:16:23.820 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-04-15T21:16:24.005 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-15T21:16:24.071 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-04-15T21:16:24.212 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-04-15T21:16:24.289 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-15T21:16:24.339 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-04-15T21:16:24.463 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-04-15T21:16:24.598 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:16:24.649 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-04-15T21:16:24.725 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-04-15T21:16:24.823 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-04-15T21:16:24.908 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-04-15T21:16:25.026 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-04-15T21:16:25.034 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-ceph-common (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:25.091 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.1) ... 2024-04-15T21:16:25.277 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-04-15T21:16:25.335 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-idna (3.3-1) ... 2024-04-15T21:16:25.434 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-04-15T21:16:25.536 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-04-15T21:16:25.645 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-15T21:16:25.686 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-04-15T21:16:25.787 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-04-15T21:16:25.811 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-ceph-common (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:26.038 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-04-15T21:16:26.104 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-idna (3.3-1) ... 2024-04-15T21:16:26.315 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-15T21:16:26.414 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-04-15T21:16:26.424 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-04-15T21:16:26.700 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-15T21:16:26.758 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-04-15T21:16:26.809 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-15T21:16:27.010 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:16:27.119 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-webob (1:1.8.6-1.1) ... 2024-04-15T21:16:27.144 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-toml (0.10.2-1) ... 2024-04-15T21:16:27.411 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-04-15T21:16:27.437 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-15T21:16:27.553 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up pkg-config (0.29.2-1ubuntu3) ... 2024-04-15T21:16:27.563 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-04-15T21:16:27.662 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-15T21:16:27.689 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-15T21:16:27.788 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-04-15T21:16:27.796 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:16:27.914 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-04-15T21:16:27.931 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-toml (0.10.2-1) ... 2024-04-15T21:16:27.974 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-04-15T21:16:28.003 INFO:teuthology.orchestra.run.smithi133.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-04-15T21:16:28.165 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-04-15T21:16:28.233 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-15T21:16:28.258 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-04-15T21:16:28.266 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-04-15T21:16:28.334 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-04-15T21:16:28.434 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-04-15T21:16:28.509 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:16:28.610 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-04-15T21:16:28.710 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-04-15T21:16:28.727 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-04-15T21:16:28.904 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-04-15T21:16:28.970 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up lua-any (27ubuntu1) ... 2024-04-15T21:16:28.986 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-04-15T21:16:29.096 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-portend (3.0.0-1) ... 2024-04-15T21:16:29.163 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-04-15T21:16:29.238 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:16:29.355 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:16:29.363 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-04-15T21:16:29.414 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-04-15T21:16:29.481 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-15T21:16:29.657 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-04-15T21:16:29.665 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-04-15T21:16:29.824 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-04-15T21:16:29.899 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-04-15T21:16:29.924 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-04-15T21:16:30.125 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-15T21:16:30.167 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-04-15T21:16:30.184 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-15T21:16:30.310 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-04-15T21:16:30.384 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-04-15T21:16:30.418 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-04-15T21:16:30.527 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-rsa (4.8-1) ... 2024-04-15T21:16:30.577 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-15T21:16:30.669 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-04-15T21:16:30.704 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-15T21:16:30.803 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-04-15T21:16:30.938 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-04-15T21:16:30.988 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-webob (1:1.8.6-1.1) ... 2024-04-15T21:16:31.063 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-04-15T21:16:31.071 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-15T21:16:31.281 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-04-15T21:16:31.364 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-04-15T21:16:31.432 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-04-15T21:16:31.465 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-04-15T21:16:31.532 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-15T21:16:31.658 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-04-15T21:16:31.742 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-webob (1:1.8.6-1.1) ... 2024-04-15T21:16:31.801 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-04-15T21:16:31.809 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-04-15T21:16:31.897 INFO:teuthology.orchestra.run.smithi187.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-04-15T21:16:32.051 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-04-15T21:16:32.085 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-04-15T21:16:32.135 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-15T21:16:32.236 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-04-15T21:16:32.310 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up liblua5.3-dev:amd64 (5.3.6-1build1) ... 2024-04-15T21:16:32.421 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-15T21:16:32.436 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up lua-sec:amd64 (1.0.2-1) ... 2024-04-15T21:16:32.547 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up librados2 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:32.562 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-04-15T21:16:32.613 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-04-15T21:16:32.672 INFO:teuthology.orchestra.run.smithi132.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-04-15T21:16:32.673 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up libsqlite3-mod-ceph (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:32.799 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-04-15T21:16:32.881 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up lua-any (27ubuntu1) ... 2024-04-15T21:16:32.914 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-04-15T21:16:33.007 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-portend (3.0.0-1) ... 2024-04-15T21:16:33.015 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-04-15T21:16:33.102 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up libcephfs2 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:33.228 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up libradosstriper1 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:33.291 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:16:33.354 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-04-15T21:16:33.377 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-04-15T21:16:33.442 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-15T21:16:33.631 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up librbd1 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:33.636 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up lua-any (27ubuntu1) ... 2024-04-15T21:16:33.740 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up ceph-mgr-modules-core (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:33.760 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-04-15T21:16:33.762 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-portend (3.0.0-1) ... 2024-04-15T21:16:33.841 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up ceph-fuse (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:34.014 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-04-15T21:16:34.037 INFO:teuthology.orchestra.run.smithi133.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-15T21:16:34.037 INFO:teuthology.orchestra.run.smithi133.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-15T21:16:34.052 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-15T21:16:34.123 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.1) ... 2024-04-15T21:16:34.329 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-04-15T21:16:34.424 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-04-15T21:16:34.438 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-rsa (4.8-1) ... 2024-04-15T21:16:34.476 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up libcephfs-dev (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:34.635 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-rados (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:34.691 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-04-15T21:16:34.697 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-04-15T21:16:34.770 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up librgw2 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:34.948 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-15T21:16:34.976 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-04-15T21:16:35.102 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-rsa (4.8-1) ... 2024-04-15T21:16:35.302 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-04-15T21:16:35.329 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-15T21:16:35.370 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-04-15T21:16:35.646 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-04-15T21:16:35.695 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-04-15T21:16:35.980 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-04-15T21:16:35.991 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-04-15T21:16:36.316 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-15T21:16:36.368 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-04-15T21:16:36.442 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up librados2 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:36.534 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-rbd (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:36.568 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up libsqlite3-mod-ceph (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:36.660 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up rbd-fuse (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:36.678 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-04-15T21:16:36.694 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-04-15T21:16:36.786 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-rgw (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:36.912 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up python3-cephfs (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:37.030 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up libcephfs2 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:37.038 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up ceph-common (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:37.055 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-04-15T21:16:37.131 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up libradosstriper1 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:37.164 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up librados2 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:37.249 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-04-15T21:16:37.266 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up libsqlite3-mod-ceph (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:37.367 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up luarocks (3.8.0+dfsg1-1) ... 2024-04-15T21:16:37.542 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up librbd1 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:37.557 INFO:teuthology.orchestra.run.smithi133.stdout:Adding group ceph....done 2024-04-15T21:16:37.668 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up ceph-mgr-modules-core (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:37.711 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up libcephfs2 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:37.794 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up ceph-fuse (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:37.837 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up libradosstriper1 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:37.942 INFO:teuthology.orchestra.run.smithi133.stdout:Adding system user ceph....done 2024-04-15T21:16:37.963 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-04-15T21:16:38.005 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-15T21:16:38.005 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-15T21:16:38.101 INFO:teuthology.orchestra.run.smithi133.stdout:Setting system user ceph properties....done 2024-04-15T21:16:38.116 INFO:teuthology.orchestra.run.smithi133.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-04-15T21:16:38.256 INFO:teuthology.orchestra.run.smithi133.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-04-15T21:16:38.265 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up librbd1 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:38.366 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up ceph-mgr-modules-core (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:38.475 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up ceph-fuse (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:38.554 INFO:teuthology.orchestra.run.smithi133.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-04-15T21:16:38.695 INFO:teuthology.orchestra.run.smithi132.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-15T21:16:38.695 INFO:teuthology.orchestra.run.smithi132.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-04-15T21:16:38.771 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up libcephfs-dev (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:38.905 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-rados (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:39.048 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up librgw2 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:39.048 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up ceph-test (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:39.157 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-15T21:16:39.185 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up libcephfs-dev (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:39.233 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up radosgw (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:39.311 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-rados (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:39.438 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up librgw2 (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:39.563 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-04-15T21:16:39.756 INFO:teuthology.orchestra.run.smithi133.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-15T21:16:39.757 INFO:teuthology.orchestra.run.smithi133.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-15T21:16:40.210 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up ceph-base (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:40.355 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-rbd (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:40.473 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up rbd-fuse (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:40.552 INFO:teuthology.orchestra.run.smithi133.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-04-15T21:16:40.599 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-rgw (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:40.725 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up python3-cephfs (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:40.775 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-rbd (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:40.851 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up ceph-common (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:40.901 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up rbd-fuse (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:40.986 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up ceph-mds (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:41.035 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-rgw (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:41.161 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up python3-cephfs (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:41.218 INFO:teuthology.orchestra.run.smithi133.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-15T21:16:41.218 INFO:teuthology.orchestra.run.smithi133.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-15T21:16:41.287 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up ceph-common (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:41.394 INFO:teuthology.orchestra.run.smithi187.stdout:Adding group ceph....done 2024-04-15T21:16:41.671 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up ceph-mgr (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:41.772 INFO:teuthology.orchestra.run.smithi132.stdout:Adding group ceph....done 2024-04-15T21:16:41.778 INFO:teuthology.orchestra.run.smithi187.stdout:Adding system user ceph....done 2024-04-15T21:16:41.889 INFO:teuthology.orchestra.run.smithi133.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-15T21:16:41.889 INFO:teuthology.orchestra.run.smithi133.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-15T21:16:41.947 INFO:teuthology.orchestra.run.smithi187.stdout:Setting system user ceph properties....done 2024-04-15T21:16:41.962 INFO:teuthology.orchestra.run.smithi187.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-04-15T21:16:42.096 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-04-15T21:16:42.108 INFO:teuthology.orchestra.run.smithi132.stdout:Adding system user ceph....done 2024-04-15T21:16:42.276 INFO:teuthology.orchestra.run.smithi132.stdout:Setting system user ceph properties....done 2024-04-15T21:16:42.289 INFO:teuthology.orchestra.run.smithi132.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-04-15T21:16:42.356 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up ceph-osd (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:42.423 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-04-15T21:16:42.425 INFO:teuthology.orchestra.run.smithi132.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-04-15T21:16:42.638 INFO:teuthology.orchestra.run.smithi133.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-15T21:16:42.638 INFO:teuthology.orchestra.run.smithi133.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-15T21:16:42.741 INFO:teuthology.orchestra.run.smithi132.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-04-15T21:16:42.902 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up ceph-test (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:43.051 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up radosgw (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:43.124 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up ceph-mgr-k8sevents (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:43.222 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up ceph-test (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:43.250 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up ceph-mgr-diskprediction-local (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:43.331 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up radosgw (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:43.401 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up ceph-mon (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:43.609 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-15T21:16:43.609 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-15T21:16:43.612 INFO:teuthology.orchestra.run.smithi133.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-15T21:16:43.613 INFO:teuthology.orchestra.run.smithi133.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-15T21:16:43.800 INFO:teuthology.orchestra.run.smithi132.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-15T21:16:43.800 INFO:teuthology.orchestra.run.smithi132.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-04-15T21:16:44.077 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up ceph-mgr-cephadm (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:44.220 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up ceph (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:44.275 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up ceph-base (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:44.346 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up ceph-mgr-dashboard (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:44.373 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up ceph-base (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:44.498 INFO:teuthology.orchestra.run.smithi133.stdout:Setting up ceph-volume (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:44.629 INFO:teuthology.orchestra.run.smithi132.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-04-15T21:16:44.726 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-04-15T21:16:44.859 INFO:teuthology.orchestra.run.smithi133.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-04-15T21:16:44.959 INFO:teuthology.orchestra.run.smithi133.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-04-15T21:16:45.102 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up ceph-mds (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:45.110 INFO:teuthology.orchestra.run.smithi133.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-04-15T21:16:45.225 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up ceph-mds (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:45.326 INFO:teuthology.orchestra.run.smithi132.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-15T21:16:45.326 INFO:teuthology.orchestra.run.smithi132.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-15T21:16:45.444 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-15T21:16:45.444 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-04-15T21:16:45.795 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up ceph-mgr (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:45.926 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up ceph-mgr (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:46.024 INFO:teuthology.orchestra.run.smithi132.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-15T21:16:46.024 INFO:teuthology.orchestra.run.smithi132.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-15T21:16:46.144 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-15T21:16:46.144 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-04-15T21:16:46.254 INFO:teuthology.orchestra.run.smithi133.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-04-15T21:16:46.522 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up ceph-osd (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:46.619 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up ceph-osd (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:46.795 INFO:teuthology.orchestra.run.smithi132.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-15T21:16:46.795 INFO:teuthology.orchestra.run.smithi132.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-15T21:16:46.898 INFO:teuthology.orchestra.run.smithi133.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-04-15T21:16:46.903 DEBUG:teuthology.parallel:result is None 2024-04-15T21:16:46.905 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-15T21:16:46.905 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-04-15T21:16:47.282 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up ceph-mgr-k8sevents (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:47.404 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up ceph-mgr-k8sevents (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:47.407 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up ceph-mgr-diskprediction-local (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:47.505 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up ceph-mgr-diskprediction-local (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:47.559 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up ceph-mon (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:47.640 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up ceph-mon (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:47.769 INFO:teuthology.orchestra.run.smithi132.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-15T21:16:47.769 INFO:teuthology.orchestra.run.smithi132.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-15T21:16:47.852 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-15T21:16:47.853 INFO:teuthology.orchestra.run.smithi187.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-04-15T21:16:48.218 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up ceph-mgr-cephadm (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:48.349 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up ceph-mgr-cephadm (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:48.361 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up ceph (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:48.487 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up ceph-mgr-dashboard (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:48.630 INFO:teuthology.orchestra.run.smithi132.stdout:Setting up ceph-volume (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:48.633 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up ceph (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:48.811 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up ceph-mgr-dashboard (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:48.956 INFO:teuthology.orchestra.run.smithi187.stdout:Setting up ceph-volume (19.0.0-3084-g87dbfb63-1jammy) ... 2024-04-15T21:16:48.966 INFO:teuthology.orchestra.run.smithi132.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-04-15T21:16:49.058 INFO:teuthology.orchestra.run.smithi132.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-04-15T21:16:49.202 INFO:teuthology.orchestra.run.smithi132.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-04-15T21:16:49.300 INFO:teuthology.orchestra.run.smithi187.stdout:Processing triggers for mailcap (3.70+nmu1ubuntu1) ... 2024-04-15T21:16:49.401 INFO:teuthology.orchestra.run.smithi187.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-04-15T21:16:49.553 INFO:teuthology.orchestra.run.smithi187.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-04-15T21:16:50.354 INFO:teuthology.orchestra.run.smithi132.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-04-15T21:16:50.361 INFO:teuthology.orchestra.run.smithi187.stdout:Processing triggers for install-info (6.8-4build1) ... 2024-04-15T21:16:50.996 INFO:teuthology.orchestra.run.smithi132.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-04-15T21:16:51.001 DEBUG:teuthology.parallel:result is None 2024-04-15T21:16:51.014 INFO:teuthology.orchestra.run.smithi187.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-04-15T21:16:51.018 DEBUG:teuthology.parallel:result is None 2024-04-15T21:16:51.019 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T21:16:51.164 DEBUG:teuthology.orchestra.run.smithi132:> dpkg-query -W -f '${Version}' ceph 2024-04-15T21:16:51.183 INFO:teuthology.orchestra.run.smithi132.stdout:19.0.0-3084-g87dbfb63-1jammy 2024-04-15T21:16:51.183 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-3084-g87dbfb63-1jammy 2024-04-15T21:16:51.183 INFO:teuthology.task.install:The correct ceph version 19.0.0-3084-g87dbfb63-1jammy is installed. 2024-04-15T21:16:51.185 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T21:16:51.417 DEBUG:teuthology.orchestra.run.smithi133:> dpkg-query -W -f '${Version}' ceph 2024-04-15T21:16:51.436 INFO:teuthology.orchestra.run.smithi133.stdout:19.0.0-3084-g87dbfb63-1jammy 2024-04-15T21:16:51.436 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-3084-g87dbfb63-1jammy 2024-04-15T21:16:51.437 INFO:teuthology.task.install:The correct ceph version 19.0.0-3084-g87dbfb63-1jammy is installed. 2024-04-15T21:16:51.438 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T21:16:51.653 DEBUG:teuthology.orchestra.run.smithi187:> dpkg-query -W -f '${Version}' ceph 2024-04-15T21:16:51.672 INFO:teuthology.orchestra.run.smithi187.stdout:19.0.0-3084-g87dbfb63-1jammy 2024-04-15T21:16:51.672 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-3084-g87dbfb63-1jammy 2024-04-15T21:16:51.672 INFO:teuthology.task.install:The correct ceph version 19.0.0-3084-g87dbfb63-1jammy is installed. 2024-04-15T21:16:51.674 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-04-15T21:16:51.674 DEBUG:teuthology.orchestra.run.smithi132:> set -ex 2024-04-15T21:16:51.675 DEBUG:teuthology.orchestra.run.smithi132:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-15T21:16:51.690 DEBUG:teuthology.orchestra.run.smithi133:> set -ex 2024-04-15T21:16:51.690 DEBUG:teuthology.orchestra.run.smithi133:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-15T21:16:51.704 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-04-15T21:16:51.704 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-15T21:16:51.726 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-04-15T21:16:51.727 DEBUG:teuthology.orchestra.run.smithi132:> set -ex 2024-04-15T21:16:51.727 DEBUG:teuthology.orchestra.run.smithi132:> sudo dd of=/usr/bin/daemon-helper 2024-04-15T21:16:51.745 DEBUG:teuthology.orchestra.run.smithi132:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-15T21:16:51.801 DEBUG:teuthology.orchestra.run.smithi133:> set -ex 2024-04-15T21:16:51.801 DEBUG:teuthology.orchestra.run.smithi133:> sudo dd of=/usr/bin/daemon-helper 2024-04-15T21:16:51.815 DEBUG:teuthology.orchestra.run.smithi133:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-15T21:16:51.870 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-04-15T21:16:51.870 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd of=/usr/bin/daemon-helper 2024-04-15T21:16:51.884 DEBUG:teuthology.orchestra.run.smithi187:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-15T21:16:51.938 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-04-15T21:16:51.938 DEBUG:teuthology.orchestra.run.smithi132:> set -ex 2024-04-15T21:16:51.938 DEBUG:teuthology.orchestra.run.smithi132:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-15T21:16:51.952 DEBUG:teuthology.orchestra.run.smithi132:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-15T21:16:52.005 DEBUG:teuthology.orchestra.run.smithi133:> set -ex 2024-04-15T21:16:52.005 DEBUG:teuthology.orchestra.run.smithi133:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-15T21:16:52.019 DEBUG:teuthology.orchestra.run.smithi133:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-15T21:16:52.074 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-04-15T21:16:52.075 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-15T21:16:52.088 DEBUG:teuthology.orchestra.run.smithi187:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-15T21:16:52.143 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-04-15T21:16:52.143 DEBUG:teuthology.orchestra.run.smithi132:> set -ex 2024-04-15T21:16:52.144 DEBUG:teuthology.orchestra.run.smithi132:> sudo dd of=/usr/bin/stdin-killer 2024-04-15T21:16:52.157 DEBUG:teuthology.orchestra.run.smithi132:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-15T21:16:52.209 DEBUG:teuthology.orchestra.run.smithi133:> set -ex 2024-04-15T21:16:52.209 DEBUG:teuthology.orchestra.run.smithi133:> sudo dd of=/usr/bin/stdin-killer 2024-04-15T21:16:52.222 DEBUG:teuthology.orchestra.run.smithi133:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-15T21:16:52.278 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-04-15T21:16:52.278 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd of=/usr/bin/stdin-killer 2024-04-15T21:16:52.293 DEBUG:teuthology.orchestra.run.smithi187:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-15T21:16:52.346 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-15T21:16:52.458 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 1}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': True}, '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', 'POOL_APP_NOT_ENABLED', 'mon down', 'mons down', 'out of quorum'], 'log-only-match': ['CEPHADM_'], 'sha1': '87dbfb632e974cb2c28d17423071d2d833b53b29'} 2024-04-15T21:16:52.459 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T21:16:52.459 INFO:tasks.cephadm:Cluster fsid is 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:16:52.459 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-15T21:16:52.460 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.132', 'mon.b': '172.21.15.133', 'mon.c': '172.21.15.187'} 2024-04-15T21:16:52.460 INFO:tasks.cephadm:First mon is mon.a on smithi132 2024-04-15T21:16:52.460 INFO:tasks.cephadm:First mgr is a 2024-04-15T21:16:52.460 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-15T21:16:52.460 DEBUG:teuthology.orchestra.run.smithi132:> sudo hostname $(hostname -s) 2024-04-15T21:16:52.474 DEBUG:teuthology.orchestra.run.smithi133:> sudo hostname $(hostname -s) 2024-04-15T21:16:52.489 DEBUG:teuthology.orchestra.run.smithi187:> sudo hostname $(hostname -s) 2024-04-15T21:16:52.503 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-15T21:16:52.503 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T21:16:52.714 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '87dbfb632e974cb2c28d17423071d2d833b53b29', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic/54897/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-3084-g87dbfb63', 'node_name': '172.21.2.11+braggi11', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic', 'package_manager_version': '19.0.0-3084-g87dbfb63-1jammy'}, 'url': 'https://4.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-04-15 01:30:39.755016', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'main', 'chacra_url': 'https://4.chacra.ceph.com/repos/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-04-15T21:16:52.922 INFO:tasks.util.chacra:got chacra host 4.chacra.ceph.com, ref main, sha1 87dbfb632e974cb2c28d17423071d2d833b53b29 from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T21:16:52.923 INFO:tasks.cephadm:Discovered cachra url: https://4.chacra.ceph.com/binaries/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-04-15T21:16:52.924 DEBUG:teuthology.orchestra.run.smithi132:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T21:16:53.560 INFO:teuthology.orchestra.run.smithi132.stdout:-rw-rw-r-- 1 ubuntu ubuntu 788989 Apr 15 21:16 /home/ubuntu/cephtest/cephadm 2024-04-15T21:16:53.560 DEBUG:teuthology.orchestra.run.smithi133:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T21:16:54.070 INFO:teuthology.orchestra.run.smithi133.stdout:-rw-rw-r-- 1 ubuntu ubuntu 788989 Apr 15 21:16 /home/ubuntu/cephtest/cephadm 2024-04-15T21:16:54.071 DEBUG:teuthology.orchestra.run.smithi187:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T21:16:54.894 INFO:teuthology.orchestra.run.smithi187.stdout:-rw-rw-r-- 1 ubuntu ubuntu 788989 Apr 15 21:16 /home/ubuntu/cephtest/cephadm 2024-04-15T21:16:54.895 DEBUG:teuthology.orchestra.run.smithi132:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T21:16:54.903 DEBUG:teuthology.orchestra.run.smithi133:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T21:16:54.910 DEBUG:teuthology.orchestra.run.smithi187:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T21:16:54.928 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 on all hosts... 2024-04-15T21:16:54.928 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 pull 2024-04-15T21:16:54.947 DEBUG:teuthology.orchestra.run.smithi133:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 pull 2024-04-15T21:16:54.955 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 pull 2024-04-15T21:16:55.111 INFO:teuthology.orchestra.run.smithi132.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29... 2024-04-15T21:16:55.120 INFO:teuthology.orchestra.run.smithi133.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29... 2024-04-15T21:16:55.129 INFO:teuthology.orchestra.run.smithi187.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29... 2024-04-15T21:17:49.973 INFO:teuthology.orchestra.run.smithi133.stdout:{ 2024-04-15T21:17:49.974 INFO:teuthology.orchestra.run.smithi133.stdout: "ceph_version": "ceph version 19.0.0-3084-g87dbfb63 (87dbfb632e974cb2c28d17423071d2d833b53b29) squid (dev)", 2024-04-15T21:17:49.974 INFO:teuthology.orchestra.run.smithi133.stdout: "image_id": "a452a57266c718c37049de4c2da9a5e566bb7b9c6db62908ada4c8b0e854997b", 2024-04-15T21:17:49.974 INFO:teuthology.orchestra.run.smithi133.stdout: "repo_digests": [ 2024-04-15T21:17:49.974 INFO:teuthology.orchestra.run.smithi133.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f" 2024-04-15T21:17:49.974 INFO:teuthology.orchestra.run.smithi133.stdout: ] 2024-04-15T21:17:49.974 INFO:teuthology.orchestra.run.smithi133.stdout:} 2024-04-15T21:18:06.784 INFO:teuthology.orchestra.run.smithi187.stdout:{ 2024-04-15T21:18:06.785 INFO:teuthology.orchestra.run.smithi187.stdout: "ceph_version": "ceph version 19.0.0-3084-g87dbfb63 (87dbfb632e974cb2c28d17423071d2d833b53b29) squid (dev)", 2024-04-15T21:18:06.785 INFO:teuthology.orchestra.run.smithi187.stdout: "image_id": "a452a57266c718c37049de4c2da9a5e566bb7b9c6db62908ada4c8b0e854997b", 2024-04-15T21:18:06.785 INFO:teuthology.orchestra.run.smithi187.stdout: "repo_digests": [ 2024-04-15T21:18:06.785 INFO:teuthology.orchestra.run.smithi187.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f" 2024-04-15T21:18:06.785 INFO:teuthology.orchestra.run.smithi187.stdout: ] 2024-04-15T21:18:06.785 INFO:teuthology.orchestra.run.smithi187.stdout:} 2024-04-15T21:18:09.567 INFO:teuthology.orchestra.run.smithi132.stdout:{ 2024-04-15T21:18:09.567 INFO:teuthology.orchestra.run.smithi132.stdout: "ceph_version": "ceph version 19.0.0-3084-g87dbfb63 (87dbfb632e974cb2c28d17423071d2d833b53b29) squid (dev)", 2024-04-15T21:18:09.567 INFO:teuthology.orchestra.run.smithi132.stdout: "image_id": "a452a57266c718c37049de4c2da9a5e566bb7b9c6db62908ada4c8b0e854997b", 2024-04-15T21:18:09.567 INFO:teuthology.orchestra.run.smithi132.stdout: "repo_digests": [ 2024-04-15T21:18:09.568 INFO:teuthology.orchestra.run.smithi132.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f" 2024-04-15T21:18:09.568 INFO:teuthology.orchestra.run.smithi132.stdout: ] 2024-04-15T21:18:09.568 INFO:teuthology.orchestra.run.smithi132.stdout:} 2024-04-15T21:18:09.601 DEBUG:teuthology.orchestra.run.smithi132:> sudo mkdir -p /etc/ceph 2024-04-15T21:18:09.614 DEBUG:teuthology.orchestra.run.smithi133:> sudo mkdir -p /etc/ceph 2024-04-15T21:18:09.629 DEBUG:teuthology.orchestra.run.smithi187:> sudo mkdir -p /etc/ceph 2024-04-15T21:18:09.643 DEBUG:teuthology.orchestra.run.smithi132:> sudo chmod 777 /etc/ceph 2024-04-15T21:18:09.667 DEBUG:teuthology.orchestra.run.smithi133:> sudo chmod 777 /etc/ceph 2024-04-15T21:18:09.685 DEBUG:teuthology.orchestra.run.smithi187:> sudo chmod 777 /etc/ceph 2024-04-15T21:18:09.698 INFO:tasks.cephadm:Writing seed config... 2024-04-15T21:18:09.699 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2024-04-15T21:18:09.699 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-04-15T21:18:09.699 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-04-15T21:18:09.699 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = True 2024-04-15T21:18:09.699 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-04-15T21:18:09.700 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-04-15T21:18:09.700 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-04-15T21:18:09.700 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-04-15T21:18:09.700 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-04-15T21:18:09.700 DEBUG:teuthology.orchestra.run.smithi132:> set -ex 2024-04-15T21:18:09.700 DEBUG:teuthology.orchestra.run.smithi132:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-04-15T21:18:09.713 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 = 7ac1dc10-fb6d-11ee-bc8f-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 = True [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-04-15T21:18:09.713 DEBUG:teuthology.orchestra.run.smithi132:mon.a> sudo journalctl -f -n 0 -u ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mon.a.service 2024-04-15T21:18:09.758 DEBUG:teuthology.orchestra.run.smithi132:mgr.a> sudo journalctl -f -n 0 -u ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mgr.a.service 2024-04-15T21:18:09.802 INFO:tasks.cephadm:Bootstrapping... 2024-04-15T21:18:09.802 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 -v bootstrap --fsid 7ac1dc10-fb6d-11ee-bc8f-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.132 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-04-15T21:18:10.011 INFO:teuthology.orchestra.run.smithi132.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:18:10.012 INFO:teuthology.orchestra.run.smithi132.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29', '-v', 'bootstrap', '--fsid', '7ac1dc10-fb6d-11ee-bc8f-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.132', '--skip-admin-label'] 2024-04-15T21:18:10.012 INFO:teuthology.orchestra.run.smithi132.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-04-15T21:18:10.013 INFO:teuthology.orchestra.run.smithi132.stdout:Verifying podman|docker is present... 2024-04-15T21:18:10.013 INFO:teuthology.orchestra.run.smithi132.stdout:Verifying lvm2 is present... 2024-04-15T21:18:10.013 INFO:teuthology.orchestra.run.smithi132.stdout:Verifying time synchronization is in place... 2024-04-15T21:18:10.016 INFO:teuthology.orchestra.run.smithi132.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-15T21:18:10.016 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-15T21:18:10.020 INFO:teuthology.orchestra.run.smithi132.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-15T21:18:10.020 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stdout inactive 2024-04-15T21:18:10.024 INFO:teuthology.orchestra.run.smithi132.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-04-15T21:18:10.024 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-04-15T21:18:10.027 INFO:teuthology.orchestra.run.smithi132.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-04-15T21:18:10.028 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stdout inactive 2024-04-15T21:18:10.031 INFO:teuthology.orchestra.run.smithi132.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-04-15T21:18:10.032 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stdout masked 2024-04-15T21:18:10.035 INFO:teuthology.orchestra.run.smithi132.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-04-15T21:18:10.035 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stdout inactive 2024-04-15T21:18:10.038 INFO:teuthology.orchestra.run.smithi132.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-04-15T21:18:10.038 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-04-15T21:18:10.041 INFO:teuthology.orchestra.run.smithi132.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-04-15T21:18:10.041 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stdout inactive 2024-04-15T21:18:10.045 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stdout enabled 2024-04-15T21:18:10.049 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stdout active 2024-04-15T21:18:10.049 INFO:teuthology.orchestra.run.smithi132.stdout:Unit ntp.service is enabled and running 2024-04-15T21:18:10.049 INFO:teuthology.orchestra.run.smithi132.stdout:Repeating the final host check... 2024-04-15T21:18:10.049 INFO:teuthology.orchestra.run.smithi132.stdout:docker (/usr/bin/docker) is present 2024-04-15T21:18:10.049 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl is present 2024-04-15T21:18:10.049 INFO:teuthology.orchestra.run.smithi132.stdout:lvcreate is present 2024-04-15T21:18:10.052 INFO:teuthology.orchestra.run.smithi132.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-15T21:18:10.053 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-15T21:18:10.055 INFO:teuthology.orchestra.run.smithi132.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-15T21:18:10.056 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stdout inactive 2024-04-15T21:18:10.059 INFO:teuthology.orchestra.run.smithi132.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-04-15T21:18:10.059 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-04-15T21:18:10.062 INFO:teuthology.orchestra.run.smithi132.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-04-15T21:18:10.062 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stdout inactive 2024-04-15T21:18:10.066 INFO:teuthology.orchestra.run.smithi132.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-04-15T21:18:10.066 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stdout masked 2024-04-15T21:18:10.069 INFO:teuthology.orchestra.run.smithi132.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-04-15T21:18:10.069 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stdout inactive 2024-04-15T21:18:10.072 INFO:teuthology.orchestra.run.smithi132.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-04-15T21:18:10.072 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-04-15T21:18:10.075 INFO:teuthology.orchestra.run.smithi132.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-04-15T21:18:10.075 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stdout inactive 2024-04-15T21:18:10.079 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stdout enabled 2024-04-15T21:18:10.082 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stdout active 2024-04-15T21:18:10.083 INFO:teuthology.orchestra.run.smithi132.stdout:Unit ntp.service is enabled and running 2024-04-15T21:18:10.083 INFO:teuthology.orchestra.run.smithi132.stdout:Host looks OK 2024-04-15T21:18:10.083 INFO:teuthology.orchestra.run.smithi132.stdout:Cluster fsid: 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:18:10.083 INFO:teuthology.orchestra.run.smithi132.stdout:Acquiring lock 140304497862656 on /run/cephadm/7ac1dc10-fb6d-11ee-bc8f-c7b262605968.lock 2024-04-15T21:18:10.083 INFO:teuthology.orchestra.run.smithi132.stdout:Lock 140304497862656 acquired on /run/cephadm/7ac1dc10-fb6d-11ee-bc8f-c7b262605968.lock 2024-04-15T21:18:10.083 INFO:teuthology.orchestra.run.smithi132.stdout:Verifying IP 172.21.15.132 port 3300 ... 2024-04-15T21:18:10.083 INFO:teuthology.orchestra.run.smithi132.stdout:Verifying IP 172.21.15.132 port 6789 ... 2024-04-15T21:18:10.083 INFO:teuthology.orchestra.run.smithi132.stdout:Base mon IP(s) is [172.21.15.132:3300, 172.21.15.132:6789], mon addrv is [v2:172.21.15.132:3300,v1:172.21.15.132:6789] 2024-04-15T21:18:10.085 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 2024-04-15T21:18:10.086 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.132 metric 100 2024-04-15T21:18:10.086 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/sbin/ip: stdout 158.69.67.47 via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.132 metric 100 2024-04-15T21:18:10.086 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-04-15T21:18:10.086 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.132 metric 100 2024-04-15T21:18:10.086 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/sbin/ip: stdout 172.21.0.1 dev enp3s0f1 proto dhcp scope link src 172.21.15.132 metric 100 2024-04-15T21:18:10.086 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/sbin/ip: stdout 172.21.0.2 dev enp3s0f1 proto dhcp scope link src 172.21.15.132 metric 100 2024-04-15T21:18:10.086 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/sbin/ip: stdout 172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.132 metric 100 2024-04-15T21:18:10.087 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-04-15T21:18:10.088 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/sbin/ip: stdout fe80::/64 dev enp3s0f1 proto kernel metric 256 pref medium 2024-04-15T21:18:10.088 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 100 expires 1783sec pref medium 2024-04-15T21:18:10.091 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-04-15T21:18:10.091 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-04-15T21:18:10.091 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-15T21:18:10.091 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/sbin/ip: stdout 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-04-15T21:18:10.091 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/sbin/ip: stdout inet6 fe80::ec4:7aff:fe88:773f/64 scope link 2024-04-15T21:18:10.091 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-15T21:18:10.091 INFO:teuthology.orchestra.run.smithi132.stdout:Mon IP `172.21.15.132` is in CIDR network `172.21.0.0/20` 2024-04-15T21:18:10.091 INFO:teuthology.orchestra.run.smithi132.stdout:Mon IP `172.21.15.132` is in CIDR network `172.21.0.0/20` 2024-04-15T21:18:10.091 INFO:teuthology.orchestra.run.smithi132.stdout:Mon IP `172.21.15.132` is in CIDR network `172.21.0.1/32` 2024-04-15T21:18:10.092 INFO:teuthology.orchestra.run.smithi132.stdout:Mon IP `172.21.15.132` is in CIDR network `172.21.0.1/32` 2024-04-15T21:18:10.092 INFO:teuthology.orchestra.run.smithi132.stdout:Mon IP `172.21.15.132` is in CIDR network `172.21.0.2/32` 2024-04-15T21:18:10.092 INFO:teuthology.orchestra.run.smithi132.stdout:Mon IP `172.21.15.132` is in CIDR network `172.21.0.2/32` 2024-04-15T21:18:10.092 INFO:teuthology.orchestra.run.smithi132.stdout:Mon IP `172.21.15.132` is in CIDR network `172.21.15.254/32` 2024-04-15T21:18:10.092 INFO:teuthology.orchestra.run.smithi132.stdout:Mon IP `172.21.15.132` is in CIDR network `172.21.15.254/32` 2024-04-15T21:18:10.092 INFO:teuthology.orchestra.run.smithi132.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-04-15T21:18:10.092 INFO:teuthology.orchestra.run.smithi132.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-04-15T21:18:10.092 INFO:teuthology.orchestra.run.smithi132.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29... 2024-04-15T21:18:10.297 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/docker: stdout 87dbfb632e974cb2c28d17423071d2d833b53b29: Pulling from ceph-ci/ceph 2024-04-15T21:18:10.297 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/docker: stdout Digest: sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f 2024-04-15T21:18:10.297 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T21:18:10.297 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T21:18:11.712 INFO:teuthology.orchestra.run.smithi132.stdout:ceph: stdout ceph version 19.0.0-3084-g87dbfb63 (87dbfb632e974cb2c28d17423071d2d833b53b29) squid (dev) 2024-04-15T21:18:11.712 INFO:teuthology.orchestra.run.smithi132.stdout:Ceph version: ceph version 19.0.0-3084-g87dbfb63 (87dbfb632e974cb2c28d17423071d2d833b53b29) squid (dev) 2024-04-15T21:18:11.713 INFO:teuthology.orchestra.run.smithi132.stdout:Extracting ceph user uid/gid from container image... 2024-04-15T21:18:12.883 INFO:teuthology.orchestra.run.smithi132.stdout:stat: stdout 167 167 2024-04-15T21:18:12.884 INFO:teuthology.orchestra.run.smithi132.stdout:Creating initial keys... 2024-04-15T21:18:14.155 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-authtool: stdout AQCVmR1mlVvtJhAA803e6ftkJ4fqC/aznIUMnA== 2024-04-15T21:18:15.351 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-authtool: stdout AQCWmR1mDWQ0MBAApCLZx+GBxrd4B1ZPYHHJZQ== 2024-04-15T21:18:16.447 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-authtool: stdout AQCYmR1mEMIVABAAvzyBSKWKlY8xqiSUV71IgQ== 2024-04-15T21:18:16.447 INFO:teuthology.orchestra.run.smithi132.stdout:Creating initial monmap... 2024-04-15T21:18:17.752 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-15T21:18:17.752 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-04-15T21:18:17.752 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:18:17.752 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-15T21:18:17.752 INFO:teuthology.orchestra.run.smithi132.stdout:monmaptool for a [v2:172.21.15.132:3300,v1:172.21.15.132:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-15T21:18:17.752 INFO:teuthology.orchestra.run.smithi132.stdout:setting min_mon_release = quincy 2024-04-15T21:18:17.753 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/monmaptool: set fsid to 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:18:17.753 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-15T21:18:17.753 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:18:17.753 INFO:teuthology.orchestra.run.smithi132.stdout:Creating mon... 2024-04-15T21:18:19.019 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 0 set uid:gid to 167:167 (ceph:ceph) 2024-04-15T21:18:19.019 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 1 imported monmap: 2024-04-15T21:18:19.019 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-04-15T21:18:19.019 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:18:19.019 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-04-15T21:18:17.192210+0000 2024-04-15T21:18:19.019 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr created 2024-04-15T21:18:17.192210+0000 2024-04-15T21:18:19.020 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr min_mon_release 17 (quincy) 2024-04-15T21:18:19.020 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-04-15T21:18:19.020 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.132:3300/0,v1:172.21.15.132:6789/0] mon.a 2024-04-15T21:18:19.020 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 2024-04-15T21:18:19.020 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 0 /usr/bin/ceph-mon: set fsid to 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:18:19.020 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: RocksDB version: 7.9.2 2024-04-15T21:18:19.020 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 2024-04-15T21:18:19.020 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Git sha 0 2024-04-15T21:18:19.020 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Compile date 2024-04-14 15:12:02 2024-04-15T21:18:19.020 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: DB SUMMARY 2024-04-15T21:18:19.020 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 2024-04-15T21:18:19.020 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: DB Session ID: XU7V1JH0QISO2HOLEOZV 2024-04-15T21:18:19.020 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 2024-04-15T21:18:19.020 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 0, files: 2024-04-15T21:18:19.020 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 2024-04-15T21:18:19.021 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 2024-04-15T21:18:19.021 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 2024-04-15T21:18:19.021 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.error_if_exists: 0 2024-04-15T21:18:19.021 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.create_if_missing: 1 2024-04-15T21:18:19.021 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.paranoid_checks: 1 2024-04-15T21:18:19.021 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-04-15T21:18:19.021 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-15T21:18:19.021 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-15T21:18:19.021 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.env: 0x559a0fbfccc0 2024-04-15T21:18:19.021 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.fs: PosixFileSystem 2024-04-15T21:18:19.021 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.info_log: 0x559a122a4e80 2024-04-15T21:18:19.021 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.max_file_opening_threads: 16 2024-04-15T21:18:19.021 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.statistics: (nil) 2024-04-15T21:18:19.021 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.use_fsync: 0 2024-04-15T21:18:19.022 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.max_log_file_size: 0 2024-04-15T21:18:19.022 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-15T21:18:19.022 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-04-15T21:18:19.022 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.keep_log_file_num: 1000 2024-04-15T21:18:19.022 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.recycle_log_file_num: 0 2024-04-15T21:18:19.022 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.allow_fallocate: 1 2024-04-15T21:18:19.022 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.allow_mmap_reads: 0 2024-04-15T21:18:19.022 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.allow_mmap_writes: 0 2024-04-15T21:18:19.022 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.use_direct_reads: 0 2024-04-15T21:18:19.022 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-15T21:18:19.022 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.create_missing_column_families: 0 2024-04-15T21:18:19.022 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.db_log_dir: 2024-04-15T21:18:19.022 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.wal_dir: 2024-04-15T21:18:19.023 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-04-15T21:18:19.023 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-04-15T21:18:19.023 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-04-15T21:18:19.023 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-15T21:18:19.023 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-15T21:18:19.023 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-04-15T21:18:19.023 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.advise_random_on_open: 1 2024-04-15T21:18:19.023 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.db_write_buffer_size: 0 2024-04-15T21:18:19.023 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.write_buffer_manager: 0x559a12275360 2024-04-15T21:18:19.023 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-15T21:18:19.023 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-15T21:18:19.023 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-04-15T21:18:19.023 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.rate_limiter: (nil) 2024-04-15T21:18:19.023 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-15T21:18:19.023 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.wal_recovery_mode: 2 2024-04-15T21:18:19.024 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.enable_thread_tracking: 0 2024-04-15T21:18:19.024 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.enable_pipelined_write: 0 2024-04-15T21:18:19.024 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.unordered_write: 0 2024-04-15T21:18:19.024 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-15T21:18:19.024 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-15T21:18:19.024 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-15T21:18:19.024 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-15T21:18:19.024 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.row_cache: None 2024-04-15T21:18:19.024 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.wal_filter: None 2024-04-15T21:18:19.024 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-15T21:18:19.024 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.allow_ingest_behind: 0 2024-04-15T21:18:19.024 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.two_write_queues: 0 2024-04-15T21:18:19.024 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.manual_wal_flush: 0 2024-04-15T21:18:19.024 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.wal_compression: 0 2024-04-15T21:18:19.025 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.atomic_flush: 0 2024-04-15T21:18:19.025 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-15T21:18:19.025 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-04-15T21:18:19.025 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-04-15T21:18:19.025 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.log_readahead_size: 0 2024-04-15T21:18:19.025 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-15T21:18:19.025 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.best_efforts_recovery: 0 2024-04-15T21:18:19.025 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-15T21:18:19.025 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-15T21:18:19.025 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.allow_data_in_errors: 0 2024-04-15T21:18:19.025 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.db_host_id: __hostname__ 2024-04-15T21:18:19.025 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-04-15T21:18:19.025 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.max_background_jobs: 2 2024-04-15T21:18:19.025 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.max_background_compactions: -1 2024-04-15T21:18:19.025 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.max_subcompactions: 1 2024-04-15T21:18:19.026 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-15T21:18:19.026 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-15T21:18:19.026 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-04-15T21:18:19.026 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.max_total_wal_size: 0 2024-04-15T21:18:19.026 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-15T21:18:19.026 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-04-15T21:18:19.026 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-04-15T21:18:19.026 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-15T21:18:19.026 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.max_open_files: -1 2024-04-15T21:18:19.026 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.bytes_per_sync: 0 2024-04-15T21:18:19.026 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-04-15T21:18:19.026 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-04-15T21:18:19.027 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.compaction_readahead_size: 0 2024-04-15T21:18:19.027 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Options.max_background_flushes: -1 2024-04-15T21:18:19.027 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Compression algorithms supported: 2024-04-15T21:18:19.027 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-15T21:18:19.027 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: kZSTD supported: 0 2024-04-15T21:18:19.027 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: kXpressCompression supported: 0 2024-04-15T21:18:19.027 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: kLZ4HCCompression supported: 1 2024-04-15T21:18:19.027 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: kZlibCompression supported: 1 2024-04-15T21:18:19.027 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: kSnappyCompression supported: 1 2024-04-15T21:18:19.027 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: kLZ4Compression supported: 1 2024-04-15T21:18:19.027 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: kBZip2Compression supported: 0 2024-04-15T21:18:19.027 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-04-15T21:18:19.027 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.440+0000 7fdc9f2cec80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-04-15T21:18:19.027 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-04-15T21:18:19.028 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 2024-04-15T21:18:19.028 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000001 2024-04-15T21:18:19.028 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 2024-04-15T21:18:19.028 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-15T21:18:19.028 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 2024-04-15T21:18:19.028 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-15T21:18:19.028 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.merge_operator: 2024-04-15T21:18:19.028 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compaction_filter: None 2024-04-15T21:18:19.028 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compaction_filter_factory: None 2024-04-15T21:18:19.028 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.sst_partitioner_factory: None 2024-04-15T21:18:19.028 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-04-15T21:18:19.028 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-04-15T21:18:19.028 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x559a122a5060) 2024-04-15T21:18:19.028 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-04-15T21:18:19.029 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-04-15T21:18:19.029 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-15T21:18:19.029 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-04-15T21:18:19.029 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-04-15T21:18:19.029 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-04-15T21:18:19.029 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-04-15T21:18:19.029 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-04-15T21:18:19.029 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-04-15T21:18:19.029 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-04-15T21:18:19.029 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x559a122a7090 2024-04-15T21:18:19.029 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-04-15T21:18:19.029 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-04-15T21:18:19.029 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-04-15T21:18:19.029 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-04-15T21:18:19.030 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-04-15T21:18:19.030 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-04-15T21:18:19.030 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-04-15T21:18:19.030 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-04-15T21:18:19.030 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-04-15T21:18:19.030 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-04-15T21:18:19.030 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-04-15T21:18:19.030 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-04-15T21:18:19.030 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-04-15T21:18:19.030 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-04-15T21:18:19.030 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-04-15T21:18:19.030 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-04-15T21:18:19.030 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-04-15T21:18:19.031 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-04-15T21:18:19.031 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-04-15T21:18:19.031 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-04-15T21:18:19.031 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-04-15T21:18:19.031 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-04-15T21:18:19.031 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-04-15T21:18:19.031 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-04-15T21:18:19.031 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-04-15T21:18:19.031 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-04-15T21:18:19.031 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 2024-04-15T21:18:19.031 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.write_buffer_size: 33554432 2024-04-15T21:18:19.031 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.max_write_buffer_number: 2 2024-04-15T21:18:19.031 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compression: NoCompression 2024-04-15T21:18:19.032 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.bottommost_compression: Disabled 2024-04-15T21:18:19.032 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.prefix_extractor: nullptr 2024-04-15T21:18:19.032 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-15T21:18:19.032 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.num_levels: 7 2024-04-15T21:18:19.032 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-15T21:18:19.032 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-15T21:18:19.032 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-15T21:18:19.032 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-15T21:18:19.032 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-15T21:18:19.032 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-15T21:18:19.032 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-15T21:18:19.032 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-15T21:18:19.032 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-15T21:18:19.032 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-15T21:18:19.033 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-15T21:18:19.033 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-15T21:18:19.033 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-04-15T21:18:19.033 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compression_opts.level: 32767 2024-04-15T21:18:19.033 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compression_opts.strategy: 0 2024-04-15T21:18:19.033 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-15T21:18:19.033 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-15T21:18:19.033 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-15T21:18:19.033 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-15T21:18:19.033 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compression_opts.enabled: false 2024-04-15T21:18:19.033 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-15T21:18:19.033 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-15T21:18:19.033 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-15T21:18:19.034 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-15T21:18:19.034 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.target_file_size_base: 67108864 2024-04-15T21:18:19.034 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-04-15T21:18:19.034 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-15T21:18:19.034 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-15T21:18:19.034 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-15T21:18:19.034 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-15T21:18:19.034 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-15T21:18:19.034 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-15T21:18:19.034 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-15T21:18:19.034 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-15T21:18:19.034 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-15T21:18:19.034 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-15T21:18:19.034 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-15T21:18:19.035 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-15T21:18:19.035 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-15T21:18:19.035 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.arena_block_size: 1048576 2024-04-15T21:18:19.035 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-15T21:18:19.035 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-15T21:18:19.035 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.disable_auto_compactions: 0 2024-04-15T21:18:19.035 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-15T21:18:19.035 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-15T21:18:19.035 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-15T21:18:19.035 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-15T21:18:19.035 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-15T21:18:19.035 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-15T21:18:19.035 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-15T21:18:19.035 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-15T21:18:19.036 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-15T21:18:19.036 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-15T21:18:19.036 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-04-15T21:18:19.036 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.inplace_update_support: 0 2024-04-15T21:18:19.036 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-04-15T21:18:19.036 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-15T21:18:19.036 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-15T21:18:19.036 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-04-15T21:18:19.036 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.bloom_locality: 0 2024-04-15T21:18:19.036 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.max_successive_merges: 0 2024-04-15T21:18:19.036 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-04-15T21:18:19.036 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.paranoid_file_checks: 0 2024-04-15T21:18:19.036 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.force_consistency_checks: 1 2024-04-15T21:18:19.036 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.report_bg_io_stats: 0 2024-04-15T21:18:19.037 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.ttl: 2592000 2024-04-15T21:18:19.037 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-04-15T21:18:19.037 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-15T21:18:19.037 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-15T21:18:19.037 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.enable_blob_files: false 2024-04-15T21:18:19.037 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.min_blob_size: 0 2024-04-15T21:18:19.037 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.blob_file_size: 268435456 2024-04-15T21:18:19.037 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-04-15T21:18:19.037 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-04-15T21:18:19.037 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-15T21:18:19.037 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-15T21:18:19.037 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-15T21:18:19.037 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.blob_file_starting_level: 0 2024-04-15T21:18:19.037 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-15T21:18:19.038 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 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-04-15T21:18:19.038 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 2024-04-15T21:18:19.038 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-04-15T21:18:19.038 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 2024-04-15T21:18:19.038 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 7e7664eb-753f-410c-b945-2fdb2aed30f9 2024-04-15T21:18:19.038 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 2024-04-15T21:18:19.038 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-04-15T21:18:19.038 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 2024-04-15T21:18:19.038 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x559a1236e000 2024-04-15T21:18:19.038 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc9f2cec80 4 rocksdb: DB pointer 0x559a1235e000 2024-04-15T21:18:19.038 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc8f430700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-15T21:18:19.038 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.444+0000 7fdc8f430700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-15T21:18:19.038 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-04-15T21:18:19.038 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-04-15T21:18:19.039 INFO:teuthology.orchestra.run.smithi132.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-04-15T21:18:19.039 INFO:teuthology.orchestra.run.smithi132.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-04-15T21:18:19.039 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-15T21:18:19.039 INFO:teuthology.orchestra.run.smithi132.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-04-15T21:18:19.039 INFO:teuthology.orchestra.run.smithi132.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-04-15T21:18:19.039 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-15T21:18:19.041 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 2024-04-15T21:18:19.041 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-04-15T21:18:19.041 INFO:teuthology.orchestra.run.smithi132.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-04-15T21:18:19.042 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-15T21:18:19.042 INFO:teuthology.orchestra.run.smithi132.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-04-15T21:18:19.042 INFO:teuthology.orchestra.run.smithi132.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-04-15T21:18:19.042 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 2024-04-15T21:18:19.042 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-04-15T21:18:19.042 INFO:teuthology.orchestra.run.smithi132.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-04-15T21:18:19.042 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-15T21:18:19.042 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 2024-04-15T21:18:19.042 INFO:teuthology.orchestra.run.smithi132.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-04-15T21:18:19.042 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 2024-04-15T21:18:19.042 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-04-15T21:18:19.042 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-04-15T21:18:19.042 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-04-15T21:18:19.042 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-04-15T21:18:19.043 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-04-15T21:18:19.043 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-04-15T21:18:19.043 INFO:teuthology.orchestra.run.smithi132.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-04-15T21:18:19.043 INFO:teuthology.orchestra.run.smithi132.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-04-15T21:18:19.043 INFO:teuthology.orchestra.run.smithi132.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-04-15T21:18:19.043 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x559a122a7090#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.3e-05 secs_since: 0 2024-04-15T21:18:19.043 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-04-15T21:18:19.043 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 2024-04-15T21:18:19.043 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-04-15T21:18:19.043 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr 2024-04-15T21:18:19.043 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.448+0000 7fdc9f2cec80 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-04-15T21:18:19.043 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.448+0000 7fdc9f2cec80 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-04-15T21:18:19.043 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-15T21:18:18.448+0000 7fdc9f2cec80 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-a for mon.a 2024-04-15T21:18:19.043 INFO:teuthology.orchestra.run.smithi132.stdout:create mon.a on 2024-04-15T21:18:19.276 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stderr Removed /etc/systemd/system/multi-user.target.wants/ceph.target. 2024-04-15T21:18:19.489 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-04-15T21:18:19.726 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968.target -> /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968.target. 2024-04-15T21:18:19.726 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968.target -> /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968.target. 2024-04-15T21:18:20.028 INFO:teuthology.orchestra.run.smithi132.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mon.a 2024-04-15T21:18:20.028 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stderr Failed to reset failed state of unit ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mon.a.service: Unit ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mon.a.service not loaded. 2024-04-15T21:18:20.232 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968.target.wants/ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mon.a.service -> /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@.service. 2024-04-15T21:18:20.242 INFO:teuthology.orchestra.run.smithi132.stdout:firewalld does not appear to be present 2024-04-15T21:18:20.242 INFO:teuthology.orchestra.run.smithi132.stdout:Not possible to enable service . firewalld.service is not available 2024-04-15T21:18:20.242 INFO:teuthology.orchestra.run.smithi132.stdout:Waiting for mon to start... 2024-04-15T21:18:20.242 INFO:teuthology.orchestra.run.smithi132.stdout:Waiting for mon... 2024-04-15T21:18:21.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:21 smithi132 bash[21050]: cluster 2024-04-15T21:18:21.391346+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-04-15T21:18:22.218 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout cluster: 2024-04-15T21:18:22.218 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout id: 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:18:22.218 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-04-15T21:18:22.218 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout 2024-04-15T21:18:22.218 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout services: 2024-04-15T21:18:22.218 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.24571s) 2024-04-15T21:18:22.219 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-04-15T21:18:22.219 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-04-15T21:18:22.219 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout 2024-04-15T21:18:22.219 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout data: 2024-04-15T21:18:22.219 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-04-15T21:18:22.219 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-04-15T21:18:22.219 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-04-15T21:18:22.219 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout pgs: 2024-04-15T21:18:22.219 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout 2024-04-15T21:18:22.219 INFO:teuthology.orchestra.run.smithi132.stdout:mon is available 2024-04-15T21:18:22.219 INFO:teuthology.orchestra.run.smithi132.stdout:Assimilating anything we can from ceph.conf... 2024-04-15T21:18:22.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:22 smithi132 bash[21050]: cluster 2024-04-15T21:18:21.413934+0000 mon.a (mon.0) 2 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-04-15T21:18:22.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:22 smithi132 bash[21050]: cluster 2024-04-15T21:18:21.414209+0000 mon.a (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-04-15T21:18:22.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:22 smithi132 bash[21050]: cluster 2024-04-15T21:18:21.414220+0000 mon.a (mon.0) 4 : cluster [DBG] fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:18:22.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:22 smithi132 bash[21050]: cluster 2024-04-15T21:18:21.414235+0000 mon.a (mon.0) 5 : cluster [DBG] last_changed 2024-04-15T21:18:17.192210+0000 2024-04-15T21:18:22.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:22 smithi132 bash[21050]: cluster 2024-04-15T21:18:21.414249+0000 mon.a (mon.0) 6 : cluster [DBG] created 2024-04-15T21:18:17.192210+0000 2024-04-15T21:18:22.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:22 smithi132 bash[21050]: cluster 2024-04-15T21:18:21.414262+0000 mon.a (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-04-15T21:18:22.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:22 smithi132 bash[21050]: cluster 2024-04-15T21:18:21.414273+0000 mon.a (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-04-15T21:18:22.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:22 smithi132 bash[21050]: cluster 2024-04-15T21:18:21.414285+0000 mon.a (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.132:3300/0,v1:172.21.15.132:6789/0] mon.a 2024-04-15T21:18:22.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:22 smithi132 bash[21050]: cluster 2024-04-15T21:18:21.416833+0000 mon.a (mon.0) 10 : cluster [DBG] fsmap 2024-04-15T21:18:22.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:22 smithi132 bash[21050]: cluster 2024-04-15T21:18:21.419226+0000 mon.a (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-04-15T21:18:22.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:22 smithi132 bash[21050]: cluster 2024-04-15T21:18:21.419772+0000 mon.a (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-04-15T21:18:22.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:22 smithi132 bash[21050]: audit 2024-04-15T21:18:21.659607+0000 mon.a (mon.0) 13 : audit [DBG] from='client.? 172.21.15.132:0/2630443335' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-04-15T21:18:23.697 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout 2024-04-15T21:18:23.698 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout [global] 2024-04-15T21:18:23.698 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout fsid = 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:18:23.698 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.132:3300,v1:172.21.15.132:6789] 2024-04-15T21:18:23.698 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-15T21:18:23.698 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-15T21:18:23.699 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-15T21:18:23.699 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-15T21:18:23.699 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout 2024-04-15T21:18:23.700 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-15T21:18:23.700 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = True 2024-04-15T21:18:23.700 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-15T21:18:23.700 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout 2024-04-15T21:18:23.700 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout [osd] 2024-04-15T21:18:23.700 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-15T21:18:23.700 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-15T21:18:23.700 INFO:teuthology.orchestra.run.smithi132.stdout:Generating new minimal ceph.conf... 2024-04-15T21:18:23.720 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:23 smithi132 bash[21050]: audit 2024-04-15T21:18:23.143265+0000 mon.a (mon.0) 14 : audit [INF] from='client.? 172.21.15.132:0/226373601' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-15T21:18:23.720 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:23 smithi132 bash[21050]: audit 2024-04-15T21:18:23.147088+0000 mon.a (mon.0) 15 : audit [INF] from='client.? 172.21.15.132:0/226373601' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-04-15T21:18:25.125 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:24 smithi132 bash[21050]: audit 2024-04-15T21:18:24.677041+0000 mon.a (mon.0) 16 : audit [DBG] from='client.? 172.21.15.132:0/1487122795' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:18:25.245 INFO:teuthology.orchestra.run.smithi132.stdout:Restarting the monitor... 2024-04-15T21:18:25.594 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:25 smithi132 systemd[1]: Stopping Ceph mon.a for 7ac1dc10-fb6d-11ee-bc8f-c7b262605968... 2024-04-15T21:18:25.594 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:25 smithi132 bash[21050]: debug 2024-04-15T21:18:25.375+0000 7f25afb8e700 -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-04-15T21:18:25.594 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:25 smithi132 bash[21050]: debug 2024-04-15T21:18:25.375+0000 7f25afb8e700 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-04-15T21:18:26.204 INFO:teuthology.orchestra.run.smithi132.stdout:Setting public_network to 172.21.0.1/32,172.21.15.254/32,172.21.0.0/20,172.21.0.2/32 in mon config section 2024-04-15T21:18:26.375 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:26 smithi132 bash[21438]: ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968-mon-a 2024-04-15T21:18:26.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:26 smithi132 bash[21497]: Error response from daemon: No such container: ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968-mon-a 2024-04-15T21:18:26.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:26 smithi132 systemd[1]: ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mon.a.service: Deactivated successfully. 2024-04-15T21:18:26.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:26 smithi132 systemd[1]: Stopped Ceph mon.a for 7ac1dc10-fb6d-11ee-bc8f-c7b262605968. 2024-04-15T21:18:26.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:26 smithi132 systemd[1]: Started Ceph mon.a for 7ac1dc10-fb6d-11ee-bc8f-c7b262605968. 2024-04-15T21:18:27.483 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.227+0000 7fe22d22ac80 0 set uid:gid to 167:167 (ceph:ceph) 2024-04-15T21:18:27.483 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.227+0000 7fe22d22ac80 0 ceph version 19.0.0-3084-g87dbfb63 (87dbfb632e974cb2c28d17423071d2d833b53b29) squid (dev), process ceph-mon, pid 7 2024-04-15T21:18:27.483 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.227+0000 7fe22d22ac80 0 pidfile_write: ignore empty --pid-file 2024-04-15T21:18:27.483 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.231+0000 7fe22d22ac80 0 load: jerasure load: lrc 2024-04-15T21:18:27.484 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: RocksDB version: 7.9.2 2024-04-15T21:18:27.484 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Git sha 0 2024-04-15T21:18:27.484 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Compile date 2024-04-14 15:12:02 2024-04-15T21:18:27.484 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: DB SUMMARY 2024-04-15T21:18:27.484 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: DB Session ID: PRTT030S4VPYE1IENAK5 2024-04-15T21:18:27.484 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: CURRENT file: CURRENT 2024-04-15T21:18:27.484 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: IDENTITY file: IDENTITY 2024-04-15T21:18:27.484 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-04-15T21:18:27.484 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-04-15T21:18:27.484 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 89117 ; 2024-04-15T21:18:27.484 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.error_if_exists: 0 2024-04-15T21:18:27.484 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.create_if_missing: 0 2024-04-15T21:18:27.484 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.paranoid_checks: 1 2024-04-15T21:18:27.484 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-04-15T21:18:27.485 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-15T21:18:27.485 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-15T21:18:27.485 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.env: 0x560263815cc0 2024-04-15T21:18:27.485 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.fs: PosixFileSystem 2024-04-15T21:18:27.485 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.info_log: 0x560265e2fc60 2024-04-15T21:18:27.485 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_file_opening_threads: 16 2024-04-15T21:18:27.485 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.statistics: (nil) 2024-04-15T21:18:27.485 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.use_fsync: 0 2024-04-15T21:18:27.485 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_log_file_size: 0 2024-04-15T21:18:27.486 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-15T21:18:27.486 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-04-15T21:18:27.486 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.keep_log_file_num: 1000 2024-04-15T21:18:27.486 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.recycle_log_file_num: 0 2024-04-15T21:18:27.486 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.allow_fallocate: 1 2024-04-15T21:18:27.486 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.allow_mmap_reads: 0 2024-04-15T21:18:27.486 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.allow_mmap_writes: 0 2024-04-15T21:18:27.486 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.use_direct_reads: 0 2024-04-15T21:18:27.486 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-15T21:18:27.486 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.create_missing_column_families: 0 2024-04-15T21:18:27.487 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.db_log_dir: 2024-04-15T21:18:27.487 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.wal_dir: 2024-04-15T21:18:27.487 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-04-15T21:18:27.487 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-04-15T21:18:27.487 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-04-15T21:18:27.487 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-15T21:18:27.487 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-15T21:18:27.487 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-04-15T21:18:27.487 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.advise_random_on_open: 1 2024-04-15T21:18:27.487 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.db_write_buffer_size: 0 2024-04-15T21:18:27.487 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.write_buffer_manager: 0x560265e001e0 2024-04-15T21:18:27.487 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-15T21:18:27.487 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-15T21:18:27.488 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-04-15T21:18:27.488 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.rate_limiter: (nil) 2024-04-15T21:18:27.488 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-15T21:18:27.488 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.wal_recovery_mode: 2 2024-04-15T21:18:27.488 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.enable_thread_tracking: 0 2024-04-15T21:18:27.488 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.enable_pipelined_write: 0 2024-04-15T21:18:27.488 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.unordered_write: 0 2024-04-15T21:18:27.488 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-15T21:18:27.488 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-15T21:18:27.488 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-15T21:18:27.488 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-15T21:18:27.488 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.row_cache: None 2024-04-15T21:18:27.488 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.wal_filter: None 2024-04-15T21:18:27.488 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-15T21:18:27.489 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.allow_ingest_behind: 0 2024-04-15T21:18:27.489 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.two_write_queues: 0 2024-04-15T21:18:27.489 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.manual_wal_flush: 0 2024-04-15T21:18:27.489 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.wal_compression: 0 2024-04-15T21:18:27.489 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.atomic_flush: 0 2024-04-15T21:18:27.489 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-15T21:18:27.489 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-04-15T21:18:27.489 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-04-15T21:18:27.489 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.log_readahead_size: 0 2024-04-15T21:18:27.489 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-15T21:18:27.489 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.best_efforts_recovery: 0 2024-04-15T21:18:27.489 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-15T21:18:27.489 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-15T21:18:27.489 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.allow_data_in_errors: 0 2024-04-15T21:18:27.489 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.db_host_id: __hostname__ 2024-04-15T21:18:27.490 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-04-15T21:18:27.490 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_background_jobs: 2 2024-04-15T21:18:27.490 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_background_compactions: -1 2024-04-15T21:18:27.490 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_subcompactions: 1 2024-04-15T21:18:27.490 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-15T21:18:27.490 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-15T21:18:27.490 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-04-15T21:18:27.490 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_total_wal_size: 0 2024-04-15T21:18:27.490 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-15T21:18:27.490 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-04-15T21:18:27.490 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-04-15T21:18:27.490 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-15T21:18:27.490 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_open_files: -1 2024-04-15T21:18:27.491 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.bytes_per_sync: 0 2024-04-15T21:18:27.491 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-04-15T21:18:27.491 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-04-15T21:18:27.491 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compaction_readahead_size: 0 2024-04-15T21:18:27.491 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_background_flushes: -1 2024-04-15T21:18:27.491 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Compression algorithms supported: 2024-04-15T21:18:27.491 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-15T21:18:27.491 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: kZSTD supported: 0 2024-04-15T21:18:27.491 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: kXpressCompression supported: 0 2024-04-15T21:18:27.491 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: kLZ4HCCompression supported: 1 2024-04-15T21:18:27.491 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: kZlibCompression supported: 1 2024-04-15T21:18:27.491 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: kSnappyCompression supported: 1 2024-04-15T21:18:27.491 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: kLZ4Compression supported: 1 2024-04-15T21:18:27.491 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: kBZip2Compression supported: 0 2024-04-15T21:18:27.491 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-04-15T21:18:27.491 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-04-15T21:18:27.492 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-04-15T21:18:27.493 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-15T21:18:27.493 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-15T21:18:27.493 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.merge_operator: 2024-04-15T21:18:27.493 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compaction_filter: None 2024-04-15T21:18:27.493 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compaction_filter_factory: None 2024-04-15T21:18:27.493 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.sst_partitioner_factory: None 2024-04-15T21:18:27.493 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-04-15T21:18:27.493 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-04-15T21:18:27.494 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x560265e2fe20) 2024-04-15T21:18:27.494 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: cache_index_and_filter_blocks: 1 2024-04-15T21:18:27.494 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: cache_index_and_filter_blocks_with_high_priority: 0 2024-04-15T21:18:27.494 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-15T21:18:27.494 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: pin_top_level_index_and_filter: 1 2024-04-15T21:18:27.494 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: index_type: 0 2024-04-15T21:18:27.494 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: data_block_index_type: 0 2024-04-15T21:18:27.494 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: index_shortening: 1 2024-04-15T21:18:27.494 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: data_block_hash_table_util_ratio: 0.750000 2024-04-15T21:18:27.494 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: checksum: 4 2024-04-15T21:18:27.494 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: no_block_cache: 0 2024-04-15T21:18:27.494 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: block_cache: 0x560265e31090 2024-04-15T21:18:27.494 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: block_cache_name: BinnedLRUCache 2024-04-15T21:18:27.495 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: block_cache_options: 2024-04-15T21:18:27.495 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: capacity : 536870912 2024-04-15T21:18:27.495 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: num_shard_bits : 4 2024-04-15T21:18:27.495 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: strict_capacity_limit : 0 2024-04-15T21:18:27.495 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: high_pri_pool_ratio: 0.000 2024-04-15T21:18:27.495 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: block_cache_compressed: (nil) 2024-04-15T21:18:27.495 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: persistent_cache: (nil) 2024-04-15T21:18:27.495 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: block_size: 4096 2024-04-15T21:18:27.495 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: block_size_deviation: 10 2024-04-15T21:18:27.495 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: block_restart_interval: 16 2024-04-15T21:18:27.495 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: index_block_restart_interval: 1 2024-04-15T21:18:27.495 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: metadata_block_size: 4096 2024-04-15T21:18:27.495 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: partition_filters: 0 2024-04-15T21:18:27.495 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: use_delta_encoding: 1 2024-04-15T21:18:27.495 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: filter_policy: bloomfilter 2024-04-15T21:18:27.496 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: whole_key_filtering: 1 2024-04-15T21:18:27.496 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: verify_compression: 0 2024-04-15T21:18:27.496 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: read_amp_bytes_per_bit: 0 2024-04-15T21:18:27.496 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: format_version: 5 2024-04-15T21:18:27.496 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: enable_index_compression: 1 2024-04-15T21:18:27.496 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: block_align: 0 2024-04-15T21:18:27.496 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: max_auto_readahead_size: 262144 2024-04-15T21:18:27.496 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: prepopulate_block_cache: 0 2024-04-15T21:18:27.496 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: initial_auto_readahead_size: 8192 2024-04-15T21:18:27.496 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: num_file_reads_for_auto_readahead: 2 2024-04-15T21:18:27.496 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.write_buffer_size: 33554432 2024-04-15T21:18:27.496 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_write_buffer_number: 2 2024-04-15T21:18:27.496 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compression: NoCompression 2024-04-15T21:18:27.496 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.bottommost_compression: Disabled 2024-04-15T21:18:27.496 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.prefix_extractor: nullptr 2024-04-15T21:18:27.497 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-15T21:18:27.497 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.num_levels: 7 2024-04-15T21:18:27.497 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-15T21:18:27.497 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-15T21:18:27.497 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-15T21:18:27.497 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-15T21:18:27.497 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-15T21:18:27.497 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-15T21:18:27.497 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-15T21:18:27.497 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-15T21:18:27.497 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-15T21:18:27.497 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-15T21:18:27.497 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-15T21:18:27.497 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-15T21:18:27.498 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-04-15T21:18:27.498 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compression_opts.level: 32767 2024-04-15T21:18:27.498 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compression_opts.strategy: 0 2024-04-15T21:18:27.498 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-15T21:18:27.498 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-15T21:18:27.498 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-15T21:18:27.498 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-15T21:18:27.498 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compression_opts.enabled: false 2024-04-15T21:18:27.498 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-15T21:18:27.498 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-15T21:18:27.498 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-15T21:18:27.498 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-15T21:18:27.498 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.target_file_size_base: 67108864 2024-04-15T21:18:27.498 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-04-15T21:18:27.499 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-15T21:18:27.499 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-15T21:18:27.499 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-15T21:18:27.499 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-15T21:18:27.499 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-15T21:18:27.499 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-15T21:18:27.499 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-15T21:18:27.499 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-15T21:18:27.499 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-15T21:18:27.499 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-15T21:18:27.499 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-15T21:18:27.499 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-15T21:18:27.499 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-15T21:18:27.499 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.arena_block_size: 1048576 2024-04-15T21:18:27.499 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-15T21:18:27.500 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-15T21:18:27.500 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.disable_auto_compactions: 0 2024-04-15T21:18:27.500 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-15T21:18:27.500 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-15T21:18:27.500 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-15T21:18:27.500 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-15T21:18:27.500 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-15T21:18:27.500 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-15T21:18:27.500 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-15T21:18:27.500 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-15T21:18:27.500 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-15T21:18:27.500 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-15T21:18:27.500 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-04-15T21:18:27.500 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.inplace_update_support: 0 2024-04-15T21:18:27.500 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-04-15T21:18:27.501 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-15T21:18:27.501 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-15T21:18:27.501 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-04-15T21:18:27.501 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.bloom_locality: 0 2024-04-15T21:18:27.501 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.max_successive_merges: 0 2024-04-15T21:18:27.501 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-04-15T21:18:27.501 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.paranoid_file_checks: 0 2024-04-15T21:18:27.501 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.force_consistency_checks: 1 2024-04-15T21:18:27.501 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.report_bg_io_stats: 0 2024-04-15T21:18:27.501 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.ttl: 2592000 2024-04-15T21:18:27.501 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-04-15T21:18:27.501 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-15T21:18:27.501 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-15T21:18:27.501 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.enable_blob_files: false 2024-04-15T21:18:27.501 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.min_blob_size: 0 2024-04-15T21:18:27.502 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.blob_file_size: 268435456 2024-04-15T21:18:27.502 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-04-15T21:18:27.502 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-04-15T21:18:27.502 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-15T21:18:27.502 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-15T21:18:27.502 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-15T21:18:27.502 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.blob_file_starting_level: 0 2024-04-15T21:18:27.502 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-15T21:18:27.502 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 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-04-15T21:18:27.502 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-04-15T21:18:27.502 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 7e7664eb-753f-410c-b945-2fdb2aed30f9 2024-04-15T21:18:27.502 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713215907239129, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-04-15T21:18:27.502 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-04-15T21:18:27.503 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713215907240195, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85734, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 258, "table_properties": {"data_size": 83881, "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": 10201, "raw_average_key_size": 47, "raw_value_size": 78088, "raw_average_value_size": 359, "num_data_blocks": 11, "num_entries": 217, "num_filter_entries": 217, "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": 1713215907, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "7e7664eb-753f-410c-b945-2fdb2aed30f9", "db_session_id": "PRTT030S4VPYE1IENAK5", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-04-15T21:18:27.503 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713215907240295, "job": 1, "event": "recovery_finished"} 2024-04-15T21:18:27.503 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.235+0000 7fe22d22ac80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-04-15T21:18:27.503 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.239+0000 7fe22d22ac80 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-04-15T21:18:27.503 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.239+0000 7fe22d22ac80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x560265f22000 2024-04-15T21:18:27.503 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.239+0000 7fe22d22ac80 4 rocksdb: DB pointer 0x560265f0c000 2024-04-15T21:18:27.503 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.239+0000 7fe21b984700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-15T21:18:27.503 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.239+0000 7fe21b984700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-15T21:18:27.503 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: ** DB Stats ** 2024-04-15T21:18:27.503 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-15T21:18:27.503 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-04-15T21:18:27.503 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-15T21:18:27.503 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-15T21:18:27.503 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-04-15T21:18:27.504 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-15T21:18:27.504 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-15T21:18:27.504 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: ** Compaction Stats [default] ** 2024-04-15T21:18:27.504 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: 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-04-15T21:18:27.504 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-15T21:18:27.504 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: L0 2/0 85.58 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 132.1 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-15T21:18:27.504 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: Sum 2/0 85.58 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 132.1 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-15T21:18:27.504 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 132.1 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-15T21:18:27.504 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: ** Compaction Stats [default] ** 2024-04-15T21:18:27.504 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: 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-04-15T21:18:27.504 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-15T21:18:27.504 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 132.1 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-15T21:18:27.504 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-15T21:18:27.504 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-15T21:18:27.505 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: Flush(GB): cumulative 0.000, interval 0.000 2024-04-15T21:18:27.505 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-15T21:18:27.505 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: AddFile(Total Files): cumulative 0, interval 0 2024-04-15T21:18:27.505 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: AddFile(L0 Files): cumulative 0, interval 0 2024-04-15T21:18:27.505 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: AddFile(Keys): cumulative 0, interval 0 2024-04-15T21:18:27.505 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: Cumulative compaction: 0.00 GB write, 22.86 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-15T21:18:27.505 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: Interval compaction: 0.00 GB write, 22.86 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-15T21:18:27.505 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: 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-04-15T21:18:27.505 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: Block cache BinnedLRUCache@0x560265e31090#7 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.6e-05 secs_since: 0 2024-04-15T21:18:27.505 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: 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-04-15T21:18:27.505 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: ** File Read Latency Histogram By Level [default] ** 2024-04-15T21:18:27.505 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.239+0000 7fe22d22ac80 0 starting mon.a rank 0 at public addrs [v2:172.21.15.132:3300/0,v1:172.21.15.132:6789/0] at bind addrs [v2:172.21.15.132:3300/0,v1:172.21.15.132:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:18:27.505 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.239+0000 7fe22d22ac80 1 mon.a@-1(???) e1 preinit fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:18:27.505 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.239+0000 7fe22d22ac80 0 mon.a@-1(???).mds e1 new map 2024-04-15T21:18:27.506 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.239+0000 7fe22d22ac80 0 mon.a@-1(???).mds e1 print_map 2024-04-15T21:18:27.506 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: e1 2024-04-15T21:18:27.506 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: enable_multiple, ever_enabled_multiple: 1,1 2024-04-15T21:18:27.506 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-04-15T21:18:27.506 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: legacy client fscid: -1 2024-04-15T21:18:27.506 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: 2024-04-15T21:18:27.506 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: No filesystems configured 2024-04-15T21:18:27.506 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.239+0000 7fe22d22ac80 0 mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-15T21:18:27.506 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.239+0000 7fe22d22ac80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T21:18:27.506 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.239+0000 7fe22d22ac80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T21:18:27.506 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.239+0000 7fe22d22ac80 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T21:18:27.506 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: debug 2024-04-15T21:18:27.239+0000 7fe22d22ac80 1 mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-04-15T21:18:27.506 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: cluster 2024-04-15T21:18:27.265948+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-04-15T21:18:27.506 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: cluster 2024-04-15T21:18:27.266014+0000 mon.a (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-04-15T21:18:27.507 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: cluster 2024-04-15T21:18:27.266025+0000 mon.a (mon.0) 3 : cluster [DBG] fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:18:27.507 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: cluster 2024-04-15T21:18:27.266147+0000 mon.a (mon.0) 4 : cluster [DBG] last_changed 2024-04-15T21:18:17.192210+0000 2024-04-15T21:18:27.507 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: cluster 2024-04-15T21:18:27.266156+0000 mon.a (mon.0) 5 : cluster [DBG] created 2024-04-15T21:18:17.192210+0000 2024-04-15T21:18:27.507 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: cluster 2024-04-15T21:18:27.266163+0000 mon.a (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-04-15T21:18:27.507 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: cluster 2024-04-15T21:18:27.266182+0000 mon.a (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-04-15T21:18:27.507 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: cluster 2024-04-15T21:18:27.266195+0000 mon.a (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.132:3300/0,v1:172.21.15.132:6789/0] mon.a 2024-04-15T21:18:27.507 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: cluster 2024-04-15T21:18:27.266612+0000 mon.a (mon.0) 9 : cluster [DBG] fsmap 2024-04-15T21:18:27.507 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: cluster 2024-04-15T21:18:27.266638+0000 mon.a (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-04-15T21:18:27.507 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:27 smithi132 bash[21536]: cluster 2024-04-15T21:18:27.267015+0000 mon.a (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-04-15T21:18:28.078 INFO:teuthology.orchestra.run.smithi132.stdout:Wrote config to /etc/ceph/ceph.conf 2024-04-15T21:18:28.096 INFO:teuthology.orchestra.run.smithi132.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-04-15T21:18:28.096 INFO:teuthology.orchestra.run.smithi132.stdout:Creating mgr... 2024-04-15T21:18:28.096 INFO:teuthology.orchestra.run.smithi132.stdout:Verifying port 0.0.0.0:9283 ... 2024-04-15T21:18:28.097 INFO:teuthology.orchestra.run.smithi132.stdout:Verifying port 0.0.0.0:8765 ... 2024-04-15T21:18:28.373 INFO:teuthology.orchestra.run.smithi132.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mgr.a 2024-04-15T21:18:28.373 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stderr Failed to reset failed state of unit ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mgr.a.service: Unit ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mgr.a.service not loaded. 2024-04-15T21:18:28.468 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:28 smithi132 systemd[1]: /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-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-04-15T21:18:28.562 INFO:teuthology.orchestra.run.smithi132.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968.target.wants/ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mgr.a.service -> /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@.service. 2024-04-15T21:18:28.570 INFO:teuthology.orchestra.run.smithi132.stdout:firewalld does not appear to be present 2024-04-15T21:18:28.570 INFO:teuthology.orchestra.run.smithi132.stdout:Not possible to enable service . firewalld.service is not available 2024-04-15T21:18:28.570 INFO:teuthology.orchestra.run.smithi132.stdout:firewalld does not appear to be present 2024-04-15T21:18:28.570 INFO:teuthology.orchestra.run.smithi132.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-04-15T21:18:28.570 INFO:teuthology.orchestra.run.smithi132.stdout:Waiting for mgr to start... 2024-04-15T21:18:28.570 INFO:teuthology.orchestra.run.smithi132.stdout:Waiting for mgr... 2024-04-15T21:18:28.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:28 smithi132 bash[21536]: audit 2024-04-15T21:18:27.473555+0000 mon.a (mon.0) 12 : audit [INF] from='client.? 172.21.15.132:0/2432612429' entity='client.admin' 2024-04-15T21:18:28.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:28 smithi132 systemd[1]: /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-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-04-15T21:18:30.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:30 smithi132 bash[21536]: audit 2024-04-15T21:18:29.955208+0000 mon.a (mon.0) 13 : audit [DBG] from='client.? 172.21.15.132:0/1017601595' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-15T21:18:30.376 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:29 smithi132 bash[21820]: debug 2024-04-15T21:18:29.919+0000 7f089b353200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-15T21:18:30.559 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout 2024-04-15T21:18:30.560 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout { 2024-04-15T21:18:30.560 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "fsid": "7ac1dc10-fb6d-11ee-bc8f-c7b262605968", 2024-04-15T21:18:30.560 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "health": { 2024-04-15T21:18:30.560 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-15T21:18:30.560 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-15T21:18:30.560 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-15T21:18:30.560 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:30.560 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-15T21:18:30.560 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-15T21:18:30.560 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout 0 2024-04-15T21:18:30.560 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:18:30.560 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-15T21:18:30.560 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "a" 2024-04-15T21:18:30.560 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:18:30.560 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-04-15T21:18:30.561 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-15T21:18:30.561 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:18:30.561 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-15T21:18:30.561 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-15T21:18:30.561 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:30.561 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-15T21:18:30.561 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:18:30.561 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-15T21:18:30.561 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-15T21:18:30.561 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-15T21:18:30.561 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-15T21:18:30.561 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-15T21:18:30.561 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-15T21:18:30.561 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:30.562 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-15T21:18:30.562 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-15T21:18:30.562 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-15T21:18:30.562 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-15T21:18:30.562 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-15T21:18:30.562 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-15T21:18:30.562 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-15T21:18:30.562 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-15T21:18:30.562 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-15T21:18:30.562 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:30.562 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-15T21:18:30.562 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:18:30.562 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-15T21:18:30.563 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-15T21:18:30.563 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:30.563 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-15T21:18:30.563 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-15T21:18:30.563 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-15T21:18:30.563 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-15T21:18:30.563 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-15T21:18:30.563 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-15T21:18:30.563 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "restful" 2024-04-15T21:18:30.563 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:18:30.563 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T21:18:30.563 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:30.563 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-15T21:18:30.563 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:18:30.563 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "modified": "2024-04-15T21:18:21.415597+0000", 2024-04-15T21:18:30.564 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T21:18:30.564 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:30.564 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-15T21:18:30.564 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout } 2024-04-15T21:18:30.564 INFO:teuthology.orchestra.run.smithi132.stdout:mgr not available, waiting (1/15)... 2024-04-15T21:18:31.822 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:31 smithi132 bash[21820]: debug 2024-04-15T21:18:31.483+0000 7f089b353200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-15T21:18:31.823 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:31 smithi132 bash[21820]: debug 2024-04-15T21:18:31.575+0000 7f089b353200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-15T21:18:32.875 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:31 smithi132 bash[21820]: debug 2024-04-15T21:18:31.823+0000 7f089b353200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-15T21:18:32.876 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:32 smithi132 bash[21820]: debug 2024-04-15T21:18:32.611+0000 7f089b353200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-15T21:18:32.876 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:32 smithi132 bash[21820]: debug 2024-04-15T21:18:32.719+0000 7f089b353200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-15T21:18:32.876 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:32 smithi132 bash[21820]: debug 2024-04-15T21:18:32.819+0000 7f089b353200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-15T21:18:33.625 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:33 smithi132 bash[21820]: debug 2024-04-15T21:18:33.179+0000 7f089b353200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-15T21:18:33.625 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:33 smithi132 bash[21820]: debug 2024-04-15T21:18:33.291+0000 7f089b353200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-15T21:18:33.626 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:33 smithi132 bash[21820]: debug 2024-04-15T21:18:33.395+0000 7f089b353200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-15T21:18:34.017 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:33 smithi132 bash[21536]: audit 2024-04-15T21:18:33.684010+0000 mon.a (mon.0) 14 : audit [DBG] from='client.? 172.21.15.132:0/873201102' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-15T21:18:34.018 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:33 smithi132 bash[21820]: debug 2024-04-15T21:18:33.775+0000 7f089b353200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-15T21:18:34.270 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout 2024-04-15T21:18:34.270 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout { 2024-04-15T21:18:34.270 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "fsid": "7ac1dc10-fb6d-11ee-bc8f-c7b262605968", 2024-04-15T21:18:34.270 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "health": { 2024-04-15T21:18:34.270 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-15T21:18:34.270 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-15T21:18:34.270 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-15T21:18:34.270 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:34.270 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-15T21:18:34.271 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-15T21:18:34.271 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout 0 2024-04-15T21:18:34.271 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:18:34.271 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-15T21:18:34.271 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "a" 2024-04-15T21:18:34.271 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:18:34.271 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-04-15T21:18:34.271 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-15T21:18:34.271 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:18:34.271 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-15T21:18:34.271 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-15T21:18:34.271 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:34.271 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-15T21:18:34.271 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:18:34.271 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-15T21:18:34.272 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-15T21:18:34.272 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-15T21:18:34.272 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-15T21:18:34.275 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-15T21:18:34.275 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-15T21:18:34.275 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:34.275 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-15T21:18:34.275 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-15T21:18:34.276 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-15T21:18:34.276 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-15T21:18:34.276 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-15T21:18:34.276 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-15T21:18:34.276 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-15T21:18:34.276 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-15T21:18:34.276 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-15T21:18:34.276 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:34.276 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-15T21:18:34.276 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:18:34.276 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-15T21:18:34.276 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-15T21:18:34.276 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:34.276 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-15T21:18:34.276 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-15T21:18:34.277 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-15T21:18:34.277 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-15T21:18:34.277 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-15T21:18:34.277 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-15T21:18:34.277 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "restful" 2024-04-15T21:18:34.277 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:18:34.277 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T21:18:34.277 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:34.277 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-15T21:18:34.277 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:18:34.277 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "modified": "2024-04-15T21:18:21.415597+0000", 2024-04-15T21:18:34.277 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T21:18:34.277 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:34.277 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-15T21:18:34.277 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout } 2024-04-15T21:18:34.277 INFO:teuthology.orchestra.run.smithi132.stdout:mgr not available, waiting (2/15)... 2024-04-15T21:18:34.278 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:34 smithi132 bash[21820]: debug 2024-04-15T21:18:34.015+0000 7f089b353200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-15T21:18:34.625 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:34 smithi132 bash[21820]: debug 2024-04-15T21:18:34.275+0000 7f089b353200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-15T21:18:34.626 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:34 smithi132 bash[21820]: debug 2024-04-15T21:18:34.387+0000 7f089b353200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-15T21:18:35.065 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:34 smithi132 bash[21820]: debug 2024-04-15T21:18:34.655+0000 7f089b353200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-15T21:18:35.375 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:35 smithi132 bash[21820]: debug 2024-04-15T21:18:35.063+0000 7f089b353200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-15T21:18:35.376 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:35 smithi132 bash[21820]: debug 2024-04-15T21:18:35.295+0000 7f089b353200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-15T21:18:35.876 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:35 smithi132 bash[21820]: debug 2024-04-15T21:18:35.411+0000 7f089b353200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-15T21:18:35.876 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:35 smithi132 bash[21820]: debug 2024-04-15T21:18:35.651+0000 7f089b353200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-15T21:18:36.914 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:36 smithi132 bash[21820]: debug 2024-04-15T21:18:36.655+0000 7f089b353200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-15T21:18:36.914 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:36 smithi132 bash[21820]: debug 2024-04-15T21:18:36.771+0000 7f089b353200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-15T21:18:37.180 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:37 smithi132 bash[21820]: debug 2024-04-15T21:18:37.067+0000 7f089b353200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-15T21:18:37.451 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:37 smithi132 bash[21820]: debug 2024-04-15T21:18:37.179+0000 7f089b353200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-15T21:18:37.451 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:37 smithi132 bash[21536]: audit 2024-04-15T21:18:37.232128+0000 mon.a (mon.0) 15 : audit [DBG] from='client.? 172.21.15.132:0/1635815717' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-15T21:18:37.747 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:37 smithi132 bash[21820]: debug 2024-04-15T21:18:37.627+0000 7f089b353200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-15T21:18:37.805 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout 2024-04-15T21:18:37.805 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout { 2024-04-15T21:18:37.805 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "fsid": "7ac1dc10-fb6d-11ee-bc8f-c7b262605968", 2024-04-15T21:18:37.805 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "health": { 2024-04-15T21:18:37.805 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-15T21:18:37.805 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-15T21:18:37.805 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-15T21:18:37.805 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:37.805 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-15T21:18:37.806 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-15T21:18:37.806 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout 0 2024-04-15T21:18:37.806 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:18:37.806 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-15T21:18:37.806 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "a" 2024-04-15T21:18:37.806 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:18:37.806 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "quorum_age": 9, 2024-04-15T21:18:37.806 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-15T21:18:37.806 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:18:37.808 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-15T21:18:37.809 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-15T21:18:37.809 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:37.809 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-15T21:18:37.809 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:18:37.809 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-15T21:18:37.809 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-15T21:18:37.809 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-15T21:18:37.809 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-15T21:18:37.809 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-15T21:18:37.809 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-15T21:18:37.809 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:37.809 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-15T21:18:37.809 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-15T21:18:37.809 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-15T21:18:37.810 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-15T21:18:37.810 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-15T21:18:37.810 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-15T21:18:37.810 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-15T21:18:37.810 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-15T21:18:37.810 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-15T21:18:37.810 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:37.810 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-15T21:18:37.810 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:18:37.811 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-15T21:18:37.811 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-15T21:18:37.811 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:37.811 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-15T21:18:37.811 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-15T21:18:37.811 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-15T21:18:37.811 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-15T21:18:37.811 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-15T21:18:37.811 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-15T21:18:37.811 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "restful" 2024-04-15T21:18:37.811 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:18:37.811 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T21:18:37.811 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:37.811 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-15T21:18:37.811 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:18:37.811 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "modified": "2024-04-15T21:18:21.415597+0000", 2024-04-15T21:18:37.812 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T21:18:37.812 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:37.812 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-15T21:18:37.812 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout } 2024-04-15T21:18:37.812 INFO:teuthology.orchestra.run.smithi132.stdout:mgr not available, waiting (3/15)... 2024-04-15T21:18:38.126 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:37 smithi132 bash[21820]: debug 2024-04-15T21:18:37.747+0000 7f089b353200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-15T21:18:38.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:38 smithi132 bash[21536]: cluster 2024-04-15T21:18:37.772086+0000 mon.a (mon.0) 16 : cluster [INF] Activating manager daemon a 2024-04-15T21:18:38.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:38 smithi132 bash[21536]: cluster 2024-04-15T21:18:37.779966+0000 mon.a (mon.0) 17 : cluster [DBG] mgrmap e2: a(active, starting, since 0.00820065s) 2024-04-15T21:18:38.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:38 smithi132 bash[21536]: audit 2024-04-15T21:18:37.780895+0000 mon.a (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.132:0/799798232' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-15T21:18:38.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:38 smithi132 bash[21536]: audit 2024-04-15T21:18:37.781023+0000 mon.a (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.132:0/799798232' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-15T21:18:38.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:38 smithi132 bash[21536]: audit 2024-04-15T21:18:37.781236+0000 mon.a (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.132:0/799798232' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-15T21:18:38.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:38 smithi132 bash[21536]: audit 2024-04-15T21:18:37.781443+0000 mon.a (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.132:0/799798232' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:18:38.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:38 smithi132 bash[21536]: audit 2024-04-15T21:18:37.783114+0000 mon.a (mon.0) 22 : audit [DBG] from='mgr.14100 172.21.15.132:0/799798232' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-04-15T21:18:38.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:38 smithi132 bash[21536]: cluster 2024-04-15T21:18:37.789273+0000 mon.a (mon.0) 23 : cluster [INF] Manager daemon a is now available 2024-04-15T21:18:38.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:38 smithi132 bash[21536]: audit 2024-04-15T21:18:37.801849+0000 mon.a (mon.0) 24 : audit [INF] from='mgr.14100 172.21.15.132:0/799798232' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-04-15T21:18:38.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:38 smithi132 bash[21536]: audit 2024-04-15T21:18:37.804380+0000 mon.a (mon.0) 25 : audit [INF] from='mgr.14100 172.21.15.132:0/799798232' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-04-15T21:18:38.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:38 smithi132 bash[21536]: audit 2024-04-15T21:18:37.807968+0000 mon.a (mon.0) 26 : audit [INF] from='mgr.14100 172.21.15.132:0/799798232' entity='mgr.a' 2024-04-15T21:18:38.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:38 smithi132 bash[21536]: audit 2024-04-15T21:18:37.813316+0000 mon.a (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.132:0/799798232' entity='mgr.a' 2024-04-15T21:18:38.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:38 smithi132 bash[21536]: audit 2024-04-15T21:18:37.818277+0000 mon.a (mon.0) 28 : audit [INF] from='mgr.14100 172.21.15.132:0/799798232' entity='mgr.a' 2024-04-15T21:18:40.126 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:39 smithi132 bash[21536]: cluster 2024-04-15T21:18:38.787132+0000 mon.a (mon.0) 29 : cluster [DBG] mgrmap e3: a(active, since 1.01537s) 2024-04-15T21:18:41.748 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout 2024-04-15T21:18:41.748 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout { 2024-04-15T21:18:41.748 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "fsid": "7ac1dc10-fb6d-11ee-bc8f-c7b262605968", 2024-04-15T21:18:41.748 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "health": { 2024-04-15T21:18:41.748 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-15T21:18:41.748 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-15T21:18:41.748 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-15T21:18:41.749 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:41.749 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-15T21:18:41.749 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-15T21:18:41.749 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout 0 2024-04-15T21:18:41.749 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:18:41.749 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-15T21:18:41.749 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "a" 2024-04-15T21:18:41.749 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:18:41.749 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "quorum_age": 13, 2024-04-15T21:18:41.749 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-15T21:18:41.749 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:18:41.749 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-15T21:18:41.749 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-15T21:18:41.749 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:41.749 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-15T21:18:41.750 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:18:41.750 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-15T21:18:41.750 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-15T21:18:41.750 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-15T21:18:41.750 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-15T21:18:41.750 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-15T21:18:41.750 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-15T21:18:41.754 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:41.754 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-15T21:18:41.754 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-15T21:18:41.754 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-15T21:18:41.754 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-15T21:18:41.754 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-15T21:18:41.754 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-15T21:18:41.754 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-15T21:18:41.754 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-15T21:18:41.754 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-15T21:18:41.754 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:41.754 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-15T21:18:41.755 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:18:41.755 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-15T21:18:41.755 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-15T21:18:41.755 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:41.755 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-15T21:18:41.755 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-15T21:18:41.755 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-15T21:18:41.755 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-15T21:18:41.755 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-15T21:18:41.755 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-15T21:18:41.755 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "restful" 2024-04-15T21:18:41.755 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:18:41.755 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T21:18:41.755 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:41.755 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-15T21:18:41.755 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:18:41.755 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "modified": "2024-04-15T21:18:21.415597+0000", 2024-04-15T21:18:41.756 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T21:18:41.756 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:18:41.756 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-15T21:18:41.756 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout } 2024-04-15T21:18:41.756 INFO:teuthology.orchestra.run.smithi132.stdout:mgr is available 2024-04-15T21:18:42.126 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:41 smithi132 bash[21536]: cluster 2024-04-15T21:18:40.783655+0000 mon.a (mon.0) 30 : cluster [DBG] mgrmap e4: a(active, since 3s) 2024-04-15T21:18:42.126 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:41 smithi132 bash[21536]: audit 2024-04-15T21:18:41.201844+0000 mon.a (mon.0) 31 : audit [DBG] from='client.? 172.21.15.132:0/1793476016' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-15T21:18:43.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:43 smithi132 bash[21536]: audit 2024-04-15T21:18:42.977385+0000 mon.a (mon.0) 32 : audit [INF] from='client.? 172.21.15.132:0/1648727237' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-15T21:18:43.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:43 smithi132 bash[21536]: audit 2024-04-15T21:18:42.982527+0000 mon.a (mon.0) 33 : audit [INF] from='client.? 172.21.15.132:0/1648727237' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-04-15T21:18:43.511 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout 2024-04-15T21:18:43.511 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout [global] 2024-04-15T21:18:43.511 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout fsid = 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:18:43.511 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-15T21:18:43.511 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-15T21:18:43.512 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-15T21:18:43.512 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-15T21:18:43.512 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout 2024-04-15T21:18:43.512 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-15T21:18:43.512 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-15T21:18:43.512 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout 2024-04-15T21:18:43.512 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout [osd] 2024-04-15T21:18:43.512 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-15T21:18:43.512 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-15T21:18:43.512 INFO:teuthology.orchestra.run.smithi132.stdout:Enabling cephadm module... 2024-04-15T21:18:45.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:44 smithi132 bash[21536]: audit 2024-04-15T21:18:44.850754+0000 mon.a (mon.0) 34 : audit [INF] from='client.? 172.21.15.132:0/2347170679' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-04-15T21:18:45.376 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:44 smithi132 bash[21820]: ignoring --setuser ceph since I am not root 2024-04-15T21:18:45.376 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:44 smithi132 bash[21820]: ignoring --setgroup ceph since I am not root 2024-04-15T21:18:45.376 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:45 smithi132 bash[21820]: debug 2024-04-15T21:18:45.095+0000 7f7f030eb200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-15T21:18:46.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:45 smithi132 bash[21536]: audit 2024-04-15T21:18:44.902547+0000 mon.a (mon.0) 35 : audit [INF] from='client.? 172.21.15.132:0/2347170679' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-04-15T21:18:46.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:45 smithi132 bash[21536]: cluster 2024-04-15T21:18:44.906688+0000 mon.a (mon.0) 36 : cluster [DBG] mgrmap e5: a(active, since 7s) 2024-04-15T21:18:46.999 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:46 smithi132 bash[21536]: audit 2024-04-15T21:18:46.791143+0000 mon.a (mon.0) 37 : audit [DBG] from='client.? 172.21.15.132:0/846672883' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-15T21:18:46.999 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:46 smithi132 bash[21820]: debug 2024-04-15T21:18:46.679+0000 7f7f030eb200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-15T21:18:46.999 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:46 smithi132 bash[21820]: debug 2024-04-15T21:18:46.775+0000 7f7f030eb200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-15T21:18:47.361 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout { 2024-04-15T21:18:47.361 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-04-15T21:18:47.361 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-15T21:18:47.361 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-04-15T21:18:47.361 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-04-15T21:18:47.361 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout } 2024-04-15T21:18:47.361 INFO:teuthology.orchestra.run.smithi132.stdout:Waiting for the mgr to restart... 2024-04-15T21:18:47.361 INFO:teuthology.orchestra.run.smithi132.stdout:Waiting for mgr epoch 5... 2024-04-15T21:18:47.375 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:47 smithi132 bash[21820]: debug 2024-04-15T21:18:47.031+0000 7f7f030eb200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-15T21:18:48.126 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:47 smithi132 bash[21820]: debug 2024-04-15T21:18:47.831+0000 7f7f030eb200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-15T21:18:48.126 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:47 smithi132 bash[21820]: debug 2024-04-15T21:18:47.939+0000 7f7f030eb200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-15T21:18:48.126 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:48 smithi132 bash[21820]: debug 2024-04-15T21:18:48.047+0000 7f7f030eb200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-15T21:18:48.876 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:48 smithi132 bash[21820]: debug 2024-04-15T21:18:48.407+0000 7f7f030eb200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-15T21:18:48.876 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:48 smithi132 bash[21820]: debug 2024-04-15T21:18:48.523+0000 7f7f030eb200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-15T21:18:48.876 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:48 smithi132 bash[21820]: debug 2024-04-15T21:18:48.623+0000 7f7f030eb200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-15T21:18:49.376 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:48 smithi132 bash[21820]: debug 2024-04-15T21:18:48.979+0000 7f7f030eb200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-15T21:18:49.376 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:49 smithi132 bash[21820]: debug 2024-04-15T21:18:49.223+0000 7f7f030eb200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-15T21:18:49.867 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:49 smithi132 bash[21820]: debug 2024-04-15T21:18:49.483+0000 7f7f030eb200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-15T21:18:49.867 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:49 smithi132 bash[21820]: debug 2024-04-15T21:18:49.595+0000 7f7f030eb200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-15T21:18:49.868 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:49 smithi132 bash[21820]: debug 2024-04-15T21:18:49.867+0000 7f7f030eb200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-15T21:18:50.626 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:50 smithi132 bash[21820]: debug 2024-04-15T21:18:50.283+0000 7f7f030eb200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-15T21:18:50.626 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:50 smithi132 bash[21820]: debug 2024-04-15T21:18:50.519+0000 7f7f030eb200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-15T21:18:51.126 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:50 smithi132 bash[21820]: debug 2024-04-15T21:18:50.639+0000 7f7f030eb200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-15T21:18:51.126 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:50 smithi132 bash[21820]: debug 2024-04-15T21:18:50.883+0000 7f7f030eb200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-15T21:18:52.303 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:51 smithi132 bash[21820]: debug 2024-04-15T21:18:51.894+0000 7f7f030eb200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-15T21:18:52.304 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:52 smithi132 bash[21820]: debug 2024-04-15T21:18:52.010+0000 7f7f030eb200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-15T21:18:52.304 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:52 smithi132 bash[21820]: debug 2024-04-15T21:18:52.302+0000 7f7f030eb200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-15T21:18:52.626 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:52 smithi132 bash[21820]: debug 2024-04-15T21:18:52.414+0000 7f7f030eb200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-15T21:18:53.057 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:53 smithi132 bash[21536]: cluster 2024-04-15T21:18:53.007658+0000 mon.a (mon.0) 38 : cluster [INF] Active manager daemon a restarted 2024-04-15T21:18:53.057 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:53 smithi132 bash[21536]: cluster 2024-04-15T21:18:53.008125+0000 mon.a (mon.0) 39 : cluster [INF] Activating manager daemon a 2024-04-15T21:18:53.058 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:53 smithi132 bash[21536]: cluster 2024-04-15T21:18:53.012908+0000 mon.a (mon.0) 40 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-04-15T21:18:53.058 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:53 smithi132 bash[21536]: cluster 2024-04-15T21:18:53.013104+0000 mon.a (mon.0) 41 : cluster [DBG] mgrmap e6: a(active, starting, since 0.00516857s) 2024-04-15T21:18:53.058 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:52 smithi132 bash[21820]: debug 2024-04-15T21:18:52.862+0000 7f7f030eb200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-15T21:18:53.058 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:18:52 smithi132 bash[21820]: debug 2024-04-15T21:18:52.982+0000 7f7f030eb200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-15T21:18:53.126 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:53 smithi132 bash[21536]: audit 2024-04-15T21:18:53.014775+0000 mon.a (mon.0) 42 : audit [DBG] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:18:53.126 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:53 smithi132 bash[21536]: audit 2024-04-15T21:18:53.016400+0000 mon.a (mon.0) 43 : audit [DBG] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-04-15T21:18:53.126 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:53 smithi132 bash[21536]: audit 2024-04-15T21:18:53.017448+0000 mon.a (mon.0) 44 : audit [DBG] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-15T21:18:53.126 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:53 smithi132 bash[21536]: audit 2024-04-15T21:18:53.017625+0000 mon.a (mon.0) 45 : audit [DBG] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-15T21:18:53.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:53 smithi132 bash[21536]: audit 2024-04-15T21:18:53.017742+0000 mon.a (mon.0) 46 : audit [DBG] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-15T21:18:53.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:53 smithi132 bash[21536]: cluster 2024-04-15T21:18:53.043418+0000 mon.a (mon.0) 47 : cluster [INF] Manager daemon a is now available 2024-04-15T21:18:54.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:54 smithi132 bash[21536]: cephadm 2024-04-15T21:18:53.067846+0000 mgr.a (mgr.14120) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-04-15T21:18:54.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:54 smithi132 bash[21536]: audit 2024-04-15T21:18:53.070084+0000 mon.a (mon.0) 48 : audit [INF] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' 2024-04-15T21:18:54.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:54 smithi132 bash[21536]: audit 2024-04-15T21:18:53.073513+0000 mon.a (mon.0) 49 : audit [INF] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' 2024-04-15T21:18:54.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:54 smithi132 bash[21536]: audit 2024-04-15T21:18:53.076398+0000 mon.a (mon.0) 50 : audit [INF] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' 2024-04-15T21:18:54.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:54 smithi132 bash[21536]: audit 2024-04-15T21:18:53.079514+0000 mon.a (mon.0) 51 : audit [DBG] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:18:54.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:54 smithi132 bash[21536]: audit 2024-04-15T21:18:53.083466+0000 mon.a (mon.0) 52 : audit [DBG] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:18:54.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:54 smithi132 bash[21536]: audit 2024-04-15T21:18:53.094651+0000 mon.a (mon.0) 53 : audit [INF] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-04-15T21:18:54.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:54 smithi132 bash[21536]: audit 2024-04-15T21:18:53.098039+0000 mon.a (mon.0) 54 : audit [INF] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-04-15T21:18:54.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:54 smithi132 bash[21536]: cluster 2024-04-15T21:18:54.019548+0000 mon.a (mon.0) 55 : cluster [DBG] mgrmap e7: a(active, since 1.0116s) 2024-04-15T21:18:54.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:54 smithi132 bash[21536]: audit 2024-04-15T21:18:54.051354+0000 mon.a (mon.0) 56 : audit [INF] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' 2024-04-15T21:18:54.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:54 smithi132 bash[21536]: audit 2024-04-15T21:18:54.056488+0000 mon.a (mon.0) 57 : audit [INF] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' 2024-04-15T21:18:54.710 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout { 2024-04-15T21:18:54.710 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-04-15T21:18:54.710 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "initialized": true 2024-04-15T21:18:54.710 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout } 2024-04-15T21:18:54.710 INFO:teuthology.orchestra.run.smithi132.stdout:mgr epoch 5 is available 2024-04-15T21:18:54.710 INFO:teuthology.orchestra.run.smithi132.stdout:Setting orchestrator backend to cephadm... 2024-04-15T21:18:55.364 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:55 smithi132 bash[21536]: audit 2024-04-15T21:18:54.017491+0000 mgr.a (mgr.14120) 2 : audit [DBG] from='client.14124 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-04-15T21:18:55.364 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:55 smithi132 bash[21536]: audit 2024-04-15T21:18:54.032252+0000 mgr.a (mgr.14120) 3 : audit [DBG] from='client.14124 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-04-15T21:18:55.364 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:55 smithi132 bash[21536]: cephadm 2024-04-15T21:18:54.501489+0000 mgr.a (mgr.14120) 4 : cephadm [INF] [15/Apr/2024:21:18:54] ENGINE Bus STARTING 2024-04-15T21:18:55.364 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:55 smithi132 bash[21536]: cephadm 2024-04-15T21:18:54.603407+0000 mgr.a (mgr.14120) 5 : cephadm [INF] [15/Apr/2024:21:18:54] ENGINE Serving on http://172.21.15.132:8765 2024-04-15T21:18:55.365 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:55 smithi132 bash[21536]: cephadm 2024-04-15T21:18:54.721589+0000 mgr.a (mgr.14120) 6 : cephadm [INF] [15/Apr/2024:21:18:54] ENGINE Serving on https://172.21.15.132:7150 2024-04-15T21:18:55.365 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:55 smithi132 bash[21536]: cephadm 2024-04-15T21:18:54.721884+0000 mgr.a (mgr.14120) 7 : cephadm [INF] [15/Apr/2024:21:18:54] ENGINE Bus STARTED 2024-04-15T21:18:55.365 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:55 smithi132 bash[21536]: audit 2024-04-15T21:18:54.755544+0000 mon.a (mon.0) 58 : audit [DBG] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:18:56.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:56 smithi132 bash[21536]: cluster 2024-04-15T21:18:55.082315+0000 mon.a (mon.0) 59 : cluster [DBG] mgrmap e8: a(active, since 2s) 2024-04-15T21:18:56.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:56 smithi132 bash[21536]: audit 2024-04-15T21:18:55.988206+0000 mon.a (mon.0) 60 : audit [INF] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' 2024-04-15T21:18:56.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:56 smithi132 bash[21536]: audit 2024-04-15T21:18:56.024577+0000 mon.a (mon.0) 61 : audit [DBG] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:18:57.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:57 smithi132 bash[21536]: audit 2024-04-15T21:18:55.979951+0000 mgr.a (mgr.14120) 8 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:18:58.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:18:58 smithi132 bash[21536]: audit 2024-04-15T21:18:57.795280+0000 mgr.a (mgr.14120) 9 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:18:58.378 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout value unchanged 2024-04-15T21:18:58.378 INFO:teuthology.orchestra.run.smithi132.stdout:Generating ssh key... 2024-04-15T21:19:00.264 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:00 smithi132 bash[21536]: audit 2024-04-15T21:18:59.645661+0000 mgr.a (mgr.14120) 10 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:19:00.265 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:00 smithi132 bash[21536]: cephadm 2024-04-15T21:18:59.645901+0000 mgr.a (mgr.14120) 11 : cephadm [INF] Generating ssh key... 2024-04-15T21:19:00.265 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:00 smithi132 bash[21820]: Generating public/private rsa key pair. 2024-04-15T21:19:00.265 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:00 smithi132 bash[21820]: Your identification has been saved in /tmp/tmputcpya0s/key. 2024-04-15T21:19:00.265 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:00 smithi132 bash[21820]: Your public key has been saved in /tmp/tmputcpya0s/key.pub. 2024-04-15T21:19:00.265 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:00 smithi132 bash[21820]: The key fingerprint is: 2024-04-15T21:19:00.265 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:00 smithi132 bash[21820]: SHA256:LO1xZfvGB6fe19UbXmjiEUg2sPS665BaGCOVlj4XXRA ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:19:00.265 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:00 smithi132 bash[21820]: The key's randomart image is: 2024-04-15T21:19:00.265 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:00 smithi132 bash[21820]: +---[RSA 3072]----+ 2024-04-15T21:19:00.266 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:00 smithi132 bash[21820]: | E+. | 2024-04-15T21:19:00.266 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:00 smithi132 bash[21820]: | o o ++ | 2024-04-15T21:19:00.266 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:00 smithi132 bash[21820]: | = . oo.oo | 2024-04-15T21:19:00.266 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:00 smithi132 bash[21820]: | + + ..o.. | 2024-04-15T21:19:00.266 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:00 smithi132 bash[21820]: | . = o S . ....o| 2024-04-15T21:19:00.266 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:00 smithi132 bash[21820]: | . * + + ooo=+| 2024-04-15T21:19:00.266 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:00 smithi132 bash[21820]: | . + o . +* B| 2024-04-15T21:19:00.266 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:00 smithi132 bash[21820]: | o . . .o =o| 2024-04-15T21:19:00.266 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:00 smithi132 bash[21820]: | . .o . o| 2024-04-15T21:19:00.266 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:00 smithi132 bash[21820]: +----[SHA256]-----+ 2024-04-15T21:19:01.338 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:01 smithi132 bash[21536]: audit 2024-04-15T21:19:00.044028+0000 mon.a (mon.0) 62 : audit [INF] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' 2024-04-15T21:19:01.339 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:01 smithi132 bash[21536]: audit 2024-04-15T21:19:00.048925+0000 mon.a (mon.0) 63 : audit [INF] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' 2024-04-15T21:19:02.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:02 smithi132 bash[21536]: audit 2024-04-15T21:19:01.927312+0000 mgr.a (mgr.14120) 12 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:19:02.514 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDhIDY3UtoM5Cy0l0r0gQggUlz7D50c3N7BCjMo2oA0kQdCTTDrIX6UXKC5/tPFyutC2FkeHX+AxtsAVMSNtZZw6r0u/UBWO644k+9gfdFr6LgzmR6S58C1G+0IeY92a15nLvZ5ta64YP4RJ0FYvh638DjGoEONEwEO/O0f4EJBYwAtBfUmfldRURD4gyrQcMUgm6wCXrDFK09rg5gtE7PgaiMwUvBppkD0cNGuQ3blsbE9s+7OR75Fvy+s9JDxeMV2FVkkugUL4FL7zxCB49A3hS8bq/0p/lBdw6wuxxiXjvupyDOEvZ4Ag/q8I/Sf3ww8hCKKCmLWJXjjkqvH0A7Zsl8MIJvqJ5TIBBgB3dpVdEZx9a8ztnxegFcD4YHBhSe7PKn8UyQ/2/2jBc9c13ExRFDXoq+bHs5beVnMhzlxc52wx5oOcqhg6QSYJpATtKNa3Sg48ZOggDS8aogbrWqmxb9GEGbHp/+6KkRTAOWYw9LaZ7MhyBEa8A5BkY/jGSU= ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:19:02.514 INFO:teuthology.orchestra.run.smithi132.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-04-15T21:19:02.514 INFO:teuthology.orchestra.run.smithi132.stdout:Adding key to root@localhost authorized_keys... 2024-04-15T21:19:02.514 INFO:teuthology.orchestra.run.smithi132.stdout:Adding host smithi132... 2024-04-15T21:19:04.029 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:04 smithi132 bash[21536]: audit 2024-04-15T21:19:03.756661+0000 mgr.a (mgr.14120) 13 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi132", "addr": "172.21.15.132", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:19:05.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:05 smithi132 bash[21536]: cephadm 2024-04-15T21:19:04.290524+0000 mgr.a (mgr.14120) 14 : cephadm [INF] Deploying cephadm binary to smithi132 2024-04-15T21:19:09.953 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout Added host 'smithi132' with addr '172.21.15.132' 2024-04-15T21:19:09.953 INFO:teuthology.orchestra.run.smithi132.stdout:Deploying unmanaged mon service... 2024-04-15T21:19:10.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:10 smithi132 bash[21536]: audit 2024-04-15T21:19:09.140054+0000 mon.a (mon.0) 64 : audit [INF] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' 2024-04-15T21:19:10.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:10 smithi132 bash[21536]: cephadm 2024-04-15T21:19:09.140496+0000 mgr.a (mgr.14120) 15 : cephadm [INF] Added host smithi132 2024-04-15T21:19:10.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:10 smithi132 bash[21536]: audit 2024-04-15T21:19:09.165040+0000 mon.a (mon.0) 65 : audit [DBG] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:19:12.473 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-04-15T21:19:12.473 INFO:teuthology.orchestra.run.smithi132.stdout:Deploying unmanaged mgr service... 2024-04-15T21:19:13.154 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:12 smithi132 bash[21536]: audit 2024-04-15T21:19:11.891074+0000 mgr.a (mgr.14120) 16 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:19:13.155 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:12 smithi132 bash[21536]: cephadm 2024-04-15T21:19:11.894420+0000 mgr.a (mgr.14120) 17 : cephadm [INF] Saving service mon spec with placement count:5 2024-04-15T21:19:13.155 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:12 smithi132 bash[21536]: audit 2024-04-15T21:19:11.897533+0000 mon.a (mon.0) 66 : audit [INF] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' 2024-04-15T21:19:13.155 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:12 smithi132 bash[21536]: audit 2024-04-15T21:19:12.039627+0000 mon.a (mon.0) 67 : audit [INF] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' 2024-04-15T21:19:13.155 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:12 smithi132 bash[21536]: audit 2024-04-15T21:19:12.518551+0000 mon.a (mon.0) 68 : audit [INF] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' 2024-04-15T21:19:14.355 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-04-15T21:19:14.991 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:14 smithi132 bash[21536]: cluster 2024-04-15T21:19:13.019165+0000 mgr.a (mgr.14120) 18 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:19:14.991 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:14 smithi132 bash[21536]: audit 2024-04-15T21:19:13.733174+0000 mgr.a (mgr.14120) 19 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:19:14.991 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:14 smithi132 bash[21536]: cephadm 2024-04-15T21:19:13.735799+0000 mgr.a (mgr.14120) 20 : cephadm [INF] Saving service mgr spec with placement count:2 2024-04-15T21:19:14.991 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:14 smithi132 bash[21536]: audit 2024-04-15T21:19:13.740568+0000 mon.a (mon.0) 69 : audit [INF] from='mgr.14120 172.21.15.132:0/3864975871' entity='mgr.a' 2024-04-15T21:19:16.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:16 smithi132 bash[21536]: cluster 2024-04-15T21:19:15.019496+0000 mgr.a (mgr.14120) 21 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:19:16.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:16 smithi132 bash[21536]: audit 2024-04-15T21:19:15.541720+0000 mon.a (mon.0) 70 : audit [INF] from='client.? 172.21.15.132:0/2083102017' entity='client.admin' 2024-04-15T21:19:17.846 INFO:teuthology.orchestra.run.smithi132.stdout:Enabling the dashboard module... 2024-04-15T21:19:18.519 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:18 smithi132 bash[21536]: cluster 2024-04-15T21:19:17.019875+0000 mgr.a (mgr.14120) 22 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:19:18.519 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:18 smithi132 bash[21536]: audit 2024-04-15T21:19:17.266853+0000 mon.a (mon.0) 71 : audit [INF] from='client.? 172.21.15.132:0/146663277' entity='client.admin' 2024-04-15T21:19:19.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:19 smithi132 bash[21536]: audit 2024-04-15T21:19:19.177505+0000 mon.a (mon.0) 72 : audit [INF] from='client.? 172.21.15.132:0/2647658938' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-04-15T21:19:19.626 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:19 smithi132 bash[21820]: ignoring --setuser ceph since I am not root 2024-04-15T21:19:19.626 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:19 smithi132 bash[21820]: ignoring --setgroup ceph since I am not root 2024-04-15T21:19:19.626 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:19 smithi132 bash[21820]: debug 2024-04-15T21:19:19.474+0000 7f05f4b5f200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-15T21:19:20.574 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:20 smithi132 bash[21536]: audit 2024-04-15T21:19:19.272006+0000 mon.a (mon.0) 73 : audit [INF] from='client.? 172.21.15.132:0/2647658938' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-04-15T21:19:20.574 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:20 smithi132 bash[21536]: cluster 2024-04-15T21:19:19.277291+0000 mon.a (mon.0) 74 : cluster [DBG] mgrmap e9: a(active, since 26s) 2024-04-15T21:19:21.376 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:21 smithi132 bash[21820]: debug 2024-04-15T21:19:21.082+0000 7f05f4b5f200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-15T21:19:21.376 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:21 smithi132 bash[21820]: debug 2024-04-15T21:19:21.178+0000 7f05f4b5f200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-15T21:19:21.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:21 smithi132 bash[21536]: audit 2024-04-15T21:19:21.258103+0000 mon.a (mon.0) 75 : audit [DBG] from='client.? 172.21.15.132:0/3012890316' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-15T21:19:21.864 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout { 2024-04-15T21:19:21.864 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-04-15T21:19:21.864 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-15T21:19:21.864 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-04-15T21:19:21.864 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-04-15T21:19:21.864 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout } 2024-04-15T21:19:21.865 INFO:teuthology.orchestra.run.smithi132.stdout:Waiting for the mgr to restart... 2024-04-15T21:19:21.865 INFO:teuthology.orchestra.run.smithi132.stdout:Waiting for mgr epoch 9... 2024-04-15T21:19:21.875 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:21 smithi132 bash[21820]: debug 2024-04-15T21:19:21.434+0000 7f05f4b5f200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-15T21:19:22.518 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:22 smithi132 bash[21820]: debug 2024-04-15T21:19:22.242+0000 7f05f4b5f200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-15T21:19:22.518 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:22 smithi132 bash[21820]: debug 2024-04-15T21:19:22.354+0000 7f05f4b5f200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-15T21:19:22.518 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:22 smithi132 bash[21820]: debug 2024-04-15T21:19:22.462+0000 7f05f4b5f200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-15T21:19:23.126 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:22 smithi132 bash[21820]: debug 2024-04-15T21:19:22.822+0000 7f05f4b5f200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-15T21:19:23.126 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:22 smithi132 bash[21820]: debug 2024-04-15T21:19:22.938+0000 7f05f4b5f200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-15T21:19:23.126 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:23 smithi132 bash[21820]: debug 2024-04-15T21:19:23.042+0000 7f05f4b5f200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-15T21:19:23.675 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:23 smithi132 bash[21820]: debug 2024-04-15T21:19:23.406+0000 7f05f4b5f200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-15T21:19:23.940 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:23 smithi132 bash[21820]: debug 2024-04-15T21:19:23.674+0000 7f05f4b5f200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-15T21:19:24.336 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:23 smithi132 bash[21820]: debug 2024-04-15T21:19:23.938+0000 7f05f4b5f200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-15T21:19:24.336 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:24 smithi132 bash[21820]: debug 2024-04-15T21:19:24.050+0000 7f05f4b5f200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-15T21:19:25.126 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:24 smithi132 bash[21820]: debug 2024-04-15T21:19:24.334+0000 7f05f4b5f200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-15T21:19:25.126 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:24 smithi132 bash[21820]: debug 2024-04-15T21:19:24.766+0000 7f05f4b5f200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-15T21:19:25.126 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:25 smithi132 bash[21820]: debug 2024-04-15T21:19:25.006+0000 7f05f4b5f200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-15T21:19:25.626 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:25 smithi132 bash[21820]: debug 2024-04-15T21:19:25.126+0000 7f05f4b5f200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-15T21:19:25.626 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:25 smithi132 bash[21820]: debug 2024-04-15T21:19:25.374+0000 7f05f4b5f200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-15T21:19:26.805 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:26 smithi132 bash[21820]: debug 2024-04-15T21:19:26.390+0000 7f05f4b5f200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-15T21:19:26.805 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:26 smithi132 bash[21820]: debug 2024-04-15T21:19:26.506+0000 7f05f4b5f200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-15T21:19:27.126 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:26 smithi132 bash[21820]: debug 2024-04-15T21:19:26.801+0000 7f05f4b5f200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-15T21:19:27.126 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:26 smithi132 bash[21820]: debug 2024-04-15T21:19:26.917+0000 7f05f4b5f200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-15T21:19:27.626 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:27 smithi132 bash[21820]: debug 2024-04-15T21:19:27.369+0000 7f05f4b5f200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-15T21:19:27.626 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:27 smithi132 bash[21820]: debug 2024-04-15T21:19:27.493+0000 7f05f4b5f200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-15T21:19:27.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:27 smithi132 bash[21536]: cluster 2024-04-15T21:19:27.520062+0000 mon.a (mon.0) 76 : cluster [INF] Active manager daemon a restarted 2024-04-15T21:19:27.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:27 smithi132 bash[21536]: cluster 2024-04-15T21:19:27.520539+0000 mon.a (mon.0) 77 : cluster [INF] Activating manager daemon a 2024-04-15T21:19:27.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:27 smithi132 bash[21536]: cluster 2024-04-15T21:19:27.528448+0000 mon.a (mon.0) 78 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-04-15T21:19:27.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:27 smithi132 bash[21536]: cluster 2024-04-15T21:19:27.528706+0000 mon.a (mon.0) 79 : cluster [DBG] mgrmap e10: a(active, starting, since 0.00836623s) 2024-04-15T21:19:27.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:27 smithi132 bash[21536]: audit 2024-04-15T21:19:27.530159+0000 mon.a (mon.0) 80 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:19:27.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:27 smithi132 bash[21536]: audit 2024-04-15T21:19:27.532407+0000 mon.a (mon.0) 81 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-04-15T21:19:27.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:27 smithi132 bash[21536]: audit 2024-04-15T21:19:27.533626+0000 mon.a (mon.0) 82 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-15T21:19:27.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:27 smithi132 bash[21536]: audit 2024-04-15T21:19:27.533814+0000 mon.a (mon.0) 83 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-15T21:19:27.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:27 smithi132 bash[21536]: audit 2024-04-15T21:19:27.533929+0000 mon.a (mon.0) 84 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-15T21:19:27.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:27 smithi132 bash[21536]: cluster 2024-04-15T21:19:27.563539+0000 mon.a (mon.0) 85 : cluster [INF] Manager daemon a is now available 2024-04-15T21:19:28.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:28 smithi132 bash[21536]: audit 2024-04-15T21:19:27.588139+0000 mon.a (mon.0) 86 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:28.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:28 smithi132 bash[21536]: audit 2024-04-15T21:19:27.591518+0000 mon.a (mon.0) 87 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:19:28.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:28 smithi132 bash[21536]: audit 2024-04-15T21:19:27.611491+0000 mon.a (mon.0) 88 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-04-15T21:19:28.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:28 smithi132 bash[21536]: audit 2024-04-15T21:19:27.617313+0000 mon.a (mon.0) 89 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-04-15T21:19:28.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:28 smithi132 bash[21536]: cephadm 2024-04-15T21:19:27.846548+0000 mgr.a (mgr.14152) 1 : cephadm [INF] [15/Apr/2024:21:19:27] ENGINE Bus STARTING 2024-04-15T21:19:28.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:28 smithi132 bash[21536]: cephadm 2024-04-15T21:19:27.964233+0000 mgr.a (mgr.14152) 2 : cephadm [INF] [15/Apr/2024:21:19:27] ENGINE Serving on https://172.21.15.132:7150 2024-04-15T21:19:28.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:28 smithi132 bash[21536]: cephadm 2024-04-15T21:19:28.065790+0000 mgr.a (mgr.14152) 3 : cephadm [INF] [15/Apr/2024:21:19:28] ENGINE Serving on http://172.21.15.132:8765 2024-04-15T21:19:28.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:28 smithi132 bash[21536]: cephadm 2024-04-15T21:19:28.066021+0000 mgr.a (mgr.14152) 4 : cephadm [INF] [15/Apr/2024:21:19:28] ENGINE Bus STARTED 2024-04-15T21:19:28.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:28 smithi132 bash[21536]: cluster 2024-04-15T21:19:28.533700+0000 mon.a (mon.0) 90 : cluster [DBG] mgrmap e11: a(active, since 1.01336s) 2024-04-15T21:19:29.180 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout { 2024-04-15T21:19:29.181 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-04-15T21:19:29.181 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout "initialized": true 2024-04-15T21:19:29.181 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout } 2024-04-15T21:19:29.181 INFO:teuthology.orchestra.run.smithi132.stdout:mgr epoch 9 is available 2024-04-15T21:19:29.181 INFO:teuthology.orchestra.run.smithi132.stdout:Generating a dashboard self-signed certificate... 2024-04-15T21:19:29.843 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:29 smithi132 bash[21536]: audit 2024-04-15T21:19:28.532433+0000 mgr.a (mgr.14152) 5 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-04-15T21:19:29.843 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:29 smithi132 bash[21536]: audit 2024-04-15T21:19:28.545372+0000 mgr.a (mgr.14152) 6 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-04-15T21:19:30.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:30 smithi132 bash[21536]: cluster 2024-04-15T21:19:29.593694+0000 mon.a (mon.0) 91 : cluster [DBG] mgrmap e12: a(active, since 2s) 2024-04-15T21:19:30.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:30 smithi132 bash[21536]: audit 2024-04-15T21:19:30.549375+0000 mon.a (mon.0) 92 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:30.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:30 smithi132 bash[21536]: audit 2024-04-15T21:19:30.552583+0000 mon.a (mon.0) 93 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:31.101 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-04-15T21:19:31.101 INFO:teuthology.orchestra.run.smithi132.stdout:Creating initial admin user... 2024-04-15T21:19:31.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:31 smithi132 bash[21536]: audit 2024-04-15T21:19:30.408413+0000 mgr.a (mgr.14152) 7 : audit [DBG] from='client.14164 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:19:32.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:32 smithi132 bash[21536]: audit 2024-04-15T21:19:32.331679+0000 mgr.a (mgr.14152) 8 : audit [DBG] from='client.14166 -' 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-04-15T21:19:32.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:32 smithi132 bash[21536]: audit 2024-04-15T21:19:32.587462+0000 mon.a (mon.0) 94 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:33.173 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$Rg2JUrE1WUSCan60faTt7uOupWIS8IOKVplO07xx4pr9H1CWWXcva", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1713215972, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-04-15T21:19:33.173 INFO:teuthology.orchestra.run.smithi132.stdout:Fetching dashboard port number... 2024-04-15T21:19:34.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:34 smithi132 bash[21536]: cluster 2024-04-15T21:19:33.604540+0000 mon.a (mon.0) 95 : cluster [DBG] mgrmap e13: a(active, since 6s) 2024-04-15T21:19:34.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:34 smithi132 bash[21536]: audit 2024-04-15T21:19:34.354104+0000 mon.a (mon.0) 96 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:34.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:34 smithi132 bash[21536]: audit 2024-04-15T21:19:34.354884+0000 mon.a (mon.0) 97 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi132", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:19:34.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:34 smithi132 bash[21536]: audit 2024-04-15T21:19:34.359493+0000 mon.a (mon.0) 98 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:34.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:34 smithi132 bash[21536]: audit 2024-04-15T21:19:34.361453+0000 mon.a (mon.0) 99 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi132", "caps": []}]: dispatch 2024-04-15T21:19:34.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:34 smithi132 bash[21536]: audit 2024-04-15T21:19:34.362894+0000 mon.a (mon.0) 100 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi132", "caps": []}]': finished 2024-04-15T21:19:34.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:34 smithi132 bash[21536]: audit 2024-04-15T21:19:34.407790+0000 mon.a (mon.0) 101 : audit [DBG] from='client.? 172.21.15.132:0/4188469778' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-04-15T21:19:34.970 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stdout 8443 2024-04-15T21:19:34.970 INFO:teuthology.orchestra.run.smithi132.stdout:firewalld does not appear to be present 2024-04-15T21:19:34.970 INFO:teuthology.orchestra.run.smithi132.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-04-15T21:19:34.971 INFO:teuthology.orchestra.run.smithi132.stdout:Ceph Dashboard is now available at: 2024-04-15T21:19:34.972 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:19:34.972 INFO:teuthology.orchestra.run.smithi132.stdout: URL: https://smithi132.front.sepia.ceph.com:8443/ 2024-04-15T21:19:34.972 INFO:teuthology.orchestra.run.smithi132.stdout: User: admin 2024-04-15T21:19:34.972 INFO:teuthology.orchestra.run.smithi132.stdout: Password: a7eyxufjwl 2024-04-15T21:19:34.972 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:19:34.972 INFO:teuthology.orchestra.run.smithi132.stdout:Saving cluster configuration to /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config directory 2024-04-15T21:19:34.972 INFO:teuthology.orchestra.run.smithi132.stdout:Enabling autotune for osd_memory_target 2024-04-15T21:19:35.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:35 smithi132 bash[21536]: cephadm 2024-04-15T21:19:35.330894+0000 mgr.a (mgr.14152) 9 : cephadm [INF] Deploying daemon agent.smithi132 on smithi132 2024-04-15T21:19:38.681 INFO:teuthology.orchestra.run.smithi132.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-04-15T21:19:38.681 INFO:teuthology.orchestra.run.smithi132.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-04-15T21:19:38.682 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:19:38.682 INFO:teuthology.orchestra.run.smithi132.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-04-15T21:19:38.682 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:19:38.682 INFO:teuthology.orchestra.run.smithi132.stdout:Or, if you are only running a single cluster on this host: 2024-04-15T21:19:38.682 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:19:38.682 INFO:teuthology.orchestra.run.smithi132.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-04-15T21:19:38.682 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:19:38.682 INFO:teuthology.orchestra.run.smithi132.stdout:Please consider enabling telemetry to help improve Ceph: 2024-04-15T21:19:38.682 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:19:38.682 INFO:teuthology.orchestra.run.smithi132.stdout: ceph telemetry on 2024-04-15T21:19:38.682 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:19:38.682 INFO:teuthology.orchestra.run.smithi132.stdout:For more information see: 2024-04-15T21:19:38.682 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:19:38.682 INFO:teuthology.orchestra.run.smithi132.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-04-15T21:19:38.682 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:19:38.683 INFO:teuthology.orchestra.run.smithi132.stdout:Bootstrap complete. 2024-04-15T21:19:38.741 INFO:tasks.cephadm:Fetching config... 2024-04-15T21:19:38.742 DEBUG:teuthology.orchestra.run.smithi132:> set -ex 2024-04-15T21:19:38.742 DEBUG:teuthology.orchestra.run.smithi132:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-04-15T21:19:38.748 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-04-15T21:19:38.748 DEBUG:teuthology.orchestra.run.smithi132:> set -ex 2024-04-15T21:19:38.748 DEBUG:teuthology.orchestra.run.smithi132:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-04-15T21:19:38.795 INFO:tasks.cephadm:Fetching mon keyring... 2024-04-15T21:19:38.795 DEBUG:teuthology.orchestra.run.smithi132:> set -ex 2024-04-15T21:19:38.795 DEBUG:teuthology.orchestra.run.smithi132:> sudo dd if=/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/keyring of=/dev/stdout 2024-04-15T21:19:38.850 INFO:tasks.cephadm:Fetching pub ssh key... 2024-04-15T21:19:38.851 DEBUG:teuthology.orchestra.run.smithi132:> set -ex 2024-04-15T21:19:38.851 DEBUG:teuthology.orchestra.run.smithi132:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-04-15T21:19:38.898 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-04-15T21:19:38.898 DEBUG:teuthology.orchestra.run.smithi132:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDhIDY3UtoM5Cy0l0r0gQggUlz7D50c3N7BCjMo2oA0kQdCTTDrIX6UXKC5/tPFyutC2FkeHX+AxtsAVMSNtZZw6r0u/UBWO644k+9gfdFr6LgzmR6S58C1G+0IeY92a15nLvZ5ta64YP4RJ0FYvh638DjGoEONEwEO/O0f4EJBYwAtBfUmfldRURD4gyrQcMUgm6wCXrDFK09rg5gtE7PgaiMwUvBppkD0cNGuQ3blsbE9s+7OR75Fvy+s9JDxeMV2FVkkugUL4FL7zxCB49A3hS8bq/0p/lBdw6wuxxiXjvupyDOEvZ4Ag/q8I/Sf3ww8hCKKCmLWJXjjkqvH0A7Zsl8MIJvqJ5TIBBgB3dpVdEZx9a8ztnxegFcD4YHBhSe7PKn8UyQ/2/2jBc9c13ExRFDXoq+bHs5beVnMhzlxc52wx5oOcqhg6QSYJpATtKNa3Sg48ZOggDS8aogbrWqmxb9GEGbHp/+6KkRTAOWYw9LaZ7MhyBEa8A5BkY/jGSU= ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-15T21:19:38.960 INFO:teuthology.orchestra.run.smithi132.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDhIDY3UtoM5Cy0l0r0gQggUlz7D50c3N7BCjMo2oA0kQdCTTDrIX6UXKC5/tPFyutC2FkeHX+AxtsAVMSNtZZw6r0u/UBWO644k+9gfdFr6LgzmR6S58C1G+0IeY92a15nLvZ5ta64YP4RJ0FYvh638DjGoEONEwEO/O0f4EJBYwAtBfUmfldRURD4gyrQcMUgm6wCXrDFK09rg5gtE7PgaiMwUvBppkD0cNGuQ3blsbE9s+7OR75Fvy+s9JDxeMV2FVkkugUL4FL7zxCB49A3hS8bq/0p/lBdw6wuxxiXjvupyDOEvZ4Ag/q8I/Sf3ww8hCKKCmLWJXjjkqvH0A7Zsl8MIJvqJ5TIBBgB3dpVdEZx9a8ztnxegFcD4YHBhSe7PKn8UyQ/2/2jBc9c13ExRFDXoq+bHs5beVnMhzlxc52wx5oOcqhg6QSYJpATtKNa3Sg48ZOggDS8aogbrWqmxb9GEGbHp/+6KkRTAOWYw9LaZ7MhyBEa8A5BkY/jGSU= ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:19:38.966 DEBUG:teuthology.orchestra.run.smithi133:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDhIDY3UtoM5Cy0l0r0gQggUlz7D50c3N7BCjMo2oA0kQdCTTDrIX6UXKC5/tPFyutC2FkeHX+AxtsAVMSNtZZw6r0u/UBWO644k+9gfdFr6LgzmR6S58C1G+0IeY92a15nLvZ5ta64YP4RJ0FYvh638DjGoEONEwEO/O0f4EJBYwAtBfUmfldRURD4gyrQcMUgm6wCXrDFK09rg5gtE7PgaiMwUvBppkD0cNGuQ3blsbE9s+7OR75Fvy+s9JDxeMV2FVkkugUL4FL7zxCB49A3hS8bq/0p/lBdw6wuxxiXjvupyDOEvZ4Ag/q8I/Sf3ww8hCKKCmLWJXjjkqvH0A7Zsl8MIJvqJ5TIBBgB3dpVdEZx9a8ztnxegFcD4YHBhSe7PKn8UyQ/2/2jBc9c13ExRFDXoq+bHs5beVnMhzlxc52wx5oOcqhg6QSYJpATtKNa3Sg48ZOggDS8aogbrWqmxb9GEGbHp/+6KkRTAOWYw9LaZ7MhyBEa8A5BkY/jGSU= ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-15T21:19:38.992 INFO:teuthology.orchestra.run.smithi133.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDhIDY3UtoM5Cy0l0r0gQggUlz7D50c3N7BCjMo2oA0kQdCTTDrIX6UXKC5/tPFyutC2FkeHX+AxtsAVMSNtZZw6r0u/UBWO644k+9gfdFr6LgzmR6S58C1G+0IeY92a15nLvZ5ta64YP4RJ0FYvh638DjGoEONEwEO/O0f4EJBYwAtBfUmfldRURD4gyrQcMUgm6wCXrDFK09rg5gtE7PgaiMwUvBppkD0cNGuQ3blsbE9s+7OR75Fvy+s9JDxeMV2FVkkugUL4FL7zxCB49A3hS8bq/0p/lBdw6wuxxiXjvupyDOEvZ4Ag/q8I/Sf3ww8hCKKCmLWJXjjkqvH0A7Zsl8MIJvqJ5TIBBgB3dpVdEZx9a8ztnxegFcD4YHBhSe7PKn8UyQ/2/2jBc9c13ExRFDXoq+bHs5beVnMhzlxc52wx5oOcqhg6QSYJpATtKNa3Sg48ZOggDS8aogbrWqmxb9GEGbHp/+6KkRTAOWYw9LaZ7MhyBEa8A5BkY/jGSU= ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:19:39.001 DEBUG:teuthology.orchestra.run.smithi187:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDhIDY3UtoM5Cy0l0r0gQggUlz7D50c3N7BCjMo2oA0kQdCTTDrIX6UXKC5/tPFyutC2FkeHX+AxtsAVMSNtZZw6r0u/UBWO644k+9gfdFr6LgzmR6S58C1G+0IeY92a15nLvZ5ta64YP4RJ0FYvh638DjGoEONEwEO/O0f4EJBYwAtBfUmfldRURD4gyrQcMUgm6wCXrDFK09rg5gtE7PgaiMwUvBppkD0cNGuQ3blsbE9s+7OR75Fvy+s9JDxeMV2FVkkugUL4FL7zxCB49A3hS8bq/0p/lBdw6wuxxiXjvupyDOEvZ4Ag/q8I/Sf3ww8hCKKCmLWJXjjkqvH0A7Zsl8MIJvqJ5TIBBgB3dpVdEZx9a8ztnxegFcD4YHBhSe7PKn8UyQ/2/2jBc9c13ExRFDXoq+bHs5beVnMhzlxc52wx5oOcqhg6QSYJpATtKNa3Sg48ZOggDS8aogbrWqmxb9GEGbHp/+6KkRTAOWYw9LaZ7MhyBEa8A5BkY/jGSU= ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-15T21:19:39.024 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:38 smithi132 systemd[1]: /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-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-04-15T21:19:39.024 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:38 smithi132 systemd[1]: /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-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-04-15T21:19:39.024 INFO:teuthology.orchestra.run.smithi187.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDhIDY3UtoM5Cy0l0r0gQggUlz7D50c3N7BCjMo2oA0kQdCTTDrIX6UXKC5/tPFyutC2FkeHX+AxtsAVMSNtZZw6r0u/UBWO644k+9gfdFr6LgzmR6S58C1G+0IeY92a15nLvZ5ta64YP4RJ0FYvh638DjGoEONEwEO/O0f4EJBYwAtBfUmfldRURD4gyrQcMUgm6wCXrDFK09rg5gtE7PgaiMwUvBppkD0cNGuQ3blsbE9s+7OR75Fvy+s9JDxeMV2FVkkugUL4FL7zxCB49A3hS8bq/0p/lBdw6wuxxiXjvupyDOEvZ4Ag/q8I/Sf3ww8hCKKCmLWJXjjkqvH0A7Zsl8MIJvqJ5TIBBgB3dpVdEZx9a8ztnxegFcD4YHBhSe7PKn8UyQ/2/2jBc9c13ExRFDXoq+bHs5beVnMhzlxc52wx5oOcqhg6QSYJpATtKNa3Sg48ZOggDS8aogbrWqmxb9GEGbHp/+6KkRTAOWYw9LaZ7MhyBEa8A5BkY/jGSU= ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:19:39.033 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-04-15T21:19:39.376 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:19:39 smithi132 systemd[1]: /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-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-04-15T21:19:39.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:39 smithi132 bash[21536]: audit 2024-04-15T21:19:38.168728+0000 mon.a (mon.0) 102 : audit [INF] from='client.? 172.21.15.132:0/2323200406' entity='client.admin' 2024-04-15T21:19:39.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:39 smithi132 systemd[1]: /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-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-04-15T21:19:40.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:40 smithi132 bash[21536]: audit 2024-04-15T21:19:39.304429+0000 mon.a (mon.0) 103 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:40.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:40 smithi132 bash[21536]: audit 2024-04-15T21:19:39.358132+0000 mon.a (mon.0) 104 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:40.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:40 smithi132 bash[21536]: audit 2024-04-15T21:19:39.362781+0000 mon.a (mon.0) 105 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:40.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:40 smithi132 bash[21536]: audit 2024-04-15T21:19:39.396971+0000 mon.a (mon.0) 106 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:19:40.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:40 smithi132 bash[21536]: audit 2024-04-15T21:19:39.403229+0000 mon.a (mon.0) 107 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:40.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:40 smithi132 bash[21536]: audit 2024-04-15T21:19:39.407274+0000 mon.a (mon.0) 108 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:40.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:40 smithi132 bash[21536]: audit 2024-04-15T21:19:39.411099+0000 mon.a (mon.0) 109 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:40.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:40 smithi132 bash[21536]: audit 2024-04-15T21:19:39.414974+0000 mon.a (mon.0) 110 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:40.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:40 smithi132 bash[21536]: audit 2024-04-15T21:19:39.420296+0000 mon.a (mon.0) 111 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:40.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:40 smithi132 bash[21536]: audit 2024-04-15T21:19:39.454825+0000 mon.a (mon.0) 112 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:19:40.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:40 smithi132 bash[21536]: audit 2024-04-15T21:19:39.462169+0000 mon.a (mon.0) 113 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:40.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:40 smithi132 bash[21536]: audit 2024-04-15T21:19:39.742952+0000 mon.a (mon.0) 114 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:43.737 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:19:43.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:43 smithi132 bash[21536]: audit 2024-04-15T21:19:42.611548+0000 mon.a (mon.0) 115 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:45.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:45 smithi132 bash[21536]: audit 2024-04-15T21:19:44.110178+0000 mon.a (mon.0) 116 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:45.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:45 smithi132 bash[21536]: audit 2024-04-15T21:19:44.114037+0000 mon.a (mon.0) 117 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:47.272 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-04-15T21:19:47.272 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-04-15T21:19:48.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:47 smithi132 bash[21536]: audit 2024-04-15T21:19:46.647663+0000 mon.a (mon.0) 118 : audit [INF] from='client.? 172.21.15.132:0/518864752' entity='client.admin' 2024-04-15T21:19:48.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:47 smithi132 bash[21536]: audit 2024-04-15T21:19:46.712775+0000 mon.a (mon.0) 119 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:19:48.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:47 smithi132 bash[21536]: audit 2024-04-15T21:19:46.719202+0000 mon.a (mon.0) 120 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:48.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:48 smithi132 bash[21536]: cluster 2024-04-15T21:19:47.535426+0000 mgr.a (mgr.14152) 10 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:19:51.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:50 smithi132 bash[21536]: cluster 2024-04-15T21:19:49.535872+0000 mgr.a (mgr.14152) 11 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:19:51.843 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:19:52.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:52 smithi132 bash[21536]: cluster 2024-04-15T21:19:51.536232+0000 mgr.a (mgr.14152) 12 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:19:52.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:52 smithi132 bash[21536]: audit 2024-04-15T21:19:51.582635+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:52.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:52 smithi132 bash[21536]: audit 2024-04-15T21:19:51.589853+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:54.897 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi133 2024-04-15T21:19:54.897 DEBUG:teuthology.orchestra.run.smithi133:> set -ex 2024-04-15T21:19:54.897 DEBUG:teuthology.orchestra.run.smithi133:> dd of=/etc/ceph/ceph.conf 2024-04-15T21:19:54.903 DEBUG:teuthology.orchestra.run.smithi133:> set -ex 2024-04-15T21:19:54.904 DEBUG:teuthology.orchestra.run.smithi133:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:19:54.951 INFO:tasks.cephadm:Adding host smithi133 to orchestrator... 2024-04-15T21:19:54.951 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph orch host add smithi133 2024-04-15T21:19:55.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:55 smithi132 bash[21536]: cluster 2024-04-15T21:19:53.536563+0000 mgr.a (mgr.14152) 13 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:19:55.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:55 smithi132 bash[21536]: audit 2024-04-15T21:19:54.256894+0000 mgr.a (mgr.14152) 14 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:19:55.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:55 smithi132 bash[21536]: audit 2024-04-15T21:19:54.260188+0000 mon.a (mon.0) 123 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:55.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:55 smithi132 bash[21536]: audit 2024-04-15T21:19:54.268049+0000 mon.a (mon.0) 124 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:19:55.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:55 smithi132 bash[21536]: audit 2024-04-15T21:19:54.271073+0000 mon.a (mon.0) 125 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:19:55.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:55 smithi132 bash[21536]: audit 2024-04-15T21:19:54.272421+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:19:55.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:55 smithi132 bash[21536]: cephadm 2024-04-15T21:19:54.274418+0000 mgr.a (mgr.14152) 15 : cephadm [INF] Updating smithi132:/etc/ceph/ceph.conf 2024-04-15T21:19:55.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:55 smithi132 bash[21536]: audit 2024-04-15T21:19:54.735065+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:55.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:55 smithi132 bash[21536]: audit 2024-04-15T21:19:54.738941+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:55.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:55 smithi132 bash[21536]: audit 2024-04-15T21:19:54.741881+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:19:56.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:56 smithi132 bash[21536]: cephadm 2024-04-15T21:19:54.388894+0000 mgr.a (mgr.14152) 16 : cephadm [INF] Updating smithi132:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:19:56.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:56 smithi132 bash[21536]: cephadm 2024-04-15T21:19:54.502838+0000 mgr.a (mgr.14152) 17 : cephadm [INF] Updating smithi132:/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:19:56.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:56 smithi132 bash[21536]: cephadm 2024-04-15T21:19:54.616768+0000 mgr.a (mgr.14152) 18 : cephadm [INF] Updating smithi132:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T21:19:57.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:57 smithi132 bash[21536]: cluster 2024-04-15T21:19:55.536957+0000 mgr.a (mgr.14152) 19 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:19:59.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:19:59 smithi132 bash[21536]: cluster 2024-04-15T21:19:57.537420+0000 mgr.a (mgr.14152) 20 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:19:59.655 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:20:01.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:01 smithi132 bash[21536]: cluster 2024-04-15T21:19:59.537803+0000 mgr.a (mgr.14152) 21 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:03.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:03 smithi132 bash[21536]: cluster 2024-04-15T21:20:01.538098+0000 mgr.a (mgr.14152) 22 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:03.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:03 smithi132 bash[21536]: audit 2024-04-15T21:20:02.145320+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:03.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:03 smithi132 bash[21536]: audit 2024-04-15T21:20:02.149997+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:03.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:03 smithi132 bash[21536]: audit 2024-04-15T21:20:02.155748+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:05.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:05 smithi132 bash[21536]: audit 2024-04-15T21:20:03.381596+0000 mgr.a (mgr.14152) 23 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi133", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:20:05.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:05 smithi132 bash[21536]: cluster 2024-04-15T21:20:03.538460+0000 mgr.a (mgr.14152) 24 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:05.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:05 smithi132 bash[21536]: cephadm 2024-04-15T21:20:03.966325+0000 mgr.a (mgr.14152) 25 : cephadm [INF] Deploying cephadm binary to smithi133 2024-04-15T21:20:07.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:07 smithi132 bash[21536]: cluster 2024-04-15T21:20:05.538923+0000 mgr.a (mgr.14152) 26 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:09.054 INFO:teuthology.orchestra.run.smithi132.stdout:Added host 'smithi133' with addr '172.21.15.133' 2024-04-15T21:20:09.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:09 smithi132 bash[21536]: cluster 2024-04-15T21:20:07.539381+0000 mgr.a (mgr.14152) 27 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:09.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:09 smithi132 bash[21536]: audit 2024-04-15T21:20:09.054568+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:09.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:09 smithi132 bash[21536]: audit 2024-04-15T21:20:09.099844+0000 mon.a (mon.0) 134 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:20:09.739 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph orch host ls --format=json 2024-04-15T21:20:10.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:10 smithi132 bash[21536]: cephadm 2024-04-15T21:20:09.055545+0000 mgr.a (mgr.14152) 28 : cephadm [INF] Added host smithi133 2024-04-15T21:20:10.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:10 smithi132 bash[21536]: audit 2024-04-15T21:20:09.573381+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:11.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:11 smithi132 bash[21536]: cluster 2024-04-15T21:20:09.539812+0000 mgr.a (mgr.14152) 29 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:11.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:11 smithi132 bash[21536]: audit 2024-04-15T21:20:11.099929+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:11.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:11 smithi132 bash[21536]: audit 2024-04-15T21:20:11.106276+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:11.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:11 smithi132 bash[21536]: audit 2024-04-15T21:20:11.107730+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi133", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:20:11.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:11 smithi132 bash[21536]: audit 2024-04-15T21:20:11.109954+0000 mon.a (mon.0) 139 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:20:11.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:11 smithi132 bash[21536]: audit 2024-04-15T21:20:11.111843+0000 mon.a (mon.0) 140 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:20:12.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:12 smithi132 bash[21536]: cephadm 2024-04-15T21:20:11.114566+0000 mgr.a (mgr.14152) 30 : cephadm [INF] Updating smithi133:/etc/ceph/ceph.conf 2024-04-15T21:20:12.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:12 smithi132 bash[21536]: cephadm 2024-04-15T21:20:11.329875+0000 mgr.a (mgr.14152) 31 : cephadm [INF] Updating smithi133:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:20:12.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:12 smithi132 bash[21536]: audit 2024-04-15T21:20:11.829614+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:12.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:12 smithi132 bash[21536]: audit 2024-04-15T21:20:11.836172+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:12.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:12 smithi132 bash[21536]: audit 2024-04-15T21:20:11.839733+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi133", "caps": []}]: dispatch 2024-04-15T21:20:12.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:12 smithi132 bash[21536]: audit 2024-04-15T21:20:11.841742+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi133", "caps": []}]': finished 2024-04-15T21:20:13.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:13 smithi132 bash[21536]: cephadm 2024-04-15T21:20:11.494708+0000 mgr.a (mgr.14152) 32 : cephadm [INF] Updating smithi133:/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:20:13.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:13 smithi132 bash[21536]: cluster 2024-04-15T21:20:11.540196+0000 mgr.a (mgr.14152) 33 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:13.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:13 smithi132 bash[21536]: cephadm 2024-04-15T21:20:11.659491+0000 mgr.a (mgr.14152) 34 : cephadm [INF] Updating smithi133:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T21:20:14.453 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:20:14.472 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:14 smithi132 bash[21536]: cephadm 2024-04-15T21:20:12.385097+0000 mgr.a (mgr.14152) 35 : cephadm [INF] Deploying daemon agent.smithi133 on smithi133 2024-04-15T21:20:14.472 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:14 smithi132 bash[21536]: audit 2024-04-15T21:20:13.587089+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:14.473 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:14 smithi132 bash[21536]: audit 2024-04-15T21:20:13.613821+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:14.473 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:14 smithi132 bash[21536]: audit 2024-04-15T21:20:13.621026+0000 mon.a (mon.0) 147 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:14.473 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:14 smithi132 bash[21536]: audit 2024-04-15T21:20:13.688630+0000 mon.a (mon.0) 148 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:20:14.473 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:14 smithi132 bash[21536]: audit 2024-04-15T21:20:13.693058+0000 mon.a (mon.0) 149 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:20:14.473 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:14 smithi132 bash[21536]: audit 2024-04-15T21:20:13.694572+0000 mon.a (mon.0) 150 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:20:14.473 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:14 smithi132 bash[21536]: audit 2024-04-15T21:20:13.704450+0000 mon.a (mon.0) 151 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:14.473 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:14 smithi132 bash[21536]: audit 2024-04-15T21:20:13.775015+0000 mon.a (mon.0) 152 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:20:14.473 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:14 smithi132 bash[21536]: audit 2024-04-15T21:20:13.779124+0000 mon.a (mon.0) 153 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:20:14.473 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:14 smithi132 bash[21536]: audit 2024-04-15T21:20:13.780467+0000 mon.a (mon.0) 154 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:20:14.473 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:14 smithi132 bash[21536]: audit 2024-04-15T21:20:13.789728+0000 mon.a (mon.0) 155 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:14.473 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:14 smithi132 bash[21536]: audit 2024-04-15T21:20:14.067164+0000 mon.a (mon.0) 156 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:15.420 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:15 smithi132 bash[21536]: cluster 2024-04-15T21:20:13.540588+0000 mgr.a (mgr.14152) 36 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:15.420 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:15 smithi132 bash[21536]: audit 2024-04-15T21:20:15.142440+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:15.420 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:15 smithi132 bash[21536]: audit 2024-04-15T21:20:15.150332+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:17.119 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:20:17.119 INFO:teuthology.orchestra.run.smithi132.stdout:[{"addr": "172.21.15.132", "hostname": "smithi132", "labels": [], "status": ""}, {"addr": "172.21.15.133", "hostname": "smithi133", "labels": [], "status": ""}] 2024-04-15T21:20:17.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:17 smithi132 bash[21536]: cluster 2024-04-15T21:20:15.541024+0000 mgr.a (mgr.14152) 37 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:18.089 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi187 2024-04-15T21:20:18.089 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-04-15T21:20:18.089 DEBUG:teuthology.orchestra.run.smithi187:> dd of=/etc/ceph/ceph.conf 2024-04-15T21:20:18.096 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-04-15T21:20:18.096 DEBUG:teuthology.orchestra.run.smithi187:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:20:18.142 INFO:tasks.cephadm:Adding host smithi187 to orchestrator... 2024-04-15T21:20:18.143 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph orch host add smithi187 2024-04-15T21:20:18.346 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:18 smithi132 bash[21536]: audit 2024-04-15T21:20:17.121312+0000 mgr.a (mgr.14152) 38 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:20:18.347 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:18 smithi132 bash[21536]: audit 2024-04-15T21:20:17.622617+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:19.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:19 smithi132 bash[21536]: cluster 2024-04-15T21:20:17.541430+0000 mgr.a (mgr.14152) 39 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:21.564 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:21 smithi132 bash[21536]: cluster 2024-04-15T21:20:19.541812+0000 mgr.a (mgr.14152) 40 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:23.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:23 smithi132 bash[21536]: cluster 2024-04-15T21:20:21.542180+0000 mgr.a (mgr.14152) 41 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:23.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:23 smithi132 bash[21536]: audit 2024-04-15T21:20:22.327601+0000 mon.a (mon.0) 160 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:23.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:23 smithi132 bash[21536]: audit 2024-04-15T21:20:22.336485+0000 mon.a (mon.0) 161 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:23.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:23 smithi132 bash[21536]: audit 2024-04-15T21:20:22.344621+0000 mon.a (mon.0) 162 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:24.062 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:20:25.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:25 smithi132 bash[21536]: cluster 2024-04-15T21:20:23.542593+0000 mgr.a (mgr.14152) 42 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:27.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:27 smithi132 bash[21536]: cluster 2024-04-15T21:20:25.542904+0000 mgr.a (mgr.14152) 43 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:28.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:28 smithi132 bash[21536]: audit 2024-04-15T21:20:26.572995+0000 mgr.a (mgr.14152) 44 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi187", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:20:28.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:28 smithi132 bash[21536]: cephadm 2024-04-15T21:20:27.281744+0000 mgr.a (mgr.14152) 45 : cephadm [INF] Deploying cephadm binary to smithi187 2024-04-15T21:20:28.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:28 smithi132 bash[21536]: audit 2024-04-15T21:20:27.882720+0000 mon.a (mon.0) 163 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:28.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:28 smithi132 bash[21536]: audit 2024-04-15T21:20:27.891682+0000 mon.a (mon.0) 164 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:29.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:29 smithi132 bash[21536]: cluster 2024-04-15T21:20:27.543311+0000 mgr.a (mgr.14152) 46 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:31.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:31 smithi132 bash[21536]: cluster 2024-04-15T21:20:29.543838+0000 mgr.a (mgr.14152) 47 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:32.519 INFO:teuthology.orchestra.run.smithi132.stdout:Added host 'smithi187' with addr '172.21.15.187' 2024-04-15T21:20:33.223 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph orch host ls --format=json 2024-04-15T21:20:33.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:33 smithi132 bash[21536]: cluster 2024-04-15T21:20:31.544324+0000 mgr.a (mgr.14152) 48 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:33.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:33 smithi132 bash[21536]: audit 2024-04-15T21:20:32.520132+0000 mon.a (mon.0) 165 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:33.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:33 smithi132 bash[21536]: audit 2024-04-15T21:20:32.565768+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:20:33.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:33 smithi132 bash[21536]: audit 2024-04-15T21:20:33.037728+0000 mon.a (mon.0) 167 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:34.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:34 smithi132 bash[21536]: cephadm 2024-04-15T21:20:32.520992+0000 mgr.a (mgr.14152) 49 : cephadm [INF] Added host smithi187 2024-04-15T21:20:35.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:35 smithi132 bash[21536]: cluster 2024-04-15T21:20:33.544883+0000 mgr.a (mgr.14152) 50 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:35.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:35 smithi132 bash[21536]: audit 2024-04-15T21:20:34.564913+0000 mon.a (mon.0) 168 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:35.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:35 smithi132 bash[21536]: audit 2024-04-15T21:20:34.570902+0000 mon.a (mon.0) 169 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:35.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:35 smithi132 bash[21536]: audit 2024-04-15T21:20:34.572512+0000 mon.a (mon.0) 170 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi187", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:20:35.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:35 smithi132 bash[21536]: audit 2024-04-15T21:20:34.574961+0000 mon.a (mon.0) 171 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:20:35.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:35 smithi132 bash[21536]: audit 2024-04-15T21:20:34.576995+0000 mon.a (mon.0) 172 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:20:35.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:35 smithi132 bash[21536]: audit 2024-04-15T21:20:34.695086+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:35.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:35 smithi132 bash[21536]: audit 2024-04-15T21:20:34.701103+0000 mon.a (mon.0) 174 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:35.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:35 smithi132 bash[21536]: audit 2024-04-15T21:20:34.710941+0000 mon.a (mon.0) 175 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:36.588 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:36 smithi132 bash[21536]: cephadm 2024-04-15T21:20:34.580009+0000 mgr.a (mgr.14152) 51 : cephadm [INF] Updating smithi187:/etc/ceph/ceph.conf 2024-04-15T21:20:36.588 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:36 smithi132 bash[21536]: cephadm 2024-04-15T21:20:34.796756+0000 mgr.a (mgr.14152) 52 : cephadm [INF] Updating smithi187:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:20:36.588 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:36 smithi132 bash[21536]: cephadm 2024-04-15T21:20:35.278111+0000 mgr.a (mgr.14152) 53 : cephadm [INF] Updating smithi187:/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:20:36.588 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:36 smithi132 bash[21536]: audit 2024-04-15T21:20:35.564018+0000 mon.a (mon.0) 176 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:36.588 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:36 smithi132 bash[21536]: audit 2024-04-15T21:20:35.571539+0000 mon.a (mon.0) 177 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:36.588 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:36 smithi132 bash[21536]: audit 2024-04-15T21:20:35.574797+0000 mon.a (mon.0) 178 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi187", "caps": []}]: dispatch 2024-04-15T21:20:36.588 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:36 smithi132 bash[21536]: audit 2024-04-15T21:20:35.577753+0000 mon.a (mon.0) 179 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi187", "caps": []}]': finished 2024-04-15T21:20:37.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:37 smithi132 bash[21536]: cephadm 2024-04-15T21:20:35.392423+0000 mgr.a (mgr.14152) 54 : cephadm [INF] Updating smithi187:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T21:20:37.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:37 smithi132 bash[21536]: cluster 2024-04-15T21:20:35.545296+0000 mgr.a (mgr.14152) 55 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:38.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:38 smithi132 bash[21536]: cephadm 2024-04-15T21:20:36.957255+0000 mgr.a (mgr.14152) 56 : cephadm [INF] Deploying daemon agent.smithi187 on smithi187 2024-04-15T21:20:38.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:38 smithi132 bash[21536]: audit 2024-04-15T21:20:37.885919+0000 mon.a (mon.0) 180 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:38.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:38 smithi132 bash[21536]: audit 2024-04-15T21:20:37.933412+0000 mon.a (mon.0) 181 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:38.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:38 smithi132 bash[21536]: audit 2024-04-15T21:20:37.940265+0000 mon.a (mon.0) 182 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:38.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:38 smithi132 bash[21536]: audit 2024-04-15T21:20:38.038833+0000 mon.a (mon.0) 183 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:20:38.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:38 smithi132 bash[21536]: audit 2024-04-15T21:20:38.042994+0000 mon.a (mon.0) 184 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:20:38.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:38 smithi132 bash[21536]: audit 2024-04-15T21:20:38.044772+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:20:38.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:38 smithi132 bash[21536]: audit 2024-04-15T21:20:38.055464+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:38.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:38 smithi132 bash[21536]: audit 2024-04-15T21:20:38.140308+0000 mon.a (mon.0) 187 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:20:38.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:38 smithi132 bash[21536]: audit 2024-04-15T21:20:38.143655+0000 mon.a (mon.0) 188 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:20:38.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:38 smithi132 bash[21536]: audit 2024-04-15T21:20:38.144626+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:20:38.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:38 smithi132 bash[21536]: audit 2024-04-15T21:20:38.150245+0000 mon.a (mon.0) 190 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:39.115 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:20:39.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:39 smithi132 bash[21536]: cluster 2024-04-15T21:20:37.545582+0000 mgr.a (mgr.14152) 57 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:39.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:39 smithi132 bash[21536]: audit 2024-04-15T21:20:38.373260+0000 mon.a (mon.0) 191 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:40.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:40 smithi132 bash[21536]: audit 2024-04-15T21:20:39.431451+0000 mon.a (mon.0) 192 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:40.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:40 smithi132 bash[21536]: audit 2024-04-15T21:20:39.440875+0000 mon.a (mon.0) 193 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:40.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:40 smithi132 bash[21536]: cluster 2024-04-15T21:20:39.545905+0000 mgr.a (mgr.14152) 58 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:41.774 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:20:41.774 INFO:teuthology.orchestra.run.smithi132.stdout:[{"addr": "172.21.15.132", "hostname": "smithi132", "labels": [], "status": ""}, {"addr": "172.21.15.133", "hostname": "smithi133", "labels": [], "status": ""}, {"addr": "172.21.15.187", "hostname": "smithi187", "labels": [], "status": ""}] 2024-04-15T21:20:42.527 INFO:tasks.cephadm:Setting crush tunables to default 2024-04-15T21:20:42.527 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph osd crush tunables default 2024-04-15T21:20:42.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:42 smithi132 bash[21536]: cluster 2024-04-15T21:20:41.546316+0000 mgr.a (mgr.14152) 59 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:42.878 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:42 smithi132 bash[21536]: audit 2024-04-15T21:20:41.774785+0000 mgr.a (mgr.14152) 60 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:20:42.878 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:42 smithi132 bash[21536]: audit 2024-04-15T21:20:42.489229+0000 mon.a (mon.0) 194 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:42.878 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:42 smithi132 bash[21536]: audit 2024-04-15T21:20:42.495035+0000 mon.a (mon.0) 195 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:42.878 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:42 smithi132 bash[21536]: audit 2024-04-15T21:20:42.502788+0000 mon.a (mon.0) 196 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:44.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:43 smithi132 bash[21536]: audit 2024-04-15T21:20:42.629270+0000 mon.a (mon.0) 197 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:45.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:44 smithi132 bash[21536]: cluster 2024-04-15T21:20:43.546815+0000 mgr.a (mgr.14152) 61 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:47.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:46 smithi132 bash[21536]: cluster 2024-04-15T21:20:45.547260+0000 mgr.a (mgr.14152) 62 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:47.237 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:20:49.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:48 smithi132 bash[21536]: cluster 2024-04-15T21:20:47.547683+0000 mgr.a (mgr.14152) 63 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:50.651 INFO:teuthology.orchestra.run.smithi132.stderr:adjusted tunables profile to default 2024-04-15T21:20:50.889 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:50 smithi132 bash[21536]: cluster 2024-04-15T21:20:49.548140+0000 mgr.a (mgr.14152) 64 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:50.890 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:50 smithi132 bash[21536]: audit 2024-04-15T21:20:49.839806+0000 mon.a (mon.0) 198 : audit [INF] from='client.? 172.21.15.132:0/1292467444' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-15T21:20:51.340 INFO:tasks.cephadm:Adding mon.a on smithi132 2024-04-15T21:20:51.340 INFO:tasks.cephadm:Adding mon.b on smithi133 2024-04-15T21:20:51.340 INFO:tasks.cephadm:Adding mon.c on smithi187 2024-04-15T21:20:51.340 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph orch apply mon '3;smithi132:172.21.15.132=a;smithi133:172.21.15.133=b;smithi187:172.21.15.187=c' 2024-04-15T21:20:52.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:51 smithi132 bash[21536]: audit 2024-04-15T21:20:50.648282+0000 mon.a (mon.0) 199 : audit [INF] from='client.? 172.21.15.132:0/1292467444' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-15T21:20:52.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:51 smithi132 bash[21536]: cluster 2024-04-15T21:20:50.654240+0000 mon.a (mon.0) 200 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-15T21:20:53.070 INFO:teuthology.orchestra.run.smithi187.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:20:53.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:53 smithi132 bash[21536]: cluster 2024-04-15T21:20:51.548615+0000 mgr.a (mgr.14152) 65 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:53.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:53 smithi132 bash[21536]: audit 2024-04-15T21:20:52.270461+0000 mon.a (mon.0) 201 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:53.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:53 smithi132 bash[21536]: audit 2024-04-15T21:20:52.280575+0000 mon.a (mon.0) 202 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:55.545 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:55 smithi132 bash[21536]: cluster 2024-04-15T21:20:53.549047+0000 mgr.a (mgr.14152) 66 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:55.545 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:55 smithi132 bash[21536]: audit 2024-04-15T21:20:54.908497+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:55.545 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:55 smithi132 bash[21536]: audit 2024-04-15T21:20:54.915393+0000 mon.a (mon.0) 204 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:55.545 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:55 smithi132 bash[21536]: audit 2024-04-15T21:20:54.923877+0000 mon.a (mon.0) 205 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:55.547 INFO:teuthology.orchestra.run.smithi187.stdout:Scheduled mon update... 2024-04-15T21:20:56.291 DEBUG:teuthology.orchestra.run.smithi133:mon.b> sudo journalctl -f -n 0 -u ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mon.b.service 2024-04-15T21:20:56.294 DEBUG:teuthology.orchestra.run.smithi187:mon.c> sudo journalctl -f -n 0 -u ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mon.c.service 2024-04-15T21:20:56.296 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-04-15T21:20:56.297 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph mon dump -f json 2024-04-15T21:20:56.838 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:56 smithi132 bash[21536]: audit 2024-04-15T21:20:55.542087+0000 mgr.a (mgr.14152) 67 : audit [DBG] from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi132:172.21.15.132=a;smithi133:172.21.15.133=b;smithi187:172.21.15.187=c", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:20:56.838 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:56 smithi132 bash[21536]: cephadm 2024-04-15T21:20:55.545316+0000 mgr.a (mgr.14152) 68 : cephadm [INF] Saving service mon spec with placement smithi132:172.21.15.132=a;smithi133:172.21.15.133=b;smithi187:172.21.15.187=c;count:3 2024-04-15T21:20:56.838 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:56 smithi132 bash[21536]: audit 2024-04-15T21:20:55.548661+0000 mon.a (mon.0) 206 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:56.838 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:56 smithi132 bash[21536]: cluster 2024-04-15T21:20:55.549301+0000 mgr.a (mgr.14152) 69 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:20:56.838 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:56 smithi132 bash[21536]: audit 2024-04-15T21:20:55.557570+0000 mon.a (mon.0) 207 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:20:56.838 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:56 smithi132 bash[21536]: audit 2024-04-15T21:20:55.560112+0000 mon.a (mon.0) 208 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:20:56.838 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:56 smithi132 bash[21536]: audit 2024-04-15T21:20:55.560837+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:20:56.838 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:56 smithi132 bash[21536]: audit 2024-04-15T21:20:55.565378+0000 mon.a (mon.0) 210 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:20:56.838 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:56 smithi132 bash[21536]: audit 2024-04-15T21:20:55.567676+0000 mon.a (mon.0) 211 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:20:56.838 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:56 smithi132 bash[21536]: audit 2024-04-15T21:20:55.568361+0000 mon.a (mon.0) 212 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:20:56.839 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:56 smithi132 bash[21536]: cephadm 2024-04-15T21:20:55.569233+0000 mgr.a (mgr.14152) 70 : cephadm [INF] Deploying daemon mon.c on smithi187 2024-04-15T21:20:57.972 INFO:teuthology.orchestra.run.smithi187.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:20:58.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:20:58 smithi132 bash[21536]: cluster 2024-04-15T21:20:57.549734+0000 mgr.a (mgr.14152) 71 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:00.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:00 smithi132 bash[21536]: cluster 2024-04-15T21:20:59.550145+0000 mgr.a (mgr.14152) 72 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:02.709 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-04-15T21:21:02.709 INFO:teuthology.orchestra.run.smithi187.stdout:{"epoch":1,"fsid":"7ac1dc10-fb6d-11ee-bc8f-c7b262605968","modified":"2024-04-15T21:18:17.192210Z","created":"2024-04-15T21:18:17.192210Z","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.132:3300","nonce":0},{"type":"v1","addr":"172.21.15.132:6789","nonce":0}]},"addr":"172.21.15.132:6789/0","public_addr":"172.21.15.132:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-15T21:21:02.711 INFO:teuthology.orchestra.run.smithi187.stderr:dumped monmap epoch 1 2024-04-15T21:21:02.722 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:02 smithi132 bash[21536]: audit 2024-04-15T21:21:01.461065+0000 mon.a (mon.0) 213 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:02.722 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:02 smithi132 bash[21536]: audit 2024-04-15T21:21:01.466972+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:02.722 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:02 smithi132 bash[21536]: audit 2024-04-15T21:21:01.504111+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:02.722 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:02 smithi132 bash[21536]: audit 2024-04-15T21:21:01.505458+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:21:02.722 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:02 smithi132 bash[21536]: audit 2024-04-15T21:21:01.507144+0000 mon.a (mon.0) 217 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:02.722 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:02 smithi132 bash[21536]: cephadm 2024-04-15T21:21:01.509163+0000 mgr.a (mgr.14152) 73 : cephadm [INF] Deploying daemon mon.b on smithi133 2024-04-15T21:21:02.723 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:02 smithi132 bash[21536]: cluster 2024-04-15T21:21:01.550554+0000 mgr.a (mgr.14152) 74 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.118 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:13.780467+0000 mon.a (mon.0) 154 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:03.118 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:13.789728+0000 mon.a (mon.0) 155 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.118 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:14.067164+0000 mon.a (mon.0) 156 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.119 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:13.540588+0000 mgr.a (mgr.14152) 36 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.119 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:15.142440+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.119 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:15.150332+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.119 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:15.541024+0000 mgr.a (mgr.14152) 37 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.119 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:17.121312+0000 mgr.a (mgr.14152) 38 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:21:03.119 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:17.622617+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:17.541430+0000 mgr.a (mgr.14152) 39 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:19.541812+0000 mgr.a (mgr.14152) 40 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:21.542180+0000 mgr.a (mgr.14152) 41 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:22.327601+0000 mon.a (mon.0) 160 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:22.336485+0000 mon.a (mon.0) 161 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:22.344621+0000 mon.a (mon.0) 162 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:23.542593+0000 mgr.a (mgr.14152) 42 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:25.542904+0000 mgr.a (mgr.14152) 43 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:26.572995+0000 mgr.a (mgr.14152) 44 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi187", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:21:03.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cephadm 2024-04-15T21:20:27.281744+0000 mgr.a (mgr.14152) 45 : cephadm [INF] Deploying cephadm binary to smithi187 2024-04-15T21:21:03.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:27.882720+0000 mon.a (mon.0) 163 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:27.891682+0000 mon.a (mon.0) 164 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:27.543311+0000 mgr.a (mgr.14152) 46 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:29.543838+0000 mgr.a (mgr.14152) 47 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.416 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:31.544324+0000 mgr.a (mgr.14152) 48 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.416 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:32.520132+0000 mon.a (mon.0) 165 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.416 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:32.565768+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:03.416 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:33.037728+0000 mon.a (mon.0) 167 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.416 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cephadm 2024-04-15T21:20:32.520992+0000 mgr.a (mgr.14152) 49 : cephadm [INF] Added host smithi187 2024-04-15T21:21:03.416 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:33.544883+0000 mgr.a (mgr.14152) 50 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.416 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:34.564913+0000 mon.a (mon.0) 168 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.416 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:34.570902+0000 mon.a (mon.0) 169 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.417 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:34.572512+0000 mon.a (mon.0) 170 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi187", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:21:03.417 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:34.574961+0000 mon.a (mon.0) 171 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:03.417 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:34.576995+0000 mon.a (mon.0) 172 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:03.417 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:34.695086+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.417 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:34.701103+0000 mon.a (mon.0) 174 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.417 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:34.710941+0000 mon.a (mon.0) 175 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.417 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cephadm 2024-04-15T21:20:34.580009+0000 mgr.a (mgr.14152) 51 : cephadm [INF] Updating smithi187:/etc/ceph/ceph.conf 2024-04-15T21:21:03.417 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cephadm 2024-04-15T21:20:34.796756+0000 mgr.a (mgr.14152) 52 : cephadm [INF] Updating smithi187:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:03.418 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cephadm 2024-04-15T21:20:35.278111+0000 mgr.a (mgr.14152) 53 : cephadm [INF] Updating smithi187:/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:21:03.418 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:35.564018+0000 mon.a (mon.0) 176 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.418 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:35.571539+0000 mon.a (mon.0) 177 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.418 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:35.574797+0000 mon.a (mon.0) 178 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi187", "caps": []}]: dispatch 2024-04-15T21:21:03.418 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:35.577753+0000 mon.a (mon.0) 179 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi187", "caps": []}]': finished 2024-04-15T21:21:03.418 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cephadm 2024-04-15T21:20:35.392423+0000 mgr.a (mgr.14152) 54 : cephadm [INF] Updating smithi187:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T21:21:03.418 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:35.545296+0000 mgr.a (mgr.14152) 55 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.418 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cephadm 2024-04-15T21:20:36.957255+0000 mgr.a (mgr.14152) 56 : cephadm [INF] Deploying daemon agent.smithi187 on smithi187 2024-04-15T21:21:03.418 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:37.885919+0000 mon.a (mon.0) 180 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.418 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:37.933412+0000 mon.a (mon.0) 181 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.418 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:37.940265+0000 mon.a (mon.0) 182 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.419 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:38.038833+0000 mon.a (mon.0) 183 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:03.419 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:38.042994+0000 mon.a (mon.0) 184 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:03.419 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:38.044772+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:03.419 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:38.055464+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.419 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:38.140308+0000 mon.a (mon.0) 187 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:03.419 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:38.143655+0000 mon.a (mon.0) 188 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:03.419 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:38.144626+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:03.419 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:38.150245+0000 mon.a (mon.0) 190 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.419 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:37.545582+0000 mgr.a (mgr.14152) 57 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.419 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:38.373260+0000 mon.a (mon.0) 191 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.419 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:39.431451+0000 mon.a (mon.0) 192 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.419 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:39.440875+0000 mon.a (mon.0) 193 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.419 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:39.545905+0000 mgr.a (mgr.14152) 58 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.419 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:41.546316+0000 mgr.a (mgr.14152) 59 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.420 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:41.774785+0000 mgr.a (mgr.14152) 60 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:21:03.420 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:42.489229+0000 mon.a (mon.0) 194 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.420 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:42.495035+0000 mon.a (mon.0) 195 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.420 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:42.502788+0000 mon.a (mon.0) 196 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.420 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:42.629270+0000 mon.a (mon.0) 197 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.420 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:43.546815+0000 mgr.a (mgr.14152) 61 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.420 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:45.547260+0000 mgr.a (mgr.14152) 62 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.420 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:47.547683+0000 mgr.a (mgr.14152) 63 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.420 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:49.548140+0000 mgr.a (mgr.14152) 64 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.420 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:49.839806+0000 mon.a (mon.0) 198 : audit [INF] from='client.? 172.21.15.132:0/1292467444' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-15T21:21:03.420 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:50.648282+0000 mon.a (mon.0) 199 : audit [INF] from='client.? 172.21.15.132:0/1292467444' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-15T21:21:03.420 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:50.654240+0000 mon.a (mon.0) 200 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-15T21:21:03.420 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:51.548615+0000 mgr.a (mgr.14152) 65 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.420 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:52.270461+0000 mon.a (mon.0) 201 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.421 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:52.280575+0000 mon.a (mon.0) 202 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.421 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:53.549047+0000 mgr.a (mgr.14152) 66 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.421 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:54.908497+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.421 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:54.915393+0000 mon.a (mon.0) 204 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.421 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:54.923877+0000 mon.a (mon.0) 205 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.421 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:55.542087+0000 mgr.a (mgr.14152) 67 : audit [DBG] from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi132:172.21.15.132=a;smithi133:172.21.15.133=b;smithi187:172.21.15.187=c", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:21:03.421 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cephadm 2024-04-15T21:20:55.545316+0000 mgr.a (mgr.14152) 68 : cephadm [INF] Saving service mon spec with placement smithi132:172.21.15.132=a;smithi133:172.21.15.133=b;smithi187:172.21.15.187=c;count:3 2024-04-15T21:21:03.421 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:55.548661+0000 mon.a (mon.0) 206 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.421 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:55.549301+0000 mgr.a (mgr.14152) 69 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.421 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:55.557570+0000 mon.a (mon.0) 207 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:03.421 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:55.560112+0000 mon.a (mon.0) 208 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:03.421 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:55.560837+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:03.421 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:55.565378+0000 mon.a (mon.0) 210 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.421 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:55.567676+0000 mon.a (mon.0) 211 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:21:03.422 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:20:55.568361+0000 mon.a (mon.0) 212 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:03.422 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cephadm 2024-04-15T21:20:55.569233+0000 mgr.a (mgr.14152) 70 : cephadm [INF] Deploying daemon mon.c on smithi187 2024-04-15T21:21:03.422 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:57.549734+0000 mgr.a (mgr.14152) 71 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.422 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:20:59.550145+0000 mgr.a (mgr.14152) 72 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.422 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:21:01.461065+0000 mon.a (mon.0) 213 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.422 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:21:01.466972+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.422 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:21:01.504111+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:03.422 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:21:01.505458+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:21:03.422 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: audit 2024-04-15T21:21:01.507144+0000 mon.a (mon.0) 217 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:03.422 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cephadm 2024-04-15T21:21:01.509163+0000 mgr.a (mgr.14152) 73 : cephadm [INF] Deploying daemon mon.b on smithi133 2024-04-15T21:21:03.422 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: cluster 2024-04-15T21:21:01.550554+0000 mgr.a (mgr.14152) 74 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:03.422 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:03 smithi187 bash[22200]: debug 2024-04-15T21:21:03.114+0000 7f2ace26f700 1 mon.c@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-04-15T21:21:05.060 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-04-15T21:21:05.061 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph mon dump -f json 2024-04-15T21:21:05.839 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:05 smithi133 systemd[1]: Started Ceph mon.b for 7ac1dc10-fb6d-11ee-bc8f-c7b262605968. 2024-04-15T21:21:06.658 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.613+0000 7fc8f5780c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-04-15T21:21:06.659 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.613+0000 7fc8f5780c80 0 ceph version 19.0.0-3084-g87dbfb63 (87dbfb632e974cb2c28d17423071d2d833b53b29) squid (dev), process ceph-mon, pid 7 2024-04-15T21:21:06.659 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.613+0000 7fc8f5780c80 0 pidfile_write: ignore empty --pid-file 2024-04-15T21:21:06.659 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.617+0000 7fc8f5780c80 0 load: jerasure load: lrc 2024-04-15T21:21:06.659 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: RocksDB version: 7.9.2 2024-04-15T21:21:06.659 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Git sha 0 2024-04-15T21:21:06.659 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Compile date 2024-04-14 15:12:02 2024-04-15T21:21:06.659 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: DB SUMMARY 2024-04-15T21:21:06.659 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: DB Session ID: U0H5AHLJLRNGG6EMR23F 2024-04-15T21:21:06.659 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: CURRENT file: CURRENT 2024-04-15T21:21:06.660 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: IDENTITY file: IDENTITY 2024-04-15T21:21:06.660 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-04-15T21:21:06.660 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-b/store.db dir, Total Num: 0, files: 2024-04-15T21:21:06.660 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-b/store.db: 000004.log size: 511 ; 2024-04-15T21:21:06.660 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.error_if_exists: 0 2024-04-15T21:21:06.660 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.create_if_missing: 0 2024-04-15T21:21:06.660 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.paranoid_checks: 1 2024-04-15T21:21:06.660 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-04-15T21:21:06.660 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-15T21:21:06.660 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-15T21:21:06.660 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.env: 0x557112530cc0 2024-04-15T21:21:06.661 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.fs: PosixFileSystem 2024-04-15T21:21:06.661 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.info_log: 0x557114461c60 2024-04-15T21:21:06.661 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-04-15T21:21:06.661 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.statistics: (nil) 2024-04-15T21:21:06.661 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.use_fsync: 0 2024-04-15T21:21:06.661 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_log_file_size: 0 2024-04-15T21:21:06.661 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-15T21:21:06.661 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-04-15T21:21:06.662 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-04-15T21:21:06.662 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-04-15T21:21:06.662 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.allow_fallocate: 1 2024-04-15T21:21:06.662 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-04-15T21:21:06.662 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-04-15T21:21:06.662 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.use_direct_reads: 0 2024-04-15T21:21:06.662 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-15T21:21:06.662 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.create_missing_column_families: 0 2024-04-15T21:21:06.662 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.db_log_dir: 2024-04-15T21:21:06.662 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.wal_dir: 2024-04-15T21:21:06.662 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-04-15T21:21:06.663 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-04-15T21:21:06.663 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-04-15T21:21:06.663 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-15T21:21:06.663 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-15T21:21:06.663 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-04-15T21:21:06.663 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.advise_random_on_open: 1 2024-04-15T21:21:06.663 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-04-15T21:21:06.663 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.write_buffer_manager: 0x5571144321e0 2024-04-15T21:21:06.663 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-15T21:21:06.663 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-15T21:21:06.663 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-04-15T21:21:06.663 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.rate_limiter: (nil) 2024-04-15T21:21:06.663 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-15T21:21:06.663 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-04-15T21:21:06.664 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-04-15T21:21:06.664 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-04-15T21:21:06.664 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.unordered_write: 0 2024-04-15T21:21:06.664 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-15T21:21:06.664 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-15T21:21:06.664 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-15T21:21:06.664 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-15T21:21:06.664 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.row_cache: None 2024-04-15T21:21:06.664 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.wal_filter: None 2024-04-15T21:21:06.664 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-15T21:21:06.664 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-04-15T21:21:06.664 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.two_write_queues: 0 2024-04-15T21:21:06.664 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.manual_wal_flush: 0 2024-04-15T21:21:06.664 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.wal_compression: 0 2024-04-15T21:21:06.664 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.atomic_flush: 0 2024-04-15T21:21:06.665 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-15T21:21:06.665 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-04-15T21:21:06.665 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-04-15T21:21:06.665 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.log_readahead_size: 0 2024-04-15T21:21:06.665 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-15T21:21:06.665 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-04-15T21:21:06.665 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-15T21:21:06.665 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-15T21:21:06.665 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-04-15T21:21:06.665 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-04-15T21:21:06.665 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-04-15T21:21:06.665 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_background_jobs: 2 2024-04-15T21:21:06.665 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_background_compactions: -1 2024-04-15T21:21:06.666 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_subcompactions: 1 2024-04-15T21:21:06.666 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-15T21:21:06.666 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-15T21:21:06.666 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-04-15T21:21:06.666 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_total_wal_size: 0 2024-04-15T21:21:06.666 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-15T21:21:06.666 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-04-15T21:21:06.666 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-04-15T21:21:06.666 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-15T21:21:06.666 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_open_files: -1 2024-04-15T21:21:06.666 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.bytes_per_sync: 0 2024-04-15T21:21:06.666 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-04-15T21:21:06.667 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-04-15T21:21:06.667 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-04-15T21:21:06.667 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_background_flushes: -1 2024-04-15T21:21:06.667 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Compression algorithms supported: 2024-04-15T21:21:06.667 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-15T21:21:06.667 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: kZSTD supported: 0 2024-04-15T21:21:06.667 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: kXpressCompression supported: 0 2024-04-15T21:21:06.667 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-04-15T21:21:06.667 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: kZlibCompression supported: 1 2024-04-15T21:21:06.667 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: kSnappyCompression supported: 1 2024-04-15T21:21:06.667 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: kLZ4Compression supported: 1 2024-04-15T21:21:06.667 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: kBZip2Compression supported: 0 2024-04-15T21:21:06.667 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-04-15T21:21:06.667 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-04-15T21:21:06.668 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-b/store.db/MANIFEST-000005 2024-04-15T21:21:06.668 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-15T21:21:06.670 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-15T21:21:06.670 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.merge_operator: 2024-04-15T21:21:06.671 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compaction_filter: None 2024-04-15T21:21:06.671 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compaction_filter_factory: None 2024-04-15T21:21:06.671 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-04-15T21:21:06.671 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-04-15T21:21:06.671 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-04-15T21:21:06.671 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x557114461e20) 2024-04-15T21:21:06.671 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cache_index_and_filter_blocks: 1 2024-04-15T21:21:06.671 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cache_index_and_filter_blocks_with_high_priority: 0 2024-04-15T21:21:06.671 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-15T21:21:06.671 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: pin_top_level_index_and_filter: 1 2024-04-15T21:21:06.671 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: index_type: 0 2024-04-15T21:21:06.671 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: data_block_index_type: 0 2024-04-15T21:21:06.671 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: index_shortening: 1 2024-04-15T21:21:06.671 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: data_block_hash_table_util_ratio: 0.750000 2024-04-15T21:21:06.671 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: checksum: 4 2024-04-15T21:21:06.671 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: no_block_cache: 0 2024-04-15T21:21:06.672 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: block_cache: 0x557114463090 2024-04-15T21:21:06.672 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: block_cache_name: BinnedLRUCache 2024-04-15T21:21:06.672 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: block_cache_options: 2024-04-15T21:21:06.672 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: capacity : 536870912 2024-04-15T21:21:06.672 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: num_shard_bits : 4 2024-04-15T21:21:06.672 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: strict_capacity_limit : 0 2024-04-15T21:21:06.672 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: high_pri_pool_ratio: 0.000 2024-04-15T21:21:06.672 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: block_cache_compressed: (nil) 2024-04-15T21:21:06.672 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: persistent_cache: (nil) 2024-04-15T21:21:06.672 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: block_size: 4096 2024-04-15T21:21:06.672 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: block_size_deviation: 10 2024-04-15T21:21:06.672 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: block_restart_interval: 16 2024-04-15T21:21:06.672 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: index_block_restart_interval: 1 2024-04-15T21:21:06.672 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: metadata_block_size: 4096 2024-04-15T21:21:06.673 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: partition_filters: 0 2024-04-15T21:21:06.673 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: use_delta_encoding: 1 2024-04-15T21:21:06.673 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: filter_policy: bloomfilter 2024-04-15T21:21:06.673 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: whole_key_filtering: 1 2024-04-15T21:21:06.673 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: verify_compression: 0 2024-04-15T21:21:06.673 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: read_amp_bytes_per_bit: 0 2024-04-15T21:21:06.673 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: format_version: 5 2024-04-15T21:21:06.673 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: enable_index_compression: 1 2024-04-15T21:21:06.673 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: block_align: 0 2024-04-15T21:21:06.673 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: max_auto_readahead_size: 262144 2024-04-15T21:21:06.673 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: prepopulate_block_cache: 0 2024-04-15T21:21:06.673 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: initial_auto_readahead_size: 8192 2024-04-15T21:21:06.673 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: num_file_reads_for_auto_readahead: 2 2024-04-15T21:21:06.674 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-04-15T21:21:06.674 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-04-15T21:21:06.674 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compression: NoCompression 2024-04-15T21:21:06.674 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-04-15T21:21:06.674 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-04-15T21:21:06.674 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-15T21:21:06.674 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.num_levels: 7 2024-04-15T21:21:06.674 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-15T21:21:06.674 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-15T21:21:06.674 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-15T21:21:06.674 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-15T21:21:06.674 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-15T21:21:06.674 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-15T21:21:06.675 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-15T21:21:06.675 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-15T21:21:06.675 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-15T21:21:06.675 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-15T21:21:06.675 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-15T21:21:06.675 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-15T21:21:06.675 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-04-15T21:21:06.675 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compression_opts.level: 32767 2024-04-15T21:21:06.675 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-04-15T21:21:06.675 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-15T21:21:06.675 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-15T21:21:06.675 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-15T21:21:06.675 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-15T21:21:06.675 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compression_opts.enabled: false 2024-04-15T21:21:06.675 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-15T21:21:06.676 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-15T21:21:06.676 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-15T21:21:06.676 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-15T21:21:06.676 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-04-15T21:21:06.676 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-04-15T21:21:06.676 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-15T21:21:06.676 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-15T21:21:06.676 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-15T21:21:06.676 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-15T21:21:06.676 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-15T21:21:06.676 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-15T21:21:06.676 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-15T21:21:06.677 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-15T21:21:06.677 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-15T21:21:06.677 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-15T21:21:06.677 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-15T21:21:06.677 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-15T21:21:06.677 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-15T21:21:06.677 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.arena_block_size: 1048576 2024-04-15T21:21:06.677 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-15T21:21:06.677 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-15T21:21:06.677 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-04-15T21:21:06.677 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-15T21:21:06.677 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-15T21:21:06.677 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-15T21:21:06.677 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-15T21:21:06.678 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-15T21:21:06.678 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-15T21:21:06.678 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-15T21:21:06.678 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-15T21:21:06.678 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-15T21:21:06.678 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-15T21:21:06.678 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-04-15T21:21:06.678 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.inplace_update_support: 0 2024-04-15T21:21:06.678 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-04-15T21:21:06.678 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-15T21:21:06.678 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-15T21:21:06.678 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-04-15T21:21:06.678 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.bloom_locality: 0 2024-04-15T21:21:06.678 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.max_successive_merges: 0 2024-04-15T21:21:06.679 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-04-15T21:21:06.679 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-04-15T21:21:06.679 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.force_consistency_checks: 1 2024-04-15T21:21:06.679 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-04-15T21:21:06.679 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.ttl: 2592000 2024-04-15T21:21:06.679 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-04-15T21:21:06.679 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-15T21:21:06.679 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-15T21:21:06.679 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.enable_blob_files: false 2024-04-15T21:21:06.679 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.min_blob_size: 0 2024-04-15T21:21:06.679 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.blob_file_size: 268435456 2024-04-15T21:21:06.679 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-04-15T21:21:06.679 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-04-15T21:21:06.680 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-15T21:21:06.680 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-15T21:21:06.680 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-15T21:21:06.680 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-04-15T21:21:06.680 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-15T21:21:06.680 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-b/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, 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-04-15T21:21:06.680 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-04-15T21:21:06.680 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 02634b04-9925-489d-b581-b124681a3c57 2024-04-15T21:21:06.680 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713216066626462, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-04-15T21:21:06.680 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-04-15T21:21:06.680 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713216066626920, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1648, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 1, "largest_seqno": 5, "table_properties": {"data_size": 523, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 401, "raw_average_value_size": 80, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 5, "num_deletions": 0, "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": 1713216066, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "02634b04-9925-489d-b581-b124681a3c57", "db_session_id": "U0H5AHLJLRNGG6EMR23F", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-04-15T21:21:06.680 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713216066627014, "job": 1, "event": "recovery_finished"} 2024-04-15T21:21:06.680 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-04-15T21:21:06.680 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-b/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-04-15T21:21:06.681 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.621+0000 7fc8f5780c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x557114554000 2024-04-15T21:21:06.681 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.625+0000 7fc8f5780c80 4 rocksdb: DB pointer 0x55711453e000 2024-04-15T21:21:06.681 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.625+0000 7fc8e3eda700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-15T21:21:06.681 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.625+0000 7fc8e3eda700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-15T21:21:06.681 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: ** DB Stats ** 2024-04-15T21:21:06.681 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-15T21:21:06.681 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-04-15T21:21:06.681 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-15T21:21:06.681 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-15T21:21:06.681 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-04-15T21:21:06.681 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-15T21:21:06.681 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-15T21:21:06.681 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: ** Compaction Stats [default] ** 2024-04-15T21:21:06.681 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: 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-04-15T21:21:06.682 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-15T21:21:06.682 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-15T21:21:06.682 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-15T21:21:06.682 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-15T21:21:06.682 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: ** Compaction Stats [default] ** 2024-04-15T21:21:06.682 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: 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-04-15T21:21:06.682 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-15T21:21:06.682 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-15T21:21:06.682 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-15T21:21:06.682 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-15T21:21:06.682 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: Flush(GB): cumulative 0.000, interval 0.000 2024-04-15T21:21:06.682 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-15T21:21:06.682 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: AddFile(Total Files): cumulative 0, interval 0 2024-04-15T21:21:06.682 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: AddFile(L0 Files): cumulative 0, interval 0 2024-04-15T21:21:06.683 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: AddFile(Keys): cumulative 0, interval 0 2024-04-15T21:21:06.683 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: Cumulative compaction: 0.00 GB write, 0.50 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-15T21:21:06.683 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: Interval compaction: 0.00 GB write, 0.50 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-15T21:21:06.683 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: 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-04-15T21:21:06.683 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: Block cache BinnedLRUCache@0x557114463090#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.4e-05 secs_since: 0 2024-04-15T21:21:06.683 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: Block cache entry stats(count,size,portion): FilterBlock(1,0.11 KB,2.08616e-05%) IndexBlock(1,0.11 KB,2.08616e-05%) Misc(1,0.00 KB,0%) 2024-04-15T21:21:06.683 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: ** File Read Latency Histogram By Level [default] ** 2024-04-15T21:21:06.683 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.625+0000 7fc8f5780c80 0 mon.b does not exist in monmap, will attempt to join an existing cluster 2024-04-15T21:21:06.683 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.625+0000 7fc8f5780c80 0 using public_addr v2:172.21.15.133:0/0 -> [v2:172.21.15.133:3300/0,v1:172.21.15.133:6789/0] 2024-04-15T21:21:06.683 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.625+0000 7fc8f5780c80 0 starting mon.b rank -1 at public addrs [v2:172.21.15.133:3300/0,v1:172.21.15.133:6789/0] at bind addrs [v2:172.21.15.133:3300/0,v1:172.21.15.133:6789/0] mon_data /var/lib/ceph/mon/ceph-b fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:21:06.683 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.625+0000 7fc8f5780c80 1 mon.b@-1(???) e0 preinit fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:21:06.683 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.645+0000 7fc8e6ee0700 0 mon.b@-1(synchronizing).mds e1 new map 2024-04-15T21:21:06.683 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.645+0000 7fc8e6ee0700 0 mon.b@-1(synchronizing).mds e1 print_map 2024-04-15T21:21:06.684 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: e1 2024-04-15T21:21:06.684 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: enable_multiple, ever_enabled_multiple: 1,1 2024-04-15T21:21:06.684 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-04-15T21:21:06.684 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: legacy client fscid: -1 2024-04-15T21:21:06.684 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: 2024-04-15T21:21:06.684 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: No filesystems configured 2024-04-15T21:21:06.684 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.645+0000 7fc8e6ee0700 1 mon.b@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-04-15T21:21:06.684 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.645+0000 7fc8e6ee0700 1 mon.b@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-04-15T21:21:06.684 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.645+0000 7fc8e6ee0700 1 mon.b@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-04-15T21:21:06.684 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.645+0000 7fc8e6ee0700 1 mon.b@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-04-15T21:21:06.685 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.645+0000 7fc8e6ee0700 1 mon.b@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-04-15T21:21:06.685 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.645+0000 7fc8e6ee0700 1 mon.b@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-04-15T21:21:06.685 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.649+0000 7fc8e6ee0700 0 mon.b@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-15T21:21:06.685 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.649+0000 7fc8e6ee0700 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T21:21:06.685 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.649+0000 7fc8e6ee0700 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T21:21:06.685 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.649+0000 7fc8e6ee0700 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T21:21:06.685 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:19:51.536232+0000 mgr.a (mgr.14152) 12 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.685 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:19:51.582635+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.685 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:19:51.589853+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.685 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:19:53.536563+0000 mgr.a (mgr.14152) 13 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.685 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:19:54.256894+0000 mgr.a (mgr.14152) 14 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:21:06.685 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:19:54.260188+0000 mon.a (mon.0) 123 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.685 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:19:54.268049+0000 mon.a (mon.0) 124 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:06.686 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:19:54.271073+0000 mon.a (mon.0) 125 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:06.686 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:19:54.272421+0000 mon.a (mon.0) 126 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:06.686 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:19:54.274418+0000 mgr.a (mgr.14152) 15 : cephadm [INF] Updating smithi132:/etc/ceph/ceph.conf 2024-04-15T21:21:06.686 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:19:54.735065+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.686 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:19:54.738941+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.686 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:19:54.741881+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.686 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:19:54.388894+0000 mgr.a (mgr.14152) 16 : cephadm [INF] Updating smithi132:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:06.686 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:19:54.502838+0000 mgr.a (mgr.14152) 17 : cephadm [INF] Updating smithi132:/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:21:06.686 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:19:54.616768+0000 mgr.a (mgr.14152) 18 : cephadm [INF] Updating smithi132:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T21:21:06.686 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:19:55.536957+0000 mgr.a (mgr.14152) 19 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.686 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:19:57.537420+0000 mgr.a (mgr.14152) 20 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.686 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:19:59.537803+0000 mgr.a (mgr.14152) 21 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.686 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:01.538098+0000 mgr.a (mgr.14152) 22 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.686 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:02.145320+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.687 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:02.149997+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.687 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:02.155748+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.687 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:03.381596+0000 mgr.a (mgr.14152) 23 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi133", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:21:06.687 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:03.538460+0000 mgr.a (mgr.14152) 24 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.687 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:20:03.966325+0000 mgr.a (mgr.14152) 25 : cephadm [INF] Deploying cephadm binary to smithi133 2024-04-15T21:21:06.687 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:05.538923+0000 mgr.a (mgr.14152) 26 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.687 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:07.539381+0000 mgr.a (mgr.14152) 27 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.687 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:09.054568+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.687 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:09.099844+0000 mon.a (mon.0) 134 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:06.687 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:20:09.055545+0000 mgr.a (mgr.14152) 28 : cephadm [INF] Added host smithi133 2024-04-15T21:21:06.687 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:09.573381+0000 mon.a (mon.0) 135 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.687 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:09.539812+0000 mgr.a (mgr.14152) 29 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.687 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:11.099929+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.687 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:11.106276+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.688 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:11.107730+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi133", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:21:06.688 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:11.109954+0000 mon.a (mon.0) 139 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:06.688 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:11.111843+0000 mon.a (mon.0) 140 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:06.688 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:20:11.114566+0000 mgr.a (mgr.14152) 30 : cephadm [INF] Updating smithi133:/etc/ceph/ceph.conf 2024-04-15T21:21:06.688 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:20:11.329875+0000 mgr.a (mgr.14152) 31 : cephadm [INF] Updating smithi133:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:06.688 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:11.829614+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.688 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:11.836172+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.688 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:11.839733+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi133", "caps": []}]: dispatch 2024-04-15T21:21:06.688 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:11.841742+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi133", "caps": []}]': finished 2024-04-15T21:21:06.688 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:20:11.494708+0000 mgr.a (mgr.14152) 32 : cephadm [INF] Updating smithi133:/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:21:06.688 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:11.540196+0000 mgr.a (mgr.14152) 33 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.688 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:20:11.659491+0000 mgr.a (mgr.14152) 34 : cephadm [INF] Updating smithi133:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T21:21:06.688 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:20:12.385097+0000 mgr.a (mgr.14152) 35 : cephadm [INF] Deploying daemon agent.smithi133 on smithi133 2024-04-15T21:21:06.689 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:13.587089+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.689 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:13.613821+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.689 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:13.621026+0000 mon.a (mon.0) 147 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.689 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:13.688630+0000 mon.a (mon.0) 148 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:06.689 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:13.693058+0000 mon.a (mon.0) 149 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:06.689 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:13.694572+0000 mon.a (mon.0) 150 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:06.689 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:13.704450+0000 mon.a (mon.0) 151 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.689 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:13.775015+0000 mon.a (mon.0) 152 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:06.689 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:13.779124+0000 mon.a (mon.0) 153 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:06.689 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:13.780467+0000 mon.a (mon.0) 154 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:06.689 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:13.789728+0000 mon.a (mon.0) 155 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.689 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:14.067164+0000 mon.a (mon.0) 156 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.689 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:13.540588+0000 mgr.a (mgr.14152) 36 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.689 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:15.142440+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.690 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:15.150332+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.690 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:15.541024+0000 mgr.a (mgr.14152) 37 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.690 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:17.121312+0000 mgr.a (mgr.14152) 38 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:21:06.690 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:17.622617+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.690 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:17.541430+0000 mgr.a (mgr.14152) 39 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.690 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:19.541812+0000 mgr.a (mgr.14152) 40 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.690 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:21.542180+0000 mgr.a (mgr.14152) 41 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.690 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:22.327601+0000 mon.a (mon.0) 160 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.690 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:22.336485+0000 mon.a (mon.0) 161 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.690 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:22.344621+0000 mon.a (mon.0) 162 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.690 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:23.542593+0000 mgr.a (mgr.14152) 42 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.690 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:25.542904+0000 mgr.a (mgr.14152) 43 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.690 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:26.572995+0000 mgr.a (mgr.14152) 44 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi187", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:21:06.691 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:20:27.281744+0000 mgr.a (mgr.14152) 45 : cephadm [INF] Deploying cephadm binary to smithi187 2024-04-15T21:21:06.691 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:27.882720+0000 mon.a (mon.0) 163 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.691 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:27.891682+0000 mon.a (mon.0) 164 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.691 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:27.543311+0000 mgr.a (mgr.14152) 46 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.691 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:29.543838+0000 mgr.a (mgr.14152) 47 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.691 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:31.544324+0000 mgr.a (mgr.14152) 48 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.691 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:32.520132+0000 mon.a (mon.0) 165 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.691 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:32.565768+0000 mon.a (mon.0) 166 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:06.691 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:33.037728+0000 mon.a (mon.0) 167 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.691 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:20:32.520992+0000 mgr.a (mgr.14152) 49 : cephadm [INF] Added host smithi187 2024-04-15T21:21:06.691 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:33.544883+0000 mgr.a (mgr.14152) 50 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.691 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:34.564913+0000 mon.a (mon.0) 168 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.691 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:34.570902+0000 mon.a (mon.0) 169 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.691 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:34.572512+0000 mon.a (mon.0) 170 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi187", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:21:06.692 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:34.574961+0000 mon.a (mon.0) 171 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:06.692 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:34.576995+0000 mon.a (mon.0) 172 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:06.692 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:34.695086+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.692 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:34.701103+0000 mon.a (mon.0) 174 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.692 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:34.710941+0000 mon.a (mon.0) 175 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.692 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:20:34.580009+0000 mgr.a (mgr.14152) 51 : cephadm [INF] Updating smithi187:/etc/ceph/ceph.conf 2024-04-15T21:21:06.692 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:20:34.796756+0000 mgr.a (mgr.14152) 52 : cephadm [INF] Updating smithi187:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:06.692 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:20:35.278111+0000 mgr.a (mgr.14152) 53 : cephadm [INF] Updating smithi187:/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:21:06.692 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:35.564018+0000 mon.a (mon.0) 176 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.692 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:35.571539+0000 mon.a (mon.0) 177 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.692 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:35.574797+0000 mon.a (mon.0) 178 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi187", "caps": []}]: dispatch 2024-04-15T21:21:06.692 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:35.577753+0000 mon.a (mon.0) 179 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi187", "caps": []}]': finished 2024-04-15T21:21:06.692 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:20:35.392423+0000 mgr.a (mgr.14152) 54 : cephadm [INF] Updating smithi187:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T21:21:06.693 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:35.545296+0000 mgr.a (mgr.14152) 55 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.693 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:20:36.957255+0000 mgr.a (mgr.14152) 56 : cephadm [INF] Deploying daemon agent.smithi187 on smithi187 2024-04-15T21:21:06.693 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:37.885919+0000 mon.a (mon.0) 180 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.693 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:37.933412+0000 mon.a (mon.0) 181 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.693 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:37.940265+0000 mon.a (mon.0) 182 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.693 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:38.038833+0000 mon.a (mon.0) 183 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:06.693 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:38.042994+0000 mon.a (mon.0) 184 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:06.693 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:38.044772+0000 mon.a (mon.0) 185 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:06.693 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:38.055464+0000 mon.a (mon.0) 186 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.693 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:38.140308+0000 mon.a (mon.0) 187 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:06.693 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:38.143655+0000 mon.a (mon.0) 188 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:06.693 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:38.144626+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:06.693 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:38.150245+0000 mon.a (mon.0) 190 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.693 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:37.545582+0000 mgr.a (mgr.14152) 57 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.694 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:38.373260+0000 mon.a (mon.0) 191 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.694 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:39.431451+0000 mon.a (mon.0) 192 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.694 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:39.440875+0000 mon.a (mon.0) 193 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.694 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:39.545905+0000 mgr.a (mgr.14152) 58 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.694 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:41.546316+0000 mgr.a (mgr.14152) 59 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.694 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:41.774785+0000 mgr.a (mgr.14152) 60 : audit [DBG] from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:21:06.694 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:42.489229+0000 mon.a (mon.0) 194 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.694 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:42.495035+0000 mon.a (mon.0) 195 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.694 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:42.502788+0000 mon.a (mon.0) 196 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.694 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:42.629270+0000 mon.a (mon.0) 197 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.694 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:43.546815+0000 mgr.a (mgr.14152) 61 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.694 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:45.547260+0000 mgr.a (mgr.14152) 62 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.694 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:47.547683+0000 mgr.a (mgr.14152) 63 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.695 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:49.548140+0000 mgr.a (mgr.14152) 64 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.695 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:49.839806+0000 mon.a (mon.0) 198 : audit [INF] from='client.? 172.21.15.132:0/1292467444' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-15T21:21:06.695 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:50.648282+0000 mon.a (mon.0) 199 : audit [INF] from='client.? 172.21.15.132:0/1292467444' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-15T21:21:06.695 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:50.654240+0000 mon.a (mon.0) 200 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-15T21:21:06.695 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:51.548615+0000 mgr.a (mgr.14152) 65 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.695 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:52.270461+0000 mon.a (mon.0) 201 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.695 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:52.280575+0000 mon.a (mon.0) 202 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.695 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:53.549047+0000 mgr.a (mgr.14152) 66 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.695 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:54.908497+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.695 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:54.915393+0000 mon.a (mon.0) 204 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.695 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:54.923877+0000 mon.a (mon.0) 205 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.695 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:55.542087+0000 mgr.a (mgr.14152) 67 : audit [DBG] from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi132:172.21.15.132=a;smithi133:172.21.15.133=b;smithi187:172.21.15.187=c", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:21:06.695 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:20:55.545316+0000 mgr.a (mgr.14152) 68 : cephadm [INF] Saving service mon spec with placement smithi132:172.21.15.132=a;smithi133:172.21.15.133=b;smithi187:172.21.15.187=c;count:3 2024-04-15T21:21:06.695 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:55.548661+0000 mon.a (mon.0) 206 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.696 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:55.549301+0000 mgr.a (mgr.14152) 69 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.696 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:55.557570+0000 mon.a (mon.0) 207 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:06.696 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:55.560112+0000 mon.a (mon.0) 208 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:06.696 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:55.560837+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:06.696 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:55.565378+0000 mon.a (mon.0) 210 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.696 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:55.567676+0000 mon.a (mon.0) 211 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:21:06.696 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:20:55.568361+0000 mon.a (mon.0) 212 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:06.696 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:20:55.569233+0000 mgr.a (mgr.14152) 70 : cephadm [INF] Deploying daemon mon.c on smithi187 2024-04-15T21:21:06.696 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:57.549734+0000 mgr.a (mgr.14152) 71 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.696 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:20:59.550145+0000 mgr.a (mgr.14152) 72 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.696 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:21:01.461065+0000 mon.a (mon.0) 213 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.696 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:21:01.466972+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.697 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:21:01.504111+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:06.697 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:21:01.505458+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:21:06.697 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: audit 2024-04-15T21:21:01.507144+0000 mon.a (mon.0) 217 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:06.697 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cephadm 2024-04-15T21:21:01.509163+0000 mgr.a (mgr.14152) 73 : cephadm [INF] Deploying daemon mon.b on smithi133 2024-04-15T21:21:06.697 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: cluster 2024-04-15T21:21:01.550554+0000 mgr.a (mgr.14152) 74 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:06.697 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:06 smithi133 bash[22165]: debug 2024-04-15T21:21:06.649+0000 7fc8e6ee0700 1 mon.b@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-04-15T21:21:08.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: audit 2024-04-15T21:21:03.131799+0000 mon.a (mon.0) 223 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:21:08.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: cluster 2024-04-15T21:21:03.132212+0000 mon.a (mon.0) 224 : cluster [INF] mon.a calling monitor election 2024-04-15T21:21:08.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: audit 2024-04-15T21:21:03.154838+0000 mon.a (mon.0) 225 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:08.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: cluster 2024-04-15T21:21:03.550894+0000 mgr.a (mgr.14152) 75 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:08.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: audit 2024-04-15T21:21:04.122480+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:08.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: audit 2024-04-15T21:21:05.122796+0000 mon.a (mon.0) 227 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:08.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: cluster 2024-04-15T21:21:05.125282+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-04-15T21:21:08.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: cluster 2024-04-15T21:21:05.551306+0000 mgr.a (mgr.14152) 76 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:08.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: audit 2024-04-15T21:21:06.123033+0000 mon.a (mon.0) 228 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:08.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: audit 2024-04-15T21:21:06.659669+0000 mon.a (mon.0) 229 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:08.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: audit 2024-04-15T21:21:07.123267+0000 mon.a (mon.0) 230 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:08.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: audit 2024-04-15T21:21:07.659498+0000 mon.a (mon.0) 231 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:08.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: audit 2024-04-15T21:21:08.123142+0000 mon.a (mon.0) 232 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:08.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: cluster 2024-04-15T21:21:08.178033+0000 mon.a (mon.0) 233 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-15T21:21:08.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: cluster 2024-04-15T21:21:08.186578+0000 mon.a (mon.0) 234 : cluster [DBG] monmap epoch 2 2024-04-15T21:21:08.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: cluster 2024-04-15T21:21:08.186616+0000 mon.a (mon.0) 235 : cluster [DBG] fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:21:08.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: cluster 2024-04-15T21:21:08.186638+0000 mon.a (mon.0) 236 : cluster [DBG] last_changed 2024-04-15T21:21:03.122697+0000 2024-04-15T21:21:08.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: cluster 2024-04-15T21:21:08.186657+0000 mon.a (mon.0) 237 : cluster [DBG] created 2024-04-15T21:18:17.192210+0000 2024-04-15T21:21:08.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: cluster 2024-04-15T21:21:08.186680+0000 mon.a (mon.0) 238 : cluster [DBG] min_mon_release 19 (squid) 2024-04-15T21:21:08.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: cluster 2024-04-15T21:21:08.186704+0000 mon.a (mon.0) 239 : cluster [DBG] election_strategy: 1 2024-04-15T21:21:08.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: cluster 2024-04-15T21:21:08.186724+0000 mon.a (mon.0) 240 : cluster [DBG] 0: [v2:172.21.15.132:3300/0,v1:172.21.15.132:6789/0] mon.a 2024-04-15T21:21:08.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: cluster 2024-04-15T21:21:08.186750+0000 mon.a (mon.0) 241 : cluster [DBG] 1: [v2:172.21.15.187:3300/0,v1:172.21.15.187:6789/0] mon.c 2024-04-15T21:21:08.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: cluster 2024-04-15T21:21:08.206405+0000 mon.a (mon.0) 242 : cluster [DBG] fsmap 2024-04-15T21:21:08.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: cluster 2024-04-15T21:21:08.206489+0000 mon.a (mon.0) 243 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-15T21:21:08.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: cluster 2024-04-15T21:21:08.206775+0000 mon.a (mon.0) 244 : cluster [DBG] mgrmap e13: a(active, since 100s) 2024-04-15T21:21:08.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: cluster 2024-04-15T21:21:08.207025+0000 mon.a (mon.0) 245 : cluster [INF] overall HEALTH_OK 2024-04-15T21:21:08.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: audit 2024-04-15T21:21:08.215388+0000 mon.a (mon.0) 246 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:08.630 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: audit 2024-04-15T21:21:08.224090+0000 mon.a (mon.0) 247 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:08.630 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: audit 2024-04-15T21:21:08.233208+0000 mon.a (mon.0) 248 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:08.630 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: audit 2024-04-15T21:21:08.241548+0000 mon.a (mon.0) 249 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:08.630 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:08 smithi132 bash[21536]: audit 2024-04-15T21:21:08.250953+0000 mon.a (mon.0) 250 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:08.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: audit 2024-04-15T21:21:03.131799+0000 mon.a (mon.0) 223 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:21:08.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: cluster 2024-04-15T21:21:03.132212+0000 mon.a (mon.0) 224 : cluster [INF] mon.a calling monitor election 2024-04-15T21:21:08.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: audit 2024-04-15T21:21:03.154838+0000 mon.a (mon.0) 225 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:08.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: cluster 2024-04-15T21:21:03.550894+0000 mgr.a (mgr.14152) 75 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:08.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: audit 2024-04-15T21:21:04.122480+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:08.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: audit 2024-04-15T21:21:05.122796+0000 mon.a (mon.0) 227 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:08.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: cluster 2024-04-15T21:21:05.125282+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-04-15T21:21:08.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: cluster 2024-04-15T21:21:05.551306+0000 mgr.a (mgr.14152) 76 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:08.666 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: audit 2024-04-15T21:21:06.123033+0000 mon.a (mon.0) 228 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:08.666 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: audit 2024-04-15T21:21:06.659669+0000 mon.a (mon.0) 229 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:08.666 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: audit 2024-04-15T21:21:07.123267+0000 mon.a (mon.0) 230 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:08.666 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: audit 2024-04-15T21:21:07.659498+0000 mon.a (mon.0) 231 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:08.666 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: audit 2024-04-15T21:21:08.123142+0000 mon.a (mon.0) 232 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:08.666 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: cluster 2024-04-15T21:21:08.178033+0000 mon.a (mon.0) 233 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-15T21:21:08.666 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: cluster 2024-04-15T21:21:08.186578+0000 mon.a (mon.0) 234 : cluster [DBG] monmap epoch 2 2024-04-15T21:21:08.666 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: cluster 2024-04-15T21:21:08.186616+0000 mon.a (mon.0) 235 : cluster [DBG] fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:21:08.666 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: cluster 2024-04-15T21:21:08.186638+0000 mon.a (mon.0) 236 : cluster [DBG] last_changed 2024-04-15T21:21:03.122697+0000 2024-04-15T21:21:08.666 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: cluster 2024-04-15T21:21:08.186657+0000 mon.a (mon.0) 237 : cluster [DBG] created 2024-04-15T21:18:17.192210+0000 2024-04-15T21:21:08.666 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: cluster 2024-04-15T21:21:08.186680+0000 mon.a (mon.0) 238 : cluster [DBG] min_mon_release 19 (squid) 2024-04-15T21:21:08.666 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: cluster 2024-04-15T21:21:08.186704+0000 mon.a (mon.0) 239 : cluster [DBG] election_strategy: 1 2024-04-15T21:21:08.666 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: cluster 2024-04-15T21:21:08.186724+0000 mon.a (mon.0) 240 : cluster [DBG] 0: [v2:172.21.15.132:3300/0,v1:172.21.15.132:6789/0] mon.a 2024-04-15T21:21:08.666 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: cluster 2024-04-15T21:21:08.186750+0000 mon.a (mon.0) 241 : cluster [DBG] 1: [v2:172.21.15.187:3300/0,v1:172.21.15.187:6789/0] mon.c 2024-04-15T21:21:08.667 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: cluster 2024-04-15T21:21:08.206405+0000 mon.a (mon.0) 242 : cluster [DBG] fsmap 2024-04-15T21:21:08.667 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: cluster 2024-04-15T21:21:08.206489+0000 mon.a (mon.0) 243 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-15T21:21:08.667 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: cluster 2024-04-15T21:21:08.206775+0000 mon.a (mon.0) 244 : cluster [DBG] mgrmap e13: a(active, since 100s) 2024-04-15T21:21:08.667 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: cluster 2024-04-15T21:21:08.207025+0000 mon.a (mon.0) 245 : cluster [INF] overall HEALTH_OK 2024-04-15T21:21:08.667 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: audit 2024-04-15T21:21:08.215388+0000 mon.a (mon.0) 246 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:08.667 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: audit 2024-04-15T21:21:08.224090+0000 mon.a (mon.0) 247 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:08.667 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: audit 2024-04-15T21:21:08.233208+0000 mon.a (mon.0) 248 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:08.667 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: audit 2024-04-15T21:21:08.241548+0000 mon.a (mon.0) 249 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:08.667 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:08 smithi187 bash[22200]: audit 2024-04-15T21:21:08.250953+0000 mon.a (mon.0) 250 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:08.766 INFO:teuthology.orchestra.run.smithi187.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.c/config 2024-04-15T21:21:09.377 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:21:09 smithi132 bash[21820]: debug 2024-04-15T21:21:09.118+0000 7f05b32be700 -1 mgr.server handle_report got status from non-daemon mon.c 2024-04-15T21:21:13.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:03.131799+0000 mon.a (mon.0) 223 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:21:13.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:03.132212+0000 mon.a (mon.0) 224 : cluster [INF] mon.a calling monitor election 2024-04-15T21:21:13.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:03.154838+0000 mon.a (mon.0) 225 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:13.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:03.550894+0000 mgr.a (mgr.14152) 75 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:13.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:04.122480+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:13.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:05.122796+0000 mon.a (mon.0) 227 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:13.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:05.125282+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-04-15T21:21:13.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:05.551306+0000 mgr.a (mgr.14152) 76 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:13.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:06.123033+0000 mon.a (mon.0) 228 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:13.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:06.659669+0000 mon.a (mon.0) 229 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:13.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:07.123267+0000 mon.a (mon.0) 230 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:13.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:07.659498+0000 mon.a (mon.0) 231 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:13.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:08.123142+0000 mon.a (mon.0) 232 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:13.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:08.178033+0000 mon.a (mon.0) 233 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-15T21:21:13.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:08.186578+0000 mon.a (mon.0) 234 : cluster [DBG] monmap epoch 2 2024-04-15T21:21:13.998 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:08.186616+0000 mon.a (mon.0) 235 : cluster [DBG] fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:21:13.998 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:08.186638+0000 mon.a (mon.0) 236 : cluster [DBG] last_changed 2024-04-15T21:21:03.122697+0000 2024-04-15T21:21:13.998 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:08.186657+0000 mon.a (mon.0) 237 : cluster [DBG] created 2024-04-15T21:18:17.192210+0000 2024-04-15T21:21:13.998 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:08.186680+0000 mon.a (mon.0) 238 : cluster [DBG] min_mon_release 19 (squid) 2024-04-15T21:21:13.998 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:08.186704+0000 mon.a (mon.0) 239 : cluster [DBG] election_strategy: 1 2024-04-15T21:21:13.998 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:08.186724+0000 mon.a (mon.0) 240 : cluster [DBG] 0: [v2:172.21.15.132:3300/0,v1:172.21.15.132:6789/0] mon.a 2024-04-15T21:21:13.998 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:08.186750+0000 mon.a (mon.0) 241 : cluster [DBG] 1: [v2:172.21.15.187:3300/0,v1:172.21.15.187:6789/0] mon.c 2024-04-15T21:21:13.998 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:08.206405+0000 mon.a (mon.0) 242 : cluster [DBG] fsmap 2024-04-15T21:21:13.999 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:08.206489+0000 mon.a (mon.0) 243 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-15T21:21:13.999 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:08.206775+0000 mon.a (mon.0) 244 : cluster [DBG] mgrmap e13: a(active, since 100s) 2024-04-15T21:21:13.999 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:08.207025+0000 mon.a (mon.0) 245 : cluster [INF] overall HEALTH_OK 2024-04-15T21:21:13.999 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:08.215388+0000 mon.a (mon.0) 246 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:13.999 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:08.224090+0000 mon.a (mon.0) 247 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:13.999 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:08.233208+0000 mon.a (mon.0) 248 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:13.999 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:08.241548+0000 mon.a (mon.0) 249 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:13.999 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:08.250953+0000 mon.a (mon.0) 250 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:13.999 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cephadm 2024-04-15T21:21:08.415384+0000 mgr.a (mgr.14152) 78 : cephadm [INF] Updating smithi132:/etc/ceph/ceph.conf 2024-04-15T21:21:13.999 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cephadm 2024-04-15T21:21:08.415837+0000 mgr.a (mgr.14152) 79 : cephadm [INF] Updating smithi133:/etc/ceph/ceph.conf 2024-04-15T21:21:13.999 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cephadm 2024-04-15T21:21:08.416108+0000 mgr.a (mgr.14152) 80 : cephadm [INF] Updating smithi187:/etc/ceph/ceph.conf 2024-04-15T21:21:13.999 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:08.664126+0000 mon.a (mon.0) 257 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:21:13.999 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:08.664395+0000 mon.a (mon.0) 258 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:14.000 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:08.664518+0000 mon.a (mon.0) 259 : cluster [INF] mon.a calling monitor election 2024-04-15T21:21:14.000 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:08.665274+0000 mon.a (mon.0) 260 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:14.000 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:08.667006+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-04-15T21:21:14.000 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cephadm 2024-04-15T21:21:08.681469+0000 mgr.a (mgr.14152) 81 : cephadm [INF] Updating smithi133:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:14.000 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cephadm 2024-04-15T21:21:08.682074+0000 mgr.a (mgr.14152) 82 : cephadm [INF] Updating smithi132:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:14.000 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cephadm 2024-04-15T21:21:08.682764+0000 mgr.a (mgr.14152) 83 : cephadm [INF] Updating smithi187:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:14.000 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:09.552088+0000 mgr.a (mgr.14152) 84 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:14.000 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:09.660121+0000 mon.a (mon.0) 261 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:14.000 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:10.660425+0000 mon.a (mon.0) 262 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:14.000 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:10.661793+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-04-15T21:21:14.000 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:11.552513+0000 mgr.a (mgr.14152) 85 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:14.000 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:11.660627+0000 mon.a (mon.0) 263 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:14.000 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:12.660626+0000 mon.a (mon.0) 264 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:14.000 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:13.660841+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:14.000 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:13.687133+0000 mon.a (mon.0) 266 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-15T21:21:14.001 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:13.694382+0000 mon.a (mon.0) 267 : cluster [DBG] monmap epoch 3 2024-04-15T21:21:14.001 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:13.694422+0000 mon.a (mon.0) 268 : cluster [DBG] fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:21:14.001 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:13.694445+0000 mon.a (mon.0) 269 : cluster [DBG] last_changed 2024-04-15T21:21:08.659681+0000 2024-04-15T21:21:14.001 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:13.694471+0000 mon.a (mon.0) 270 : cluster [DBG] created 2024-04-15T21:18:17.192210+0000 2024-04-15T21:21:14.001 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:13.694495+0000 mon.a (mon.0) 271 : cluster [DBG] min_mon_release 19 (squid) 2024-04-15T21:21:14.001 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:13.694523+0000 mon.a (mon.0) 272 : cluster [DBG] election_strategy: 1 2024-04-15T21:21:14.001 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:13.694546+0000 mon.a (mon.0) 273 : cluster [DBG] 0: [v2:172.21.15.132:3300/0,v1:172.21.15.132:6789/0] mon.a 2024-04-15T21:21:14.001 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:13.694570+0000 mon.a (mon.0) 274 : cluster [DBG] 1: [v2:172.21.15.187:3300/0,v1:172.21.15.187:6789/0] mon.c 2024-04-15T21:21:14.001 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:13.694594+0000 mon.a (mon.0) 275 : cluster [DBG] 2: [v2:172.21.15.133:3300/0,v1:172.21.15.133:6789/0] mon.b 2024-04-15T21:21:14.001 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:13.714393+0000 mon.a (mon.0) 276 : cluster [DBG] fsmap 2024-04-15T21:21:14.001 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:13.714482+0000 mon.a (mon.0) 277 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-15T21:21:14.001 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:13.714778+0000 mon.a (mon.0) 278 : cluster [DBG] mgrmap e13: a(active, since 106s) 2024-04-15T21:21:14.001 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: cluster 2024-04-15T21:21:13.715027+0000 mon.a (mon.0) 279 : cluster [INF] overall HEALTH_OK 2024-04-15T21:21:14.001 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:13.723103+0000 mon.a (mon.0) 280 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.002 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:13.729292+0000 mon.a (mon.0) 281 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.002 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:13.736293+0000 mon.a (mon.0) 282 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.002 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:13.742495+0000 mon.a (mon.0) 283 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.002 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:13.748759+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.002 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:13.754360+0000 mon.a (mon.0) 285 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.002 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:13 smithi133 bash[22165]: audit 2024-04-15T21:21:13.760057+0000 mon.a (mon.0) 286 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cephadm 2024-04-15T21:21:08.415384+0000 mgr.a (mgr.14152) 78 : cephadm [INF] Updating smithi132:/etc/ceph/ceph.conf 2024-04-15T21:21:14.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cephadm 2024-04-15T21:21:08.415837+0000 mgr.a (mgr.14152) 79 : cephadm [INF] Updating smithi133:/etc/ceph/ceph.conf 2024-04-15T21:21:14.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cephadm 2024-04-15T21:21:08.416108+0000 mgr.a (mgr.14152) 80 : cephadm [INF] Updating smithi187:/etc/ceph/ceph.conf 2024-04-15T21:21:14.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: audit 2024-04-15T21:21:08.664126+0000 mon.a (mon.0) 257 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:21:14.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: audit 2024-04-15T21:21:08.664395+0000 mon.a (mon.0) 258 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:14.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cluster 2024-04-15T21:21:08.664518+0000 mon.a (mon.0) 259 : cluster [INF] mon.a calling monitor election 2024-04-15T21:21:14.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: audit 2024-04-15T21:21:08.665274+0000 mon.a (mon.0) 260 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:14.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cluster 2024-04-15T21:21:08.667006+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-04-15T21:21:14.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cephadm 2024-04-15T21:21:08.681469+0000 mgr.a (mgr.14152) 81 : cephadm [INF] Updating smithi133:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:14.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cephadm 2024-04-15T21:21:08.682074+0000 mgr.a (mgr.14152) 82 : cephadm [INF] Updating smithi132:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:14.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cephadm 2024-04-15T21:21:08.682764+0000 mgr.a (mgr.14152) 83 : cephadm [INF] Updating smithi187:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:14.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cluster 2024-04-15T21:21:09.552088+0000 mgr.a (mgr.14152) 84 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:14.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: audit 2024-04-15T21:21:09.660121+0000 mon.a (mon.0) 261 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:14.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: audit 2024-04-15T21:21:10.660425+0000 mon.a (mon.0) 262 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:14.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cluster 2024-04-15T21:21:10.661793+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-04-15T21:21:14.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cluster 2024-04-15T21:21:11.552513+0000 mgr.a (mgr.14152) 85 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:14.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: audit 2024-04-15T21:21:11.660627+0000 mon.a (mon.0) 263 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:14.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: audit 2024-04-15T21:21:12.660626+0000 mon.a (mon.0) 264 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:14.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: audit 2024-04-15T21:21:13.660841+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:14.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cluster 2024-04-15T21:21:13.687133+0000 mon.a (mon.0) 266 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-15T21:21:14.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cluster 2024-04-15T21:21:13.694382+0000 mon.a (mon.0) 267 : cluster [DBG] monmap epoch 3 2024-04-15T21:21:14.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cluster 2024-04-15T21:21:13.694422+0000 mon.a (mon.0) 268 : cluster [DBG] fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:21:14.130 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cluster 2024-04-15T21:21:13.694445+0000 mon.a (mon.0) 269 : cluster [DBG] last_changed 2024-04-15T21:21:08.659681+0000 2024-04-15T21:21:14.130 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cluster 2024-04-15T21:21:13.694471+0000 mon.a (mon.0) 270 : cluster [DBG] created 2024-04-15T21:18:17.192210+0000 2024-04-15T21:21:14.130 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cluster 2024-04-15T21:21:13.694495+0000 mon.a (mon.0) 271 : cluster [DBG] min_mon_release 19 (squid) 2024-04-15T21:21:14.130 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cluster 2024-04-15T21:21:13.694523+0000 mon.a (mon.0) 272 : cluster [DBG] election_strategy: 1 2024-04-15T21:21:14.130 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cluster 2024-04-15T21:21:13.694546+0000 mon.a (mon.0) 273 : cluster [DBG] 0: [v2:172.21.15.132:3300/0,v1:172.21.15.132:6789/0] mon.a 2024-04-15T21:21:14.130 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cluster 2024-04-15T21:21:13.694570+0000 mon.a (mon.0) 274 : cluster [DBG] 1: [v2:172.21.15.187:3300/0,v1:172.21.15.187:6789/0] mon.c 2024-04-15T21:21:14.130 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cluster 2024-04-15T21:21:13.694594+0000 mon.a (mon.0) 275 : cluster [DBG] 2: [v2:172.21.15.133:3300/0,v1:172.21.15.133:6789/0] mon.b 2024-04-15T21:21:14.130 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cluster 2024-04-15T21:21:13.714393+0000 mon.a (mon.0) 276 : cluster [DBG] fsmap 2024-04-15T21:21:14.130 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cluster 2024-04-15T21:21:13.714482+0000 mon.a (mon.0) 277 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-15T21:21:14.130 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cluster 2024-04-15T21:21:13.714778+0000 mon.a (mon.0) 278 : cluster [DBG] mgrmap e13: a(active, since 106s) 2024-04-15T21:21:14.130 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: cluster 2024-04-15T21:21:13.715027+0000 mon.a (mon.0) 279 : cluster [INF] overall HEALTH_OK 2024-04-15T21:21:14.130 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: audit 2024-04-15T21:21:13.723103+0000 mon.a (mon.0) 280 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.130 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: audit 2024-04-15T21:21:13.729292+0000 mon.a (mon.0) 281 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.130 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: audit 2024-04-15T21:21:13.736293+0000 mon.a (mon.0) 282 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.131 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: audit 2024-04-15T21:21:13.742495+0000 mon.a (mon.0) 283 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.131 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: audit 2024-04-15T21:21:13.748759+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.131 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: audit 2024-04-15T21:21:13.754360+0000 mon.a (mon.0) 285 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.131 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:13 smithi132 bash[21536]: audit 2024-04-15T21:21:13.760057+0000 mon.a (mon.0) 286 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cephadm 2024-04-15T21:21:08.415384+0000 mgr.a (mgr.14152) 78 : cephadm [INF] Updating smithi132:/etc/ceph/ceph.conf 2024-04-15T21:21:14.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cephadm 2024-04-15T21:21:08.415837+0000 mgr.a (mgr.14152) 79 : cephadm [INF] Updating smithi133:/etc/ceph/ceph.conf 2024-04-15T21:21:14.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cephadm 2024-04-15T21:21:08.416108+0000 mgr.a (mgr.14152) 80 : cephadm [INF] Updating smithi187:/etc/ceph/ceph.conf 2024-04-15T21:21:14.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: audit 2024-04-15T21:21:08.664126+0000 mon.a (mon.0) 257 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:21:14.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: audit 2024-04-15T21:21:08.664395+0000 mon.a (mon.0) 258 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:14.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cluster 2024-04-15T21:21:08.664518+0000 mon.a (mon.0) 259 : cluster [INF] mon.a calling monitor election 2024-04-15T21:21:14.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: audit 2024-04-15T21:21:08.665274+0000 mon.a (mon.0) 260 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:21:14.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cluster 2024-04-15T21:21:08.667006+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-04-15T21:21:14.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cephadm 2024-04-15T21:21:08.681469+0000 mgr.a (mgr.14152) 81 : cephadm [INF] Updating smithi133:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:14.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cephadm 2024-04-15T21:21:08.682074+0000 mgr.a (mgr.14152) 82 : cephadm [INF] Updating smithi132:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:14.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cephadm 2024-04-15T21:21:08.682764+0000 mgr.a (mgr.14152) 83 : cephadm [INF] Updating smithi187:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:14.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cluster 2024-04-15T21:21:09.552088+0000 mgr.a (mgr.14152) 84 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:14.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: audit 2024-04-15T21:21:09.660121+0000 mon.a (mon.0) 261 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:14.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: audit 2024-04-15T21:21:10.660425+0000 mon.a (mon.0) 262 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:14.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cluster 2024-04-15T21:21:10.661793+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-04-15T21:21:14.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cluster 2024-04-15T21:21:11.552513+0000 mgr.a (mgr.14152) 85 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:14.166 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: audit 2024-04-15T21:21:11.660627+0000 mon.a (mon.0) 263 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:14.166 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: audit 2024-04-15T21:21:12.660626+0000 mon.a (mon.0) 264 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:14.166 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: audit 2024-04-15T21:21:13.660841+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:14.166 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cluster 2024-04-15T21:21:13.687133+0000 mon.a (mon.0) 266 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-15T21:21:14.166 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cluster 2024-04-15T21:21:13.694382+0000 mon.a (mon.0) 267 : cluster [DBG] monmap epoch 3 2024-04-15T21:21:14.166 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cluster 2024-04-15T21:21:13.694422+0000 mon.a (mon.0) 268 : cluster [DBG] fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:21:14.166 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cluster 2024-04-15T21:21:13.694445+0000 mon.a (mon.0) 269 : cluster [DBG] last_changed 2024-04-15T21:21:08.659681+0000 2024-04-15T21:21:14.166 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cluster 2024-04-15T21:21:13.694471+0000 mon.a (mon.0) 270 : cluster [DBG] created 2024-04-15T21:18:17.192210+0000 2024-04-15T21:21:14.166 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cluster 2024-04-15T21:21:13.694495+0000 mon.a (mon.0) 271 : cluster [DBG] min_mon_release 19 (squid) 2024-04-15T21:21:14.167 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cluster 2024-04-15T21:21:13.694523+0000 mon.a (mon.0) 272 : cluster [DBG] election_strategy: 1 2024-04-15T21:21:14.167 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cluster 2024-04-15T21:21:13.694546+0000 mon.a (mon.0) 273 : cluster [DBG] 0: [v2:172.21.15.132:3300/0,v1:172.21.15.132:6789/0] mon.a 2024-04-15T21:21:14.167 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cluster 2024-04-15T21:21:13.694570+0000 mon.a (mon.0) 274 : cluster [DBG] 1: [v2:172.21.15.187:3300/0,v1:172.21.15.187:6789/0] mon.c 2024-04-15T21:21:14.167 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cluster 2024-04-15T21:21:13.694594+0000 mon.a (mon.0) 275 : cluster [DBG] 2: [v2:172.21.15.133:3300/0,v1:172.21.15.133:6789/0] mon.b 2024-04-15T21:21:14.167 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cluster 2024-04-15T21:21:13.714393+0000 mon.a (mon.0) 276 : cluster [DBG] fsmap 2024-04-15T21:21:14.167 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cluster 2024-04-15T21:21:13.714482+0000 mon.a (mon.0) 277 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-15T21:21:14.167 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cluster 2024-04-15T21:21:13.714778+0000 mon.a (mon.0) 278 : cluster [DBG] mgrmap e13: a(active, since 106s) 2024-04-15T21:21:14.167 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: cluster 2024-04-15T21:21:13.715027+0000 mon.a (mon.0) 279 : cluster [INF] overall HEALTH_OK 2024-04-15T21:21:14.167 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: audit 2024-04-15T21:21:13.723103+0000 mon.a (mon.0) 280 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.167 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: audit 2024-04-15T21:21:13.729292+0000 mon.a (mon.0) 281 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.167 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: audit 2024-04-15T21:21:13.736293+0000 mon.a (mon.0) 282 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.167 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: audit 2024-04-15T21:21:13.742495+0000 mon.a (mon.0) 283 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.167 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: audit 2024-04-15T21:21:13.748759+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.167 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: audit 2024-04-15T21:21:13.754360+0000 mon.a (mon.0) 285 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.167 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:13 smithi187 bash[22200]: audit 2024-04-15T21:21:13.760057+0000 mon.a (mon.0) 286 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:14 smithi133 bash[22165]: cluster 2024-04-15T21:21:13.552885+0000 mgr.a (mgr.14152) 86 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:14.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:14 smithi133 bash[22165]: audit 2024-04-15T21:21:13.765799+0000 mon.a (mon.0) 287 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:14 smithi133 bash[22165]: audit 2024-04-15T21:21:13.771858+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:14 smithi133 bash[22165]: audit 2024-04-15T21:21:13.782627+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:14 smithi133 bash[22165]: audit 2024-04-15T21:21:13.789138+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:14 smithi133 bash[22165]: cephadm 2024-04-15T21:21:13.790027+0000 mgr.a (mgr.14152) 87 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-04-15T21:21:14.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:14 smithi133 bash[22165]: audit 2024-04-15T21:21:13.796046+0000 mon.a (mon.0) 291 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:14 smithi133 bash[22165]: cephadm 2024-04-15T21:21:13.888627+0000 mgr.a (mgr.14152) 88 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-04-15T21:21:14.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:14 smithi133 bash[22165]: audit 2024-04-15T21:21:13.889301+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:21:14.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:14 smithi133 bash[22165]: audit 2024-04-15T21:21:13.890501+0000 mon.a (mon.0) 293 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:21:14.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:14 smithi133 bash[22165]: audit 2024-04-15T21:21:13.891572+0000 mon.a (mon.0) 294 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:14.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:14 smithi133 bash[22165]: cephadm 2024-04-15T21:21:13.892994+0000 mgr.a (mgr.14152) 89 : cephadm [INF] Reconfiguring daemon mon.a on smithi132 2024-04-15T21:21:14.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:14 smithi133 bash[22165]: audit 2024-04-15T21:21:13.998081+0000 mon.a (mon.0) 295 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:14 smithi133 bash[22165]: audit 2024-04-15T21:21:14.006433+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:14 smithi133 bash[22165]: audit 2024-04-15T21:21:14.017088+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.997 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:14 smithi133 bash[22165]: audit 2024-04-15T21:21:14.621093+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.998 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:14 smithi133 bash[22165]: audit 2024-04-15T21:21:14.629102+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.998 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:14 smithi133 bash[22165]: audit 2024-04-15T21:21:14.639457+0000 mon.a (mon.0) 300 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:14.998 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:14 smithi133 bash[22165]: audit 2024-04-15T21:21:14.661009+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:15.092 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:14 smithi132 bash[21536]: cluster 2024-04-15T21:21:13.552885+0000 mgr.a (mgr.14152) 86 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:15.092 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:14 smithi132 bash[21536]: audit 2024-04-15T21:21:13.765799+0000 mon.a (mon.0) 287 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.092 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:14 smithi132 bash[21536]: audit 2024-04-15T21:21:13.771858+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.092 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:14 smithi132 bash[21536]: audit 2024-04-15T21:21:13.782627+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.092 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:14 smithi132 bash[21536]: audit 2024-04-15T21:21:13.789138+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.092 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:14 smithi132 bash[21536]: cephadm 2024-04-15T21:21:13.790027+0000 mgr.a (mgr.14152) 87 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-04-15T21:21:15.092 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:14 smithi132 bash[21536]: audit 2024-04-15T21:21:13.796046+0000 mon.a (mon.0) 291 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.093 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:14 smithi132 bash[21536]: cephadm 2024-04-15T21:21:13.888627+0000 mgr.a (mgr.14152) 88 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-04-15T21:21:15.093 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:14 smithi132 bash[21536]: audit 2024-04-15T21:21:13.889301+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:21:15.093 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:14 smithi132 bash[21536]: audit 2024-04-15T21:21:13.890501+0000 mon.a (mon.0) 293 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:21:15.093 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:14 smithi132 bash[21536]: audit 2024-04-15T21:21:13.891572+0000 mon.a (mon.0) 294 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:15.093 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:14 smithi132 bash[21536]: cephadm 2024-04-15T21:21:13.892994+0000 mgr.a (mgr.14152) 89 : cephadm [INF] Reconfiguring daemon mon.a on smithi132 2024-04-15T21:21:15.093 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:14 smithi132 bash[21536]: audit 2024-04-15T21:21:13.998081+0000 mon.a (mon.0) 295 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.093 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:14 smithi132 bash[21536]: audit 2024-04-15T21:21:14.006433+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.093 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:14 smithi132 bash[21536]: audit 2024-04-15T21:21:14.017088+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.093 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:14 smithi132 bash[21536]: audit 2024-04-15T21:21:14.621093+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.093 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:14 smithi132 bash[21536]: audit 2024-04-15T21:21:14.629102+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.093 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:14 smithi132 bash[21536]: audit 2024-04-15T21:21:14.639457+0000 mon.a (mon.0) 300 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.093 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:14 smithi132 bash[21536]: audit 2024-04-15T21:21:14.661009+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:15.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:14 smithi187 bash[22200]: cluster 2024-04-15T21:21:13.552885+0000 mgr.a (mgr.14152) 86 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:15.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:14 smithi187 bash[22200]: audit 2024-04-15T21:21:13.765799+0000 mon.a (mon.0) 287 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:14 smithi187 bash[22200]: audit 2024-04-15T21:21:13.771858+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:14 smithi187 bash[22200]: audit 2024-04-15T21:21:13.782627+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:14 smithi187 bash[22200]: audit 2024-04-15T21:21:13.789138+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:14 smithi187 bash[22200]: cephadm 2024-04-15T21:21:13.790027+0000 mgr.a (mgr.14152) 87 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-04-15T21:21:15.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:14 smithi187 bash[22200]: audit 2024-04-15T21:21:13.796046+0000 mon.a (mon.0) 291 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:14 smithi187 bash[22200]: cephadm 2024-04-15T21:21:13.888627+0000 mgr.a (mgr.14152) 88 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-04-15T21:21:15.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:14 smithi187 bash[22200]: audit 2024-04-15T21:21:13.889301+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:21:15.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:14 smithi187 bash[22200]: audit 2024-04-15T21:21:13.890501+0000 mon.a (mon.0) 293 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:21:15.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:14 smithi187 bash[22200]: audit 2024-04-15T21:21:13.891572+0000 mon.a (mon.0) 294 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:15.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:14 smithi187 bash[22200]: cephadm 2024-04-15T21:21:13.892994+0000 mgr.a (mgr.14152) 89 : cephadm [INF] Reconfiguring daemon mon.a on smithi132 2024-04-15T21:21:15.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:14 smithi187 bash[22200]: audit 2024-04-15T21:21:13.998081+0000 mon.a (mon.0) 295 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:14 smithi187 bash[22200]: audit 2024-04-15T21:21:14.006433+0000 mon.a (mon.0) 296 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:14 smithi187 bash[22200]: audit 2024-04-15T21:21:14.017088+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:14 smithi187 bash[22200]: audit 2024-04-15T21:21:14.621093+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:14 smithi187 bash[22200]: audit 2024-04-15T21:21:14.629102+0000 mon.a (mon.0) 299 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:14 smithi187 bash[22200]: audit 2024-04-15T21:21:14.639457+0000 mon.a (mon.0) 300 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:15.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:14 smithi187 bash[22200]: audit 2024-04-15T21:21:14.661009+0000 mon.a (mon.0) 301 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:21:15.465 INFO:teuthology.orchestra.run.smithi187.stdout: 2024-04-15T21:21:15.465 INFO:teuthology.orchestra.run.smithi187.stdout:{"epoch":3,"fsid":"7ac1dc10-fb6d-11ee-bc8f-c7b262605968","modified":"2024-04-15T21:21:08.659681Z","created":"2024-04-15T21:18:17.192210Z","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.132:3300","nonce":0},{"type":"v1","addr":"172.21.15.132:6789","nonce":0}]},"addr":"172.21.15.132:6789/0","public_addr":"172.21.15.132:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:3300","nonce":0},{"type":"v1","addr":"172.21.15.187:6789","nonce":0}]},"addr":"172.21.15.187:6789/0","public_addr":"172.21.15.187:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.133:3300","nonce":0},{"type":"v1","addr":"172.21.15.133:6789","nonce":0}]},"addr":"172.21.15.133:6789/0","public_addr":"172.21.15.133:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1,2]} 2024-04-15T21:21:15.467 INFO:teuthology.orchestra.run.smithi187.stderr:dumped monmap epoch 3 2024-04-15T21:21:16.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:15 smithi132 bash[21536]: audit 2024-04-15T21:21:15.465816+0000 mon.a (mon.0) 302 : audit [DBG] from='client.? 172.21.15.187:0/1288582408' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:21:16.150 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:15 smithi187 bash[22200]: audit 2024-04-15T21:21:15.465816+0000 mon.a (mon.0) 302 : audit [DBG] from='client.? 172.21.15.187:0/1288582408' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:21:16.152 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-04-15T21:21:16.152 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph config generate-minimal-conf 2024-04-15T21:21:16.245 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:15 smithi133 bash[22165]: audit 2024-04-15T21:21:15.465816+0000 mon.a (mon.0) 302 : audit [DBG] from='client.? 172.21.15.187:0/1288582408' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:21:16.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:16 smithi132 bash[21536]: cluster 2024-04-15T21:21:15.553304+0000 mgr.a (mgr.14152) 90 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:16.878 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:16 smithi132 bash[21536]: audit 2024-04-15T21:21:16.543575+0000 mon.a (mon.0) 303 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:16.878 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:16 smithi132 bash[21536]: audit 2024-04-15T21:21:16.551108+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:16.878 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:16 smithi132 bash[21536]: audit 2024-04-15T21:21:16.569285+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:21:16.878 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:16 smithi132 bash[21536]: audit 2024-04-15T21:21:16.570428+0000 mon.a (mon.0) 306 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:21:16.878 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:16 smithi132 bash[21536]: audit 2024-04-15T21:21:16.571629+0000 mon.a (mon.0) 307 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:17.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:16 smithi187 bash[22200]: cluster 2024-04-15T21:21:15.553304+0000 mgr.a (mgr.14152) 90 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:17.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:16 smithi187 bash[22200]: audit 2024-04-15T21:21:16.543575+0000 mon.a (mon.0) 303 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:17.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:16 smithi187 bash[22200]: audit 2024-04-15T21:21:16.551108+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:17.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:16 smithi187 bash[22200]: audit 2024-04-15T21:21:16.569285+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:21:17.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:16 smithi187 bash[22200]: audit 2024-04-15T21:21:16.570428+0000 mon.a (mon.0) 306 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:21:17.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:16 smithi187 bash[22200]: audit 2024-04-15T21:21:16.571629+0000 mon.a (mon.0) 307 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:17.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:16 smithi133 bash[22165]: cluster 2024-04-15T21:21:15.553304+0000 mgr.a (mgr.14152) 90 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:17.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:16 smithi133 bash[22165]: audit 2024-04-15T21:21:16.543575+0000 mon.a (mon.0) 303 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:17.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:16 smithi133 bash[22165]: audit 2024-04-15T21:21:16.551108+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:17.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:16 smithi133 bash[22165]: audit 2024-04-15T21:21:16.569285+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:21:17.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:16 smithi133 bash[22165]: audit 2024-04-15T21:21:16.570428+0000 mon.a (mon.0) 306 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:21:17.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:16 smithi133 bash[22165]: audit 2024-04-15T21:21:16.571629+0000 mon.a (mon.0) 307 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:17.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:17 smithi133 bash[22165]: cephadm 2024-04-15T21:21:16.568900+0000 mgr.a (mgr.14152) 91 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-04-15T21:21:17.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:17 smithi133 bash[22165]: cephadm 2024-04-15T21:21:16.572881+0000 mgr.a (mgr.14152) 92 : cephadm [INF] Reconfiguring daemon mon.b on smithi133 2024-04-15T21:21:18.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:17 smithi132 bash[21536]: cephadm 2024-04-15T21:21:16.568900+0000 mgr.a (mgr.14152) 91 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-04-15T21:21:18.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:17 smithi132 bash[21536]: cephadm 2024-04-15T21:21:16.572881+0000 mgr.a (mgr.14152) 92 : cephadm [INF] Reconfiguring daemon mon.b on smithi133 2024-04-15T21:21:18.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:17 smithi187 bash[22200]: cephadm 2024-04-15T21:21:16.568900+0000 mgr.a (mgr.14152) 91 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-04-15T21:21:18.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:17 smithi187 bash[22200]: cephadm 2024-04-15T21:21:16.572881+0000 mgr.a (mgr.14152) 92 : cephadm [INF] Reconfiguring daemon mon.b on smithi133 2024-04-15T21:21:19.611 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:19 smithi187 bash[22200]: cluster 2024-04-15T21:21:17.553667+0000 mgr.a (mgr.14152) 93 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:19.611 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:19 smithi187 bash[22200]: audit 2024-04-15T21:21:18.302532+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:19.611 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:19 smithi187 bash[22200]: audit 2024-04-15T21:21:18.307931+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:19.611 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:19 smithi187 bash[22200]: cephadm 2024-04-15T21:21:18.342001+0000 mgr.a (mgr.14152) 94 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-04-15T21:21:19.611 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:19 smithi187 bash[22200]: audit 2024-04-15T21:21:18.342412+0000 mon.a (mon.0) 310 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:21:19.611 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:19 smithi187 bash[22200]: audit 2024-04-15T21:21:18.343295+0000 mon.a (mon.0) 311 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:21:19.612 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:19 smithi187 bash[22200]: audit 2024-04-15T21:21:18.344343+0000 mon.a (mon.0) 312 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:19.612 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:19 smithi187 bash[22200]: cephadm 2024-04-15T21:21:18.345893+0000 mgr.a (mgr.14152) 95 : cephadm [INF] Reconfiguring daemon mon.c on smithi187 2024-04-15T21:21:19.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:19 smithi132 bash[21536]: cluster 2024-04-15T21:21:17.553667+0000 mgr.a (mgr.14152) 93 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:19.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:19 smithi132 bash[21536]: audit 2024-04-15T21:21:18.302532+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:19.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:19 smithi132 bash[21536]: audit 2024-04-15T21:21:18.307931+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:19.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:19 smithi132 bash[21536]: cephadm 2024-04-15T21:21:18.342001+0000 mgr.a (mgr.14152) 94 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-04-15T21:21:19.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:19 smithi132 bash[21536]: audit 2024-04-15T21:21:18.342412+0000 mon.a (mon.0) 310 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:21:19.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:19 smithi132 bash[21536]: audit 2024-04-15T21:21:18.343295+0000 mon.a (mon.0) 311 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:21:19.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:19 smithi132 bash[21536]: audit 2024-04-15T21:21:18.344343+0000 mon.a (mon.0) 312 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:19.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:19 smithi132 bash[21536]: cephadm 2024-04-15T21:21:18.345893+0000 mgr.a (mgr.14152) 95 : cephadm [INF] Reconfiguring daemon mon.c on smithi187 2024-04-15T21:21:19.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:19 smithi133 bash[22165]: cluster 2024-04-15T21:21:17.553667+0000 mgr.a (mgr.14152) 93 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:19.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:19 smithi133 bash[22165]: audit 2024-04-15T21:21:18.302532+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:19.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:19 smithi133 bash[22165]: audit 2024-04-15T21:21:18.307931+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:19.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:19 smithi133 bash[22165]: cephadm 2024-04-15T21:21:18.342001+0000 mgr.a (mgr.14152) 94 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-04-15T21:21:19.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:19 smithi133 bash[22165]: audit 2024-04-15T21:21:18.342412+0000 mon.a (mon.0) 310 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:21:19.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:19 smithi133 bash[22165]: audit 2024-04-15T21:21:18.343295+0000 mon.a (mon.0) 311 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:21:19.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:19 smithi133 bash[22165]: audit 2024-04-15T21:21:18.344343+0000 mon.a (mon.0) 312 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:19.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:19 smithi133 bash[22165]: cephadm 2024-04-15T21:21:18.345893+0000 mgr.a (mgr.14152) 95 : cephadm [INF] Reconfiguring daemon mon.c on smithi187 2024-04-15T21:21:21.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:21 smithi133 bash[22165]: cluster 2024-04-15T21:21:19.553923+0000 mgr.a (mgr.14152) 96 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:21.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:21 smithi133 bash[22165]: audit 2024-04-15T21:21:20.191800+0000 mon.a (mon.0) 313 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:21 smithi133 bash[22165]: audit 2024-04-15T21:21:20.199785+0000 mon.a (mon.0) 314 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:21 smithi133 bash[22165]: audit 2024-04-15T21:21:20.218058+0000 mon.a (mon.0) 315 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:21.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:21 smithi133 bash[22165]: audit 2024-04-15T21:21:20.223771+0000 mon.a (mon.0) 316 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:21.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:21 smithi133 bash[22165]: audit 2024-04-15T21:21:20.225704+0000 mon.a (mon.0) 317 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:21.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:21 smithi133 bash[22165]: cephadm 2024-04-15T21:21:20.228530+0000 mgr.a (mgr.14152) 97 : cephadm [INF] Updating smithi132:/etc/ceph/ceph.conf 2024-04-15T21:21:21.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:21 smithi133 bash[22165]: cephadm 2024-04-15T21:21:20.229257+0000 mgr.a (mgr.14152) 98 : cephadm [INF] Updating smithi133:/etc/ceph/ceph.conf 2024-04-15T21:21:21.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:21 smithi133 bash[22165]: cephadm 2024-04-15T21:21:20.230879+0000 mgr.a (mgr.14152) 99 : cephadm [INF] Updating smithi187:/etc/ceph/ceph.conf 2024-04-15T21:21:21.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:21 smithi133 bash[22165]: audit 2024-04-15T21:21:20.765459+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:21 smithi133 bash[22165]: audit 2024-04-15T21:21:20.769644+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:21 smithi133 bash[22165]: audit 2024-04-15T21:21:20.773559+0000 mon.a (mon.0) 320 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:21 smithi133 bash[22165]: audit 2024-04-15T21:21:20.777565+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:21 smithi133 bash[22165]: audit 2024-04-15T21:21:20.781588+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:21 smithi133 bash[22165]: audit 2024-04-15T21:21:20.786289+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:21 smithi133 bash[22165]: audit 2024-04-15T21:21:20.791444+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:21 smithi132 bash[21536]: cluster 2024-04-15T21:21:19.553923+0000 mgr.a (mgr.14152) 96 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:21.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:21 smithi132 bash[21536]: audit 2024-04-15T21:21:20.191800+0000 mon.a (mon.0) 313 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:21 smithi132 bash[21536]: audit 2024-04-15T21:21:20.199785+0000 mon.a (mon.0) 314 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:21 smithi132 bash[21536]: audit 2024-04-15T21:21:20.218058+0000 mon.a (mon.0) 315 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:21.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:21 smithi132 bash[21536]: audit 2024-04-15T21:21:20.223771+0000 mon.a (mon.0) 316 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:21.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:21 smithi132 bash[21536]: audit 2024-04-15T21:21:20.225704+0000 mon.a (mon.0) 317 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:21.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:21 smithi132 bash[21536]: cephadm 2024-04-15T21:21:20.228530+0000 mgr.a (mgr.14152) 97 : cephadm [INF] Updating smithi132:/etc/ceph/ceph.conf 2024-04-15T21:21:21.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:21 smithi132 bash[21536]: cephadm 2024-04-15T21:21:20.229257+0000 mgr.a (mgr.14152) 98 : cephadm [INF] Updating smithi133:/etc/ceph/ceph.conf 2024-04-15T21:21:21.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:21 smithi132 bash[21536]: cephadm 2024-04-15T21:21:20.230879+0000 mgr.a (mgr.14152) 99 : cephadm [INF] Updating smithi187:/etc/ceph/ceph.conf 2024-04-15T21:21:21.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:21 smithi132 bash[21536]: audit 2024-04-15T21:21:20.765459+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:21 smithi132 bash[21536]: audit 2024-04-15T21:21:20.769644+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:21 smithi132 bash[21536]: audit 2024-04-15T21:21:20.773559+0000 mon.a (mon.0) 320 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:21 smithi132 bash[21536]: audit 2024-04-15T21:21:20.777565+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:21 smithi132 bash[21536]: audit 2024-04-15T21:21:20.781588+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:21 smithi132 bash[21536]: audit 2024-04-15T21:21:20.786289+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:21 smithi132 bash[21536]: audit 2024-04-15T21:21:20.791444+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:21 smithi187 bash[22200]: cluster 2024-04-15T21:21:19.553923+0000 mgr.a (mgr.14152) 96 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:21.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:21 smithi187 bash[22200]: audit 2024-04-15T21:21:20.191800+0000 mon.a (mon.0) 313 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:21 smithi187 bash[22200]: audit 2024-04-15T21:21:20.199785+0000 mon.a (mon.0) 314 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:21 smithi187 bash[22200]: audit 2024-04-15T21:21:20.218058+0000 mon.a (mon.0) 315 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:21.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:21 smithi187 bash[22200]: audit 2024-04-15T21:21:20.223771+0000 mon.a (mon.0) 316 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:21.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:21 smithi187 bash[22200]: audit 2024-04-15T21:21:20.225704+0000 mon.a (mon.0) 317 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:21.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:21 smithi187 bash[22200]: cephadm 2024-04-15T21:21:20.228530+0000 mgr.a (mgr.14152) 97 : cephadm [INF] Updating smithi132:/etc/ceph/ceph.conf 2024-04-15T21:21:21.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:21 smithi187 bash[22200]: cephadm 2024-04-15T21:21:20.229257+0000 mgr.a (mgr.14152) 98 : cephadm [INF] Updating smithi133:/etc/ceph/ceph.conf 2024-04-15T21:21:21.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:21 smithi187 bash[22200]: cephadm 2024-04-15T21:21:20.230879+0000 mgr.a (mgr.14152) 99 : cephadm [INF] Updating smithi187:/etc/ceph/ceph.conf 2024-04-15T21:21:21.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:21 smithi187 bash[22200]: audit 2024-04-15T21:21:20.765459+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:21 smithi187 bash[22200]: audit 2024-04-15T21:21:20.769644+0000 mon.a (mon.0) 319 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:21 smithi187 bash[22200]: audit 2024-04-15T21:21:20.773559+0000 mon.a (mon.0) 320 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:21 smithi187 bash[22200]: audit 2024-04-15T21:21:20.777565+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:21 smithi187 bash[22200]: audit 2024-04-15T21:21:20.781588+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:21 smithi187 bash[22200]: audit 2024-04-15T21:21:20.786289+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:21.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:21 smithi187 bash[22200]: audit 2024-04-15T21:21:20.791444+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:22.055 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:21:22.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:22 smithi132 bash[21536]: cephadm 2024-04-15T21:21:20.544874+0000 mgr.a (mgr.14152) 100 : cephadm [INF] Updating smithi132:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:22.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:22 smithi132 bash[21536]: cephadm 2024-04-15T21:21:20.545616+0000 mgr.a (mgr.14152) 101 : cephadm [INF] Updating smithi133:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:22.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:22 smithi132 bash[21536]: cephadm 2024-04-15T21:21:20.548589+0000 mgr.a (mgr.14152) 102 : cephadm [INF] Updating smithi187:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:22.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:22 smithi133 bash[22165]: cephadm 2024-04-15T21:21:20.544874+0000 mgr.a (mgr.14152) 100 : cephadm [INF] Updating smithi132:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:22.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:22 smithi133 bash[22165]: cephadm 2024-04-15T21:21:20.545616+0000 mgr.a (mgr.14152) 101 : cephadm [INF] Updating smithi133:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:22.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:22 smithi133 bash[22165]: cephadm 2024-04-15T21:21:20.548589+0000 mgr.a (mgr.14152) 102 : cephadm [INF] Updating smithi187:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:22.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:22 smithi187 bash[22200]: cephadm 2024-04-15T21:21:20.544874+0000 mgr.a (mgr.14152) 100 : cephadm [INF] Updating smithi132:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:22.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:22 smithi187 bash[22200]: cephadm 2024-04-15T21:21:20.545616+0000 mgr.a (mgr.14152) 101 : cephadm [INF] Updating smithi133:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:22.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:22 smithi187 bash[22200]: cephadm 2024-04-15T21:21:20.548589+0000 mgr.a (mgr.14152) 102 : cephadm [INF] Updating smithi187:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:21:23.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:23 smithi133 bash[22165]: cluster 2024-04-15T21:21:21.554269+0000 mgr.a (mgr.14152) 103 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:23.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:23 smithi133 bash[22165]: audit 2024-04-15T21:21:22.877194+0000 mon.a (mon.0) 325 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:23.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:23 smithi133 bash[22165]: audit 2024-04-15T21:21:22.881745+0000 mon.a (mon.0) 326 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:23.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:23 smithi133 bash[22165]: audit 2024-04-15T21:21:22.887670+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:23.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:23 smithi132 bash[21536]: cluster 2024-04-15T21:21:21.554269+0000 mgr.a (mgr.14152) 103 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:23.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:23 smithi132 bash[21536]: audit 2024-04-15T21:21:22.877194+0000 mon.a (mon.0) 325 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:23.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:23 smithi132 bash[21536]: audit 2024-04-15T21:21:22.881745+0000 mon.a (mon.0) 326 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:23.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:23 smithi132 bash[21536]: audit 2024-04-15T21:21:22.887670+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:23.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:23 smithi187 bash[22200]: cluster 2024-04-15T21:21:21.554269+0000 mgr.a (mgr.14152) 103 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:23.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:23 smithi187 bash[22200]: audit 2024-04-15T21:21:22.877194+0000 mon.a (mon.0) 325 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:23.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:23 smithi187 bash[22200]: audit 2024-04-15T21:21:22.881745+0000 mon.a (mon.0) 326 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:23.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:23 smithi187 bash[22200]: audit 2024-04-15T21:21:22.887670+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:24.791 INFO:teuthology.orchestra.run.smithi132.stdout:# minimal ceph.conf for 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:21:24.792 INFO:teuthology.orchestra.run.smithi132.stdout:[global] 2024-04-15T21:21:24.792 INFO:teuthology.orchestra.run.smithi132.stdout: fsid = 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:21:24.792 INFO:teuthology.orchestra.run.smithi132.stdout: mon_host = [v2:172.21.15.132:3300/0,v1:172.21.15.132:6789/0] [v2:172.21.15.133:3300/0,v1:172.21.15.133:6789/0] [v2:172.21.15.187:3300/0,v1:172.21.15.187:6789/0] 2024-04-15T21:21:25.447 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-04-15T21:21:25.447 DEBUG:teuthology.orchestra.run.smithi132:> set -ex 2024-04-15T21:21:25.447 DEBUG:teuthology.orchestra.run.smithi132:> sudo dd of=/etc/ceph/ceph.conf 2024-04-15T21:21:25.458 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:25 smithi132 bash[21536]: cluster 2024-04-15T21:21:23.554751+0000 mgr.a (mgr.14152) 104 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:25.458 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:25 smithi132 bash[21536]: audit 2024-04-15T21:21:24.793067+0000 mon.a (mon.0) 328 : audit [DBG] from='client.? 172.21.15.132:0/3528256113' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:25.462 DEBUG:teuthology.orchestra.run.smithi132:> set -ex 2024-04-15T21:21:25.462 DEBUG:teuthology.orchestra.run.smithi132:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:21:25.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:25 smithi133 bash[22165]: cluster 2024-04-15T21:21:23.554751+0000 mgr.a (mgr.14152) 104 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:25.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:25 smithi133 bash[22165]: audit 2024-04-15T21:21:24.793067+0000 mon.a (mon.0) 328 : audit [DBG] from='client.? 172.21.15.132:0/3528256113' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:25.515 DEBUG:teuthology.orchestra.run.smithi133:> set -ex 2024-04-15T21:21:25.515 DEBUG:teuthology.orchestra.run.smithi133:> sudo dd of=/etc/ceph/ceph.conf 2024-04-15T21:21:25.531 DEBUG:teuthology.orchestra.run.smithi133:> set -ex 2024-04-15T21:21:25.531 DEBUG:teuthology.orchestra.run.smithi133:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:21:25.587 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-04-15T21:21:25.587 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd of=/etc/ceph/ceph.conf 2024-04-15T21:21:25.600 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:25 smithi187 bash[22200]: cluster 2024-04-15T21:21:23.554751+0000 mgr.a (mgr.14152) 104 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:25.600 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:25 smithi187 bash[22200]: audit 2024-04-15T21:21:24.793067+0000 mon.a (mon.0) 328 : audit [DBG] from='client.? 172.21.15.132:0/3528256113' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:25.602 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-04-15T21:21:25.602 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:21:25.658 INFO:tasks.cephadm:Adding mgr.a on smithi132 2024-04-15T21:21:25.658 INFO:tasks.cephadm:Adding mgr.b on smithi133 2024-04-15T21:21:25.658 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph orch apply mgr '2;smithi132=a;smithi133=b' 2024-04-15T21:21:27.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:27 smithi187 bash[22200]: cluster 2024-04-15T21:21:25.555169+0000 mgr.a (mgr.14152) 105 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:27.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:27 smithi133 bash[22165]: cluster 2024-04-15T21:21:25.555169+0000 mgr.a (mgr.14152) 105 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:27.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:27 smithi132 bash[21536]: cluster 2024-04-15T21:21:25.555169+0000 mgr.a (mgr.14152) 105 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:29.452 INFO:teuthology.orchestra.run.smithi187.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.c/config 2024-04-15T21:21:29.470 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:29 smithi187 bash[22200]: cluster 2024-04-15T21:21:27.555578+0000 mgr.a (mgr.14152) 106 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:29.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:29 smithi133 bash[22165]: cluster 2024-04-15T21:21:27.555578+0000 mgr.a (mgr.14152) 106 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:29.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:29 smithi132 bash[21536]: cluster 2024-04-15T21:21:27.555578+0000 mgr.a (mgr.14152) 106 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:31.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:31 smithi187 bash[22200]: cluster 2024-04-15T21:21:29.556003+0000 mgr.a (mgr.14152) 107 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:31.434 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:31 smithi133 bash[22165]: cluster 2024-04-15T21:21:29.556003+0000 mgr.a (mgr.14152) 107 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:31.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:31 smithi132 bash[21536]: cluster 2024-04-15T21:21:29.556003+0000 mgr.a (mgr.14152) 107 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:32.050 INFO:teuthology.orchestra.run.smithi187.stdout:Scheduled mgr update... 2024-04-15T21:21:32.654 DEBUG:teuthology.orchestra.run.smithi133:mgr.b> sudo journalctl -f -n 0 -u ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mgr.b.service 2024-04-15T21:21:32.657 INFO:tasks.cephadm:Deploying OSDs... 2024-04-15T21:21:32.657 DEBUG:teuthology.orchestra.run.smithi132:> set -ex 2024-04-15T21:21:32.657 DEBUG:teuthology.orchestra.run.smithi132:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T21:21:32.663 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-04-15T21:21:32.664 DEBUG:teuthology.orchestra.run.smithi132:> stat /dev/vg_nvme/lv_1 2024-04-15T21:21:32.712 INFO:teuthology.orchestra.run.smithi132.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-15T21:21:32.713 INFO:teuthology.orchestra.run.smithi132.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:21:32.713 INFO:teuthology.orchestra.run.smithi132.stdout:Device: 5h/5d Inode: 886 Links: 1 2024-04-15T21:21:32.713 INFO:teuthology.orchestra.run.smithi132.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:21:32.713 INFO:teuthology.orchestra.run.smithi132.stdout:Access: 2024-04-15 21:11:28.172382939 +0000 2024-04-15T21:21:32.713 INFO:teuthology.orchestra.run.smithi132.stdout:Modify: 2024-04-15 21:11:28.168382975 +0000 2024-04-15T21:21:32.713 INFO:teuthology.orchestra.run.smithi132.stdout:Change: 2024-04-15 21:11:28.168382975 +0000 2024-04-15T21:21:32.713 INFO:teuthology.orchestra.run.smithi132.stdout: Birth: - 2024-04-15T21:21:32.714 DEBUG:teuthology.orchestra.run.smithi132:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-15T21:21:32.771 INFO:teuthology.orchestra.run.smithi132.stderr:1+0 records in 2024-04-15T21:21:32.771 INFO:teuthology.orchestra.run.smithi132.stderr:1+0 records out 2024-04-15T21:21:32.771 INFO:teuthology.orchestra.run.smithi132.stderr:512 bytes copied, 0.000397381 s, 1.3 MB/s 2024-04-15T21:21:32.772 DEBUG:teuthology.orchestra.run.smithi132:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-15T21:21:32.821 DEBUG:teuthology.orchestra.run.smithi132:> stat /dev/vg_nvme/lv_2 2024-04-15T21:21:32.870 INFO:teuthology.orchestra.run.smithi132.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-15T21:21:32.870 INFO:teuthology.orchestra.run.smithi132.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:21:32.870 INFO:teuthology.orchestra.run.smithi132.stdout:Device: 5h/5d Inode: 905 Links: 1 2024-04-15T21:21:32.870 INFO:teuthology.orchestra.run.smithi132.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:21:32.870 INFO:teuthology.orchestra.run.smithi132.stdout:Access: 2024-04-15 21:11:28.900376437 +0000 2024-04-15T21:21:32.870 INFO:teuthology.orchestra.run.smithi132.stdout:Modify: 2024-04-15 21:11:28.640378759 +0000 2024-04-15T21:21:32.870 INFO:teuthology.orchestra.run.smithi132.stdout:Change: 2024-04-15 21:11:28.640378759 +0000 2024-04-15T21:21:32.870 INFO:teuthology.orchestra.run.smithi132.stdout: Birth: - 2024-04-15T21:21:32.871 DEBUG:teuthology.orchestra.run.smithi132:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-15T21:21:32.921 INFO:teuthology.orchestra.run.smithi132.stderr:1+0 records in 2024-04-15T21:21:32.922 INFO:teuthology.orchestra.run.smithi132.stderr:1+0 records out 2024-04-15T21:21:32.922 INFO:teuthology.orchestra.run.smithi132.stderr:512 bytes copied, 0.000342747 s, 1.5 MB/s 2024-04-15T21:21:32.923 DEBUG:teuthology.orchestra.run.smithi132:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-15T21:21:32.973 DEBUG:teuthology.orchestra.run.smithi132:> stat /dev/vg_nvme/lv_3 2024-04-15T21:21:33.020 INFO:teuthology.orchestra.run.smithi132.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-15T21:21:33.020 INFO:teuthology.orchestra.run.smithi132.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:21:33.020 INFO:teuthology.orchestra.run.smithi132.stdout:Device: 5h/5d Inode: 923 Links: 1 2024-04-15T21:21:33.020 INFO:teuthology.orchestra.run.smithi132.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:21:33.020 INFO:teuthology.orchestra.run.smithi132.stdout:Access: 2024-04-15 21:11:29.392372041 +0000 2024-04-15T21:21:33.020 INFO:teuthology.orchestra.run.smithi132.stdout:Modify: 2024-04-15 21:11:29.140374293 +0000 2024-04-15T21:21:33.020 INFO:teuthology.orchestra.run.smithi132.stdout:Change: 2024-04-15 21:11:29.140374293 +0000 2024-04-15T21:21:33.020 INFO:teuthology.orchestra.run.smithi132.stdout: Birth: - 2024-04-15T21:21:33.021 DEBUG:teuthology.orchestra.run.smithi132:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-15T21:21:33.075 INFO:teuthology.orchestra.run.smithi132.stderr:1+0 records in 2024-04-15T21:21:33.075 INFO:teuthology.orchestra.run.smithi132.stderr:1+0 records out 2024-04-15T21:21:33.075 INFO:teuthology.orchestra.run.smithi132.stderr:512 bytes copied, 0.000423334 s, 1.2 MB/s 2024-04-15T21:21:33.076 DEBUG:teuthology.orchestra.run.smithi132:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-15T21:21:33.129 DEBUG:teuthology.orchestra.run.smithi132:> stat /dev/vg_nvme/lv_4 2024-04-15T21:21:33.176 INFO:teuthology.orchestra.run.smithi132.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-15T21:21:33.176 INFO:teuthology.orchestra.run.smithi132.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:21:33.176 INFO:teuthology.orchestra.run.smithi132.stdout:Device: 5h/5d Inode: 937 Links: 1 2024-04-15T21:21:33.176 INFO:teuthology.orchestra.run.smithi132.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:21:33.176 INFO:teuthology.orchestra.run.smithi132.stdout:Access: 2024-04-15 21:11:29.904367468 +0000 2024-04-15T21:21:33.176 INFO:teuthology.orchestra.run.smithi132.stdout:Modify: 2024-04-15 21:11:29.636369862 +0000 2024-04-15T21:21:33.176 INFO:teuthology.orchestra.run.smithi132.stdout:Change: 2024-04-15 21:11:29.636369862 +0000 2024-04-15T21:21:33.176 INFO:teuthology.orchestra.run.smithi132.stdout: Birth: - 2024-04-15T21:21:33.176 DEBUG:teuthology.orchestra.run.smithi132:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-15T21:21:33.231 INFO:teuthology.orchestra.run.smithi132.stderr:1+0 records in 2024-04-15T21:21:33.231 INFO:teuthology.orchestra.run.smithi132.stderr:1+0 records out 2024-04-15T21:21:33.231 INFO:teuthology.orchestra.run.smithi132.stderr:512 bytes copied, 0.000395257 s, 1.3 MB/s 2024-04-15T21:21:33.232 DEBUG:teuthology.orchestra.run.smithi132:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-15T21:21:33.286 DEBUG:teuthology.orchestra.run.smithi133:> set -ex 2024-04-15T21:21:33.286 DEBUG:teuthology.orchestra.run.smithi133:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T21:21:33.293 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-04-15T21:21:33.293 DEBUG:teuthology.orchestra.run.smithi133:> stat /dev/vg_nvme/lv_1 2024-04-15T21:21:33.340 INFO:teuthology.orchestra.run.smithi133.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-15T21:21:33.340 INFO:teuthology.orchestra.run.smithi133.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:21:33.340 INFO:teuthology.orchestra.run.smithi133.stdout:Device: 5h/5d Inode: 875 Links: 1 2024-04-15T21:21:33.340 INFO:teuthology.orchestra.run.smithi133.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:21:33.340 INFO:teuthology.orchestra.run.smithi133.stdout:Access: 2024-04-15 21:11:28.799331903 +0000 2024-04-15T21:21:33.340 INFO:teuthology.orchestra.run.smithi133.stdout:Modify: 2024-04-15 21:11:28.539334226 +0000 2024-04-15T21:21:33.340 INFO:teuthology.orchestra.run.smithi133.stdout:Change: 2024-04-15 21:11:28.539334226 +0000 2024-04-15T21:21:33.340 INFO:teuthology.orchestra.run.smithi133.stdout: Birth: - 2024-04-15T21:21:33.341 DEBUG:teuthology.orchestra.run.smithi133:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-15T21:21:33.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:33 smithi132 bash[21536]: cluster 2024-04-15T21:21:31.556386+0000 mgr.a (mgr.14152) 108 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:33.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:33 smithi132 bash[21536]: audit 2024-04-15T21:21:32.039183+0000 mgr.a (mgr.14152) 109 : audit [DBG] from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi132=a;smithi133=b", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:21:33.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:33 smithi132 bash[21536]: cephadm 2024-04-15T21:21:32.042815+0000 mgr.a (mgr.14152) 110 : cephadm [INF] Saving service mgr spec with placement smithi132=a;smithi133=b;count:2 2024-04-15T21:21:33.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:33 smithi132 bash[21536]: audit 2024-04-15T21:21:32.049323+0000 mon.a (mon.0) 329 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:33.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:33 smithi132 bash[21536]: audit 2024-04-15T21:21:32.068058+0000 mon.a (mon.0) 330 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:33.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:33 smithi132 bash[21536]: audit 2024-04-15T21:21:32.073672+0000 mon.a (mon.0) 331 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:33.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:33 smithi132 bash[21536]: audit 2024-04-15T21:21:32.075581+0000 mon.a (mon.0) 332 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:33.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:33 smithi132 bash[21536]: audit 2024-04-15T21:21:32.085437+0000 mon.a (mon.0) 333 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:33.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:33 smithi132 bash[21536]: audit 2024-04-15T21:21:32.089952+0000 mon.a (mon.0) 334 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:21:33.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:33 smithi132 bash[21536]: audit 2024-04-15T21:21:32.092682+0000 mon.a (mon.0) 335 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-15T21:21:33.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:33 smithi132 bash[21536]: audit 2024-04-15T21:21:32.097199+0000 mon.a (mon.0) 336 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:21:33.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:33 smithi132 bash[21536]: audit 2024-04-15T21:21:32.099254+0000 mon.a (mon.0) 337 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:33.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:33 smithi132 bash[21536]: cephadm 2024-04-15T21:21:32.101428+0000 mgr.a (mgr.14152) 111 : cephadm [INF] Deploying daemon mgr.b on smithi133 2024-04-15T21:21:33.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:33 smithi132 bash[21536]: audit 2024-04-15T21:21:32.172103+0000 mon.a (mon.0) 338 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:33.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:33 smithi132 bash[21536]: audit 2024-04-15T21:21:32.180119+0000 mon.a (mon.0) 339 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:33.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:33 smithi132 bash[21536]: audit 2024-04-15T21:21:32.190437+0000 mon.a (mon.0) 340 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:33.393 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:33 smithi133 bash[22165]: cluster 2024-04-15T21:21:31.556386+0000 mgr.a (mgr.14152) 108 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:33.393 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:33 smithi133 bash[22165]: audit 2024-04-15T21:21:32.039183+0000 mgr.a (mgr.14152) 109 : audit [DBG] from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi132=a;smithi133=b", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:21:33.393 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:33 smithi133 bash[22165]: cephadm 2024-04-15T21:21:32.042815+0000 mgr.a (mgr.14152) 110 : cephadm [INF] Saving service mgr spec with placement smithi132=a;smithi133=b;count:2 2024-04-15T21:21:33.393 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:33 smithi133 bash[22165]: audit 2024-04-15T21:21:32.049323+0000 mon.a (mon.0) 329 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:33.393 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:33 smithi133 bash[22165]: audit 2024-04-15T21:21:32.068058+0000 mon.a (mon.0) 330 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:33.393 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:33 smithi133 bash[22165]: audit 2024-04-15T21:21:32.073672+0000 mon.a (mon.0) 331 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:33.393 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:33 smithi133 bash[22165]: audit 2024-04-15T21:21:32.075581+0000 mon.a (mon.0) 332 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:33.393 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:33 smithi133 bash[22165]: audit 2024-04-15T21:21:32.085437+0000 mon.a (mon.0) 333 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:33.393 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:33 smithi133 bash[22165]: audit 2024-04-15T21:21:32.089952+0000 mon.a (mon.0) 334 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:21:33.394 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:33 smithi133 bash[22165]: audit 2024-04-15T21:21:32.092682+0000 mon.a (mon.0) 335 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-15T21:21:33.394 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:33 smithi133 bash[22165]: audit 2024-04-15T21:21:32.097199+0000 mon.a (mon.0) 336 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:21:33.394 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:33 smithi133 bash[22165]: audit 2024-04-15T21:21:32.099254+0000 mon.a (mon.0) 337 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:33.394 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:33 smithi133 bash[22165]: cephadm 2024-04-15T21:21:32.101428+0000 mgr.a (mgr.14152) 111 : cephadm [INF] Deploying daemon mgr.b on smithi133 2024-04-15T21:21:33.394 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:33 smithi133 bash[22165]: audit 2024-04-15T21:21:32.172103+0000 mon.a (mon.0) 338 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:33.394 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:33 smithi133 bash[22165]: audit 2024-04-15T21:21:32.180119+0000 mon.a (mon.0) 339 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:33.394 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:33 smithi133 bash[22165]: audit 2024-04-15T21:21:32.190437+0000 mon.a (mon.0) 340 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:33.394 INFO:teuthology.orchestra.run.smithi133.stderr:1+0 records in 2024-04-15T21:21:33.394 INFO:teuthology.orchestra.run.smithi133.stderr:1+0 records out 2024-04-15T21:21:33.395 INFO:teuthology.orchestra.run.smithi133.stderr:512 bytes copied, 0.000330974 s, 1.5 MB/s 2024-04-15T21:21:33.395 DEBUG:teuthology.orchestra.run.smithi133:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-15T21:21:33.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:33 smithi187 bash[22200]: cluster 2024-04-15T21:21:31.556386+0000 mgr.a (mgr.14152) 108 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:33.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:33 smithi187 bash[22200]: audit 2024-04-15T21:21:32.039183+0000 mgr.a (mgr.14152) 109 : audit [DBG] from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi132=a;smithi133=b", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:21:33.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:33 smithi187 bash[22200]: cephadm 2024-04-15T21:21:32.042815+0000 mgr.a (mgr.14152) 110 : cephadm [INF] Saving service mgr spec with placement smithi132=a;smithi133=b;count:2 2024-04-15T21:21:33.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:33 smithi187 bash[22200]: audit 2024-04-15T21:21:32.049323+0000 mon.a (mon.0) 329 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:33.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:33 smithi187 bash[22200]: audit 2024-04-15T21:21:32.068058+0000 mon.a (mon.0) 330 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:33.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:33 smithi187 bash[22200]: audit 2024-04-15T21:21:32.073672+0000 mon.a (mon.0) 331 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:33.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:33 smithi187 bash[22200]: audit 2024-04-15T21:21:32.075581+0000 mon.a (mon.0) 332 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:33.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:33 smithi187 bash[22200]: audit 2024-04-15T21:21:32.085437+0000 mon.a (mon.0) 333 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:33.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:33 smithi187 bash[22200]: audit 2024-04-15T21:21:32.089952+0000 mon.a (mon.0) 334 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:21:33.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:33 smithi187 bash[22200]: audit 2024-04-15T21:21:32.092682+0000 mon.a (mon.0) 335 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-15T21:21:33.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:33 smithi187 bash[22200]: audit 2024-04-15T21:21:32.097199+0000 mon.a (mon.0) 336 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:21:33.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:33 smithi187 bash[22200]: audit 2024-04-15T21:21:32.099254+0000 mon.a (mon.0) 337 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:33.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:33 smithi187 bash[22200]: cephadm 2024-04-15T21:21:32.101428+0000 mgr.a (mgr.14152) 111 : cephadm [INF] Deploying daemon mgr.b on smithi133 2024-04-15T21:21:33.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:33 smithi187 bash[22200]: audit 2024-04-15T21:21:32.172103+0000 mon.a (mon.0) 338 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:33.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:33 smithi187 bash[22200]: audit 2024-04-15T21:21:32.180119+0000 mon.a (mon.0) 339 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:33.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:33 smithi187 bash[22200]: audit 2024-04-15T21:21:32.190437+0000 mon.a (mon.0) 340 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:33.449 DEBUG:teuthology.orchestra.run.smithi133:> stat /dev/vg_nvme/lv_2 2024-04-15T21:21:33.495 INFO:teuthology.orchestra.run.smithi133.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-15T21:21:33.496 INFO:teuthology.orchestra.run.smithi133.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:21:33.496 INFO:teuthology.orchestra.run.smithi133.stdout:Device: 5h/5d Inode: 891 Links: 1 2024-04-15T21:21:33.496 INFO:teuthology.orchestra.run.smithi133.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:21:33.496 INFO:teuthology.orchestra.run.smithi133.stdout:Access: 2024-04-15 21:11:29.295327473 +0000 2024-04-15T21:21:33.496 INFO:teuthology.orchestra.run.smithi133.stdout:Modify: 2024-04-15 21:11:29.039329759 +0000 2024-04-15T21:21:33.496 INFO:teuthology.orchestra.run.smithi133.stdout:Change: 2024-04-15 21:11:29.039329759 +0000 2024-04-15T21:21:33.496 INFO:teuthology.orchestra.run.smithi133.stdout: Birth: - 2024-04-15T21:21:33.497 DEBUG:teuthology.orchestra.run.smithi133:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-15T21:21:33.550 INFO:teuthology.orchestra.run.smithi133.stderr:1+0 records in 2024-04-15T21:21:33.550 INFO:teuthology.orchestra.run.smithi133.stderr:1+0 records out 2024-04-15T21:21:33.550 INFO:teuthology.orchestra.run.smithi133.stderr:512 bytes copied, 0.000424835 s, 1.2 MB/s 2024-04-15T21:21:33.551 DEBUG:teuthology.orchestra.run.smithi133:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-15T21:21:33.601 DEBUG:teuthology.orchestra.run.smithi133:> stat /dev/vg_nvme/lv_3 2024-04-15T21:21:33.647 INFO:teuthology.orchestra.run.smithi133.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-15T21:21:33.647 INFO:teuthology.orchestra.run.smithi133.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:21:33.648 INFO:teuthology.orchestra.run.smithi133.stdout:Device: 5h/5d Inode: 915 Links: 1 2024-04-15T21:21:33.648 INFO:teuthology.orchestra.run.smithi133.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:21:33.648 INFO:teuthology.orchestra.run.smithi133.stdout:Access: 2024-04-15 21:11:29.803322935 +0000 2024-04-15T21:21:33.648 INFO:teuthology.orchestra.run.smithi133.stdout:Modify: 2024-04-15 21:11:29.559325115 +0000 2024-04-15T21:21:33.648 INFO:teuthology.orchestra.run.smithi133.stdout:Change: 2024-04-15 21:11:29.559325115 +0000 2024-04-15T21:21:33.648 INFO:teuthology.orchestra.run.smithi133.stdout: Birth: - 2024-04-15T21:21:33.648 DEBUG:teuthology.orchestra.run.smithi133:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-15T21:21:33.701 INFO:teuthology.orchestra.run.smithi133.stderr:1+0 records in 2024-04-15T21:21:33.701 INFO:teuthology.orchestra.run.smithi133.stderr:1+0 records out 2024-04-15T21:21:33.701 INFO:teuthology.orchestra.run.smithi133.stderr:512 bytes copied, 0.000337312 s, 1.5 MB/s 2024-04-15T21:21:33.702 DEBUG:teuthology.orchestra.run.smithi133:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-15T21:21:33.756 DEBUG:teuthology.orchestra.run.smithi133:> stat /dev/vg_nvme/lv_4 2024-04-15T21:21:33.803 INFO:teuthology.orchestra.run.smithi133.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-15T21:21:33.803 INFO:teuthology.orchestra.run.smithi133.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:21:33.803 INFO:teuthology.orchestra.run.smithi133.stdout:Device: 5h/5d Inode: 926 Links: 1 2024-04-15T21:21:33.803 INFO:teuthology.orchestra.run.smithi133.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:21:33.803 INFO:teuthology.orchestra.run.smithi133.stdout:Access: 2024-04-15 21:11:30.307318433 +0000 2024-04-15T21:21:33.803 INFO:teuthology.orchestra.run.smithi133.stdout:Modify: 2024-04-15 21:11:30.023320970 +0000 2024-04-15T21:21:33.803 INFO:teuthology.orchestra.run.smithi133.stdout:Change: 2024-04-15 21:11:30.023320970 +0000 2024-04-15T21:21:33.803 INFO:teuthology.orchestra.run.smithi133.stdout: Birth: - 2024-04-15T21:21:33.804 DEBUG:teuthology.orchestra.run.smithi133:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-15T21:21:33.854 INFO:teuthology.orchestra.run.smithi133.stderr:1+0 records in 2024-04-15T21:21:33.855 INFO:teuthology.orchestra.run.smithi133.stderr:1+0 records out 2024-04-15T21:21:33.855 INFO:teuthology.orchestra.run.smithi133.stderr:512 bytes copied, 0.00025061 s, 2.0 MB/s 2024-04-15T21:21:33.856 DEBUG:teuthology.orchestra.run.smithi133:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-15T21:21:33.908 DEBUG:teuthology.orchestra.run.smithi187:> set -ex 2024-04-15T21:21:33.909 DEBUG:teuthology.orchestra.run.smithi187:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T21:21:33.917 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-04-15T21:21:33.917 DEBUG:teuthology.orchestra.run.smithi187:> stat /dev/vg_nvme/lv_1 2024-04-15T21:21:33.963 INFO:teuthology.orchestra.run.smithi187.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-15T21:21:33.963 INFO:teuthology.orchestra.run.smithi187.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:21:33.963 INFO:teuthology.orchestra.run.smithi187.stdout:Device: 5h/5d Inode: 881 Links: 1 2024-04-15T21:21:33.963 INFO:teuthology.orchestra.run.smithi187.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:21:33.963 INFO:teuthology.orchestra.run.smithi187.stdout:Access: 2024-04-15 21:11:30.698477618 +0000 2024-04-15T21:21:33.963 INFO:teuthology.orchestra.run.smithi187.stdout:Modify: 2024-04-15 21:11:30.414480151 +0000 2024-04-15T21:21:33.963 INFO:teuthology.orchestra.run.smithi187.stdout:Change: 2024-04-15 21:11:30.414480151 +0000 2024-04-15T21:21:33.963 INFO:teuthology.orchestra.run.smithi187.stdout: Birth: - 2024-04-15T21:21:33.964 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-15T21:21:34.017 INFO:teuthology.orchestra.run.smithi187.stderr:1+0 records in 2024-04-15T21:21:34.017 INFO:teuthology.orchestra.run.smithi187.stderr:1+0 records out 2024-04-15T21:21:34.017 INFO:teuthology.orchestra.run.smithi187.stderr:512 bytes copied, 0.000404856 s, 1.3 MB/s 2024-04-15T21:21:34.019 DEBUG:teuthology.orchestra.run.smithi187:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-15T21:21:34.068 DEBUG:teuthology.orchestra.run.smithi187:> stat /dev/vg_nvme/lv_2 2024-04-15T21:21:34.116 INFO:teuthology.orchestra.run.smithi187.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-15T21:21:34.116 INFO:teuthology.orchestra.run.smithi187.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:21:34.116 INFO:teuthology.orchestra.run.smithi187.stdout:Device: 5h/5d Inode: 901 Links: 1 2024-04-15T21:21:34.116 INFO:teuthology.orchestra.run.smithi187.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:21:34.116 INFO:teuthology.orchestra.run.smithi187.stdout:Access: 2024-04-15 21:11:31.198473158 +0000 2024-04-15T21:21:34.116 INFO:teuthology.orchestra.run.smithi187.stdout:Modify: 2024-04-15 21:11:30.930475547 +0000 2024-04-15T21:21:34.116 INFO:teuthology.orchestra.run.smithi187.stdout:Change: 2024-04-15 21:11:30.930475547 +0000 2024-04-15T21:21:34.116 INFO:teuthology.orchestra.run.smithi187.stdout: Birth: - 2024-04-15T21:21:34.117 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-15T21:21:34.169 INFO:teuthology.orchestra.run.smithi187.stderr:1+0 records in 2024-04-15T21:21:34.169 INFO:teuthology.orchestra.run.smithi187.stderr:1+0 records out 2024-04-15T21:21:34.169 INFO:teuthology.orchestra.run.smithi187.stderr:512 bytes copied, 0.000355822 s, 1.4 MB/s 2024-04-15T21:21:34.171 DEBUG:teuthology.orchestra.run.smithi187:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-15T21:21:34.220 DEBUG:teuthology.orchestra.run.smithi187:> stat /dev/vg_nvme/lv_3 2024-04-15T21:21:34.267 INFO:teuthology.orchestra.run.smithi187.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-15T21:21:34.267 INFO:teuthology.orchestra.run.smithi187.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:21:34.267 INFO:teuthology.orchestra.run.smithi187.stdout:Device: 5h/5d Inode: 916 Links: 1 2024-04-15T21:21:34.267 INFO:teuthology.orchestra.run.smithi187.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:21:34.267 INFO:teuthology.orchestra.run.smithi187.stdout:Access: 2024-04-15 21:11:31.666468983 +0000 2024-04-15T21:21:34.267 INFO:teuthology.orchestra.run.smithi187.stdout:Modify: 2024-04-15 21:11:31.414471231 +0000 2024-04-15T21:21:34.267 INFO:teuthology.orchestra.run.smithi187.stdout:Change: 2024-04-15 21:11:31.414471231 +0000 2024-04-15T21:21:34.267 INFO:teuthology.orchestra.run.smithi187.stdout: Birth: - 2024-04-15T21:21:34.267 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-15T21:21:34.321 INFO:teuthology.orchestra.run.smithi187.stderr:1+0 records in 2024-04-15T21:21:34.321 INFO:teuthology.orchestra.run.smithi187.stderr:1+0 records out 2024-04-15T21:21:34.321 INFO:teuthology.orchestra.run.smithi187.stderr:512 bytes copied, 0.000379163 s, 1.4 MB/s 2024-04-15T21:21:34.322 DEBUG:teuthology.orchestra.run.smithi187:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-15T21:21:34.372 DEBUG:teuthology.orchestra.run.smithi187:> stat /dev/vg_nvme/lv_4 2024-04-15T21:21:34.418 INFO:teuthology.orchestra.run.smithi187.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-15T21:21:34.418 INFO:teuthology.orchestra.run.smithi187.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:21:34.418 INFO:teuthology.orchestra.run.smithi187.stdout:Device: 5h/5d Inode: 933 Links: 1 2024-04-15T21:21:34.418 INFO:teuthology.orchestra.run.smithi187.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:21:34.418 INFO:teuthology.orchestra.run.smithi187.stdout:Access: 2024-04-15 21:11:32.158464593 +0000 2024-04-15T21:21:34.419 INFO:teuthology.orchestra.run.smithi187.stdout:Modify: 2024-04-15 21:11:31.898466913 +0000 2024-04-15T21:21:34.419 INFO:teuthology.orchestra.run.smithi187.stdout:Change: 2024-04-15 21:11:31.898466913 +0000 2024-04-15T21:21:34.419 INFO:teuthology.orchestra.run.smithi187.stdout: Birth: - 2024-04-15T21:21:34.419 DEBUG:teuthology.orchestra.run.smithi187:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-15T21:21:34.473 INFO:teuthology.orchestra.run.smithi187.stderr:1+0 records in 2024-04-15T21:21:34.473 INFO:teuthology.orchestra.run.smithi187.stderr:1+0 records out 2024-04-15T21:21:34.473 INFO:teuthology.orchestra.run.smithi187.stderr:512 bytes copied, 0.000363563 s, 1.4 MB/s 2024-04-15T21:21:34.474 DEBUG:teuthology.orchestra.run.smithi187:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-15T21:21:34.525 INFO:tasks.cephadm:Deploying osd.0 on smithi132 with /dev/vg_nvme/lv_4... 2024-04-15T21:21:34.526 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-04-15T21:21:35.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:35 smithi132 bash[21536]: cluster 2024-04-15T21:21:33.556812+0000 mgr.a (mgr.14152) 112 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:35.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:35 smithi132 bash[21536]: audit 2024-04-15T21:21:34.762925+0000 mon.a (mon.0) 341 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:35.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:35 smithi132 bash[21536]: audit 2024-04-15T21:21:34.768190+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:35.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:35 smithi132 bash[21536]: audit 2024-04-15T21:21:34.774376+0000 mon.a (mon.0) 343 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:35.401 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:35 smithi133 bash[22165]: cluster 2024-04-15T21:21:33.556812+0000 mgr.a (mgr.14152) 112 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:35.401 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:35 smithi133 bash[22165]: audit 2024-04-15T21:21:34.762925+0000 mon.a (mon.0) 341 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:35.401 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:35 smithi133 bash[22165]: audit 2024-04-15T21:21:34.768190+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:35.401 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:35 smithi133 bash[22165]: audit 2024-04-15T21:21:34.774376+0000 mon.a (mon.0) 343 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:35.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:35 smithi187 bash[22200]: cluster 2024-04-15T21:21:33.556812+0000 mgr.a (mgr.14152) 112 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:35.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:35 smithi187 bash[22200]: audit 2024-04-15T21:21:34.762925+0000 mon.a (mon.0) 341 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:35.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:35 smithi187 bash[22200]: audit 2024-04-15T21:21:34.768190+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:35.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:35 smithi187 bash[22200]: audit 2024-04-15T21:21:34.774376+0000 mon.a (mon.0) 343 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:35.716 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:35 smithi133 systemd[1]: /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-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-04-15T21:21:35.717 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:35 smithi133 systemd[1]: /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-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-04-15T21:21:37.063 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:36 smithi133 bash[23376]: debug 2024-04-15T21:21:36.949+0000 7f9805529700 1 -- 172.21.15.133:0/854523526 <== mon.2 v2:172.21.15.133:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) ==== 194+0+0 (secure 0 0 0) 0x55790c9c05a0 con 0x55790d736c00 2024-04-15T21:21:37.064 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:36 smithi133 bash[22165]: cluster 2024-04-15T21:21:35.557207+0000 mgr.a (mgr.14152) 113 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:37.064 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:36 smithi133 bash[22165]: audit 2024-04-15T21:21:35.775066+0000 mon.a (mon.0) 344 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:37.064 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:36 smithi133 bash[22165]: audit 2024-04-15T21:21:35.783125+0000 mon.a (mon.0) 345 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:37.064 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:36 smithi133 bash[22165]: audit 2024-04-15T21:21:35.832176+0000 mon.a (mon.0) 346 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:37.064 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:36 smithi133 bash[22165]: audit 2024-04-15T21:21:35.839621+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:37.064 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:36 smithi133 bash[22165]: audit 2024-04-15T21:21:35.942515+0000 mon.a (mon.0) 348 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:37.064 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:36 smithi133 bash[22165]: audit 2024-04-15T21:21:35.947421+0000 mon.a (mon.0) 349 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:37.064 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:36 smithi133 bash[22165]: audit 2024-04-15T21:21:35.949028+0000 mon.a (mon.0) 350 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:37.065 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:36 smithi133 bash[22165]: audit 2024-04-15T21:21:35.957873+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:37.065 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:36 smithi133 bash[22165]: cephadm 2024-04-15T21:21:35.958439+0000 mgr.a (mgr.14152) 114 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-04-15T21:21:37.065 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:36 smithi133 bash[22165]: cephadm 2024-04-15T21:21:36.055163+0000 mgr.a (mgr.14152) 115 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-04-15T21:21:37.065 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:36 smithi133 bash[22165]: audit 2024-04-15T21:21:36.055557+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:21:37.065 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:36 smithi133 bash[22165]: audit 2024-04-15T21:21:36.060407+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:21:37.065 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:36 smithi133 bash[22165]: audit 2024-04-15T21:21:36.061791+0000 mon.a (mon.0) 354 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:37.065 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:36 smithi133 bash[22165]: cephadm 2024-04-15T21:21:36.063376+0000 mgr.a (mgr.14152) 116 : cephadm [INF] Reconfiguring daemon mgr.a on smithi132 2024-04-15T21:21:37.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:36 smithi132 bash[21536]: cluster 2024-04-15T21:21:35.557207+0000 mgr.a (mgr.14152) 113 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:37.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:36 smithi132 bash[21536]: audit 2024-04-15T21:21:35.775066+0000 mon.a (mon.0) 344 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:37.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:36 smithi132 bash[21536]: audit 2024-04-15T21:21:35.783125+0000 mon.a (mon.0) 345 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:37.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:36 smithi132 bash[21536]: audit 2024-04-15T21:21:35.832176+0000 mon.a (mon.0) 346 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:37.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:36 smithi132 bash[21536]: audit 2024-04-15T21:21:35.839621+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:37.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:36 smithi132 bash[21536]: audit 2024-04-15T21:21:35.942515+0000 mon.a (mon.0) 348 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:37.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:36 smithi132 bash[21536]: audit 2024-04-15T21:21:35.947421+0000 mon.a (mon.0) 349 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:37.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:36 smithi132 bash[21536]: audit 2024-04-15T21:21:35.949028+0000 mon.a (mon.0) 350 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:37.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:36 smithi132 bash[21536]: audit 2024-04-15T21:21:35.957873+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:37.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:36 smithi132 bash[21536]: cephadm 2024-04-15T21:21:35.958439+0000 mgr.a (mgr.14152) 114 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-04-15T21:21:37.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:36 smithi132 bash[21536]: cephadm 2024-04-15T21:21:36.055163+0000 mgr.a (mgr.14152) 115 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-04-15T21:21:37.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:36 smithi132 bash[21536]: audit 2024-04-15T21:21:36.055557+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:21:37.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:36 smithi132 bash[21536]: audit 2024-04-15T21:21:36.060407+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:21:37.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:36 smithi132 bash[21536]: audit 2024-04-15T21:21:36.061791+0000 mon.a (mon.0) 354 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:37.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:36 smithi132 bash[21536]: cephadm 2024-04-15T21:21:36.063376+0000 mgr.a (mgr.14152) 116 : cephadm [INF] Reconfiguring daemon mgr.a on smithi132 2024-04-15T21:21:37.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:36 smithi187 bash[22200]: cluster 2024-04-15T21:21:35.557207+0000 mgr.a (mgr.14152) 113 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:37.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:36 smithi187 bash[22200]: audit 2024-04-15T21:21:35.775066+0000 mon.a (mon.0) 344 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:37.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:36 smithi187 bash[22200]: audit 2024-04-15T21:21:35.783125+0000 mon.a (mon.0) 345 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:37.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:36 smithi187 bash[22200]: audit 2024-04-15T21:21:35.832176+0000 mon.a (mon.0) 346 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:37.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:36 smithi187 bash[22200]: audit 2024-04-15T21:21:35.839621+0000 mon.a (mon.0) 347 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:37.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:36 smithi187 bash[22200]: audit 2024-04-15T21:21:35.942515+0000 mon.a (mon.0) 348 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:37.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:36 smithi187 bash[22200]: audit 2024-04-15T21:21:35.947421+0000 mon.a (mon.0) 349 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:37.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:36 smithi187 bash[22200]: audit 2024-04-15T21:21:35.949028+0000 mon.a (mon.0) 350 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:37.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:36 smithi187 bash[22200]: audit 2024-04-15T21:21:35.957873+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:37.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:36 smithi187 bash[22200]: cephadm 2024-04-15T21:21:35.958439+0000 mgr.a (mgr.14152) 114 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-04-15T21:21:37.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:36 smithi187 bash[22200]: cephadm 2024-04-15T21:21:36.055163+0000 mgr.a (mgr.14152) 115 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-04-15T21:21:37.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:36 smithi187 bash[22200]: audit 2024-04-15T21:21:36.055557+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:21:37.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:36 smithi187 bash[22200]: audit 2024-04-15T21:21:36.060407+0000 mon.a (mon.0) 353 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:21:37.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:36 smithi187 bash[22200]: audit 2024-04-15T21:21:36.061791+0000 mon.a (mon.0) 354 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:37.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:36 smithi187 bash[22200]: cephadm 2024-04-15T21:21:36.063376+0000 mgr.a (mgr.14152) 116 : cephadm [INF] Reconfiguring daemon mgr.a on smithi132 2024-04-15T21:21:37.382 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:37 smithi133 bash[23376]: debug 2024-04-15T21:21:37.097+0000 7f980f739200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-15T21:21:38.745 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:38 smithi133 bash[23376]: debug 2024-04-15T21:21:38.705+0000 7f980f739200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-15T21:21:39.065 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:38 smithi133 bash[23376]: debug 2024-04-15T21:21:38.805+0000 7f980f739200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-15T21:21:39.065 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:38 smithi133 bash[22165]: cluster 2024-04-15T21:21:37.557655+0000 mgr.a (mgr.14152) 117 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:39.065 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:38 smithi133 bash[22165]: audit 2024-04-15T21:21:38.757152+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:39.084 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:38 smithi132 bash[21536]: cluster 2024-04-15T21:21:37.557655+0000 mgr.a (mgr.14152) 117 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:39.084 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:38 smithi132 bash[21536]: audit 2024-04-15T21:21:38.757152+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:39.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:38 smithi187 bash[22200]: cluster 2024-04-15T21:21:37.557655+0000 mgr.a (mgr.14152) 117 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:39.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:38 smithi187 bash[22200]: audit 2024-04-15T21:21:38.757152+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:39.440 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:39 smithi133 bash[23376]: debug 2024-04-15T21:21:39.061+0000 7f980f739200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-15T21:21:39.497 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:21:40.246 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:39 smithi133 bash[23376]: debug 2024-04-15T21:21:39.869+0000 7f980f739200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-15T21:21:40.246 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:39 smithi133 bash[23376]: debug 2024-04-15T21:21:39.981+0000 7f980f739200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-15T21:21:40.246 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:40 smithi133 bash[23376]: debug 2024-04-15T21:21:40.081+0000 7f980f739200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-15T21:21:40.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:40 smithi133 bash[22165]: audit 2024-04-15T21:21:39.042742+0000 mon.a (mon.0) 356 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:40.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:40 smithi133 bash[22165]: audit 2024-04-15T21:21:39.048076+0000 mon.a (mon.0) 357 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:40.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:40 smithi133 bash[22165]: audit 2024-04-15T21:21:39.087385+0000 mon.a (mon.0) 358 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:40.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:40 smithi133 bash[22165]: audit 2024-04-15T21:21:39.090057+0000 mon.a (mon.0) 359 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:40.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:40 smithi133 bash[22165]: audit 2024-04-15T21:21:39.090982+0000 mon.a (mon.0) 360 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:40.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:40 smithi133 bash[22165]: audit 2024-04-15T21:21:39.096228+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:40.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:40 smithi133 bash[22165]: cephadm 2024-04-15T21:21:39.096696+0000 mgr.a (mgr.14152) 118 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-04-15T21:21:40.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:40 smithi133 bash[22165]: audit 2024-04-15T21:21:39.965925+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:40.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:40 smithi132 bash[21536]: audit 2024-04-15T21:21:39.042742+0000 mon.a (mon.0) 356 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:40.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:40 smithi132 bash[21536]: audit 2024-04-15T21:21:39.048076+0000 mon.a (mon.0) 357 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:40.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:40 smithi132 bash[21536]: audit 2024-04-15T21:21:39.087385+0000 mon.a (mon.0) 358 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:40.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:40 smithi132 bash[21536]: audit 2024-04-15T21:21:39.090057+0000 mon.a (mon.0) 359 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:40.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:40 smithi132 bash[21536]: audit 2024-04-15T21:21:39.090982+0000 mon.a (mon.0) 360 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:40.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:40 smithi132 bash[21536]: audit 2024-04-15T21:21:39.096228+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:40.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:40 smithi132 bash[21536]: cephadm 2024-04-15T21:21:39.096696+0000 mgr.a (mgr.14152) 118 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-04-15T21:21:40.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:40 smithi132 bash[21536]: audit 2024-04-15T21:21:39.965925+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:40.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:40 smithi187 bash[22200]: audit 2024-04-15T21:21:39.042742+0000 mon.a (mon.0) 356 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:40.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:40 smithi187 bash[22200]: audit 2024-04-15T21:21:39.048076+0000 mon.a (mon.0) 357 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:40.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:40 smithi187 bash[22200]: audit 2024-04-15T21:21:39.087385+0000 mon.a (mon.0) 358 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:40.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:40 smithi187 bash[22200]: audit 2024-04-15T21:21:39.090057+0000 mon.a (mon.0) 359 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:40.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:40 smithi187 bash[22200]: audit 2024-04-15T21:21:39.090982+0000 mon.a (mon.0) 360 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:40.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:40 smithi187 bash[22200]: audit 2024-04-15T21:21:39.096228+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:40.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:40 smithi187 bash[22200]: cephadm 2024-04-15T21:21:39.096696+0000 mgr.a (mgr.14152) 118 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-04-15T21:21:40.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:40 smithi187 bash[22200]: audit 2024-04-15T21:21:39.965925+0000 mon.a (mon.0) 362 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:40.580 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:40 smithi133 bash[23376]: debug 2024-04-15T21:21:40.453+0000 7f980f739200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-15T21:21:40.996 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:40 smithi133 bash[23376]: debug 2024-04-15T21:21:40.577+0000 7f980f739200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-15T21:21:40.996 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:40 smithi133 bash[23376]: debug 2024-04-15T21:21:40.677+0000 7f980f739200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-15T21:21:41.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:41 smithi132 bash[21536]: cluster 2024-04-15T21:21:39.557942+0000 mgr.a (mgr.14152) 119 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:41.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:41 smithi132 bash[21536]: audit 2024-04-15T21:21:40.608904+0000 mon.a (mon.0) 363 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:41.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:41 smithi187 bash[22200]: cluster 2024-04-15T21:21:39.557942+0000 mgr.a (mgr.14152) 119 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:41.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:41 smithi187 bash[22200]: audit 2024-04-15T21:21:40.608904+0000 mon.a (mon.0) 363 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:41.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:41 smithi133 bash[22165]: cluster 2024-04-15T21:21:39.557942+0000 mgr.a (mgr.14152) 119 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:41.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:41 smithi133 bash[22165]: audit 2024-04-15T21:21:40.608904+0000 mon.a (mon.0) 363 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:41.496 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:41 smithi133 bash[23376]: debug 2024-04-15T21:21:41.033+0000 7f980f739200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-15T21:21:41.496 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:41 smithi133 bash[23376]: debug 2024-04-15T21:21:41.273+0000 7f980f739200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-15T21:21:41.925 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:41 smithi133 bash[23376]: debug 2024-04-15T21:21:41.533+0000 7f980f739200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-15T21:21:41.925 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:41 smithi133 bash[23376]: debug 2024-04-15T21:21:41.649+0000 7f980f739200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-15T21:21:42.718 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:41 smithi133 bash[23376]: debug 2024-04-15T21:21:41.921+0000 7f980f739200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-15T21:21:42.718 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:42 smithi133 bash[23376]: debug 2024-04-15T21:21:42.361+0000 7f980f739200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-15T21:21:42.718 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:42 smithi133 bash[23376]: debug 2024-04-15T21:21:42.597+0000 7f980f739200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-15T21:21:42.718 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:42 smithi133 bash[23376]: debug 2024-04-15T21:21:42.713+0000 7f980f739200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-15T21:21:42.909 INFO:teuthology.orchestra.run.smithi132.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-04-15T21:21:42.909 INFO:teuthology.orchestra.run.smithi132.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-04-15T21:21:42.909 INFO:teuthology.orchestra.run.smithi132.stderr: stderr: 10+0 records in 2024-04-15T21:21:42.909 INFO:teuthology.orchestra.run.smithi132.stderr:10+0 records out 2024-04-15T21:21:42.909 INFO:teuthology.orchestra.run.smithi132.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0169095 s, 620 MB/s 2024-04-15T21:21:42.909 INFO:teuthology.orchestra.run.smithi132.stderr:--> Zapping successful for: 2024-04-15T21:21:42.996 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:42 smithi133 bash[23376]: debug 2024-04-15T21:21:42.957+0000 7f980f739200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-15T21:21:43.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:43 smithi132 bash[21536]: cluster 2024-04-15T21:21:41.558380+0000 mgr.a (mgr.14152) 120 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:43.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:43 smithi132 bash[21536]: audit 2024-04-15T21:21:43.009488+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:43.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:43 smithi132 bash[21536]: audit 2024-04-15T21:21:43.013872+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:43.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:43 smithi132 bash[21536]: audit 2024-04-15T21:21:43.017968+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:43.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:43 smithi187 bash[22200]: cluster 2024-04-15T21:21:41.558380+0000 mgr.a (mgr.14152) 120 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:43.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:43 smithi187 bash[22200]: audit 2024-04-15T21:21:43.009488+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:43.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:43 smithi187 bash[22200]: audit 2024-04-15T21:21:43.013872+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:43.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:43 smithi187 bash[22200]: audit 2024-04-15T21:21:43.017968+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:43.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:43 smithi133 bash[22165]: cluster 2024-04-15T21:21:41.558380+0000 mgr.a (mgr.14152) 120 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:43.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:43 smithi133 bash[22165]: audit 2024-04-15T21:21:43.009488+0000 mon.a (mon.0) 364 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:43.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:43 smithi133 bash[22165]: audit 2024-04-15T21:21:43.013872+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:43.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:43 smithi133 bash[22165]: audit 2024-04-15T21:21:43.017968+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:43.596 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph orch daemon add osd smithi132:vg_nvme/lv_4 2024-04-15T21:21:44.246 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:43 smithi133 bash[23376]: debug 2024-04-15T21:21:43.981+0000 7f980f739200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-15T21:21:44.246 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:44 smithi133 bash[23376]: debug 2024-04-15T21:21:44.097+0000 7f980f739200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-15T21:21:44.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:44 smithi133 bash[22165]: audit 2024-04-15T21:21:43.207546+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:44.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:44 smithi133 bash[22165]: audit 2024-04-15T21:21:43.215736+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:44.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:44 smithi133 bash[22165]: audit 2024-04-15T21:21:43.225895+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:44.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:44 smithi133 bash[22165]: audit 2024-04-15T21:21:43.236951+0000 mon.a (mon.0) 370 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:44.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:44 smithi133 bash[22165]: audit 2024-04-15T21:21:43.242374+0000 mon.a (mon.0) 371 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:44.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:44 smithi133 bash[22165]: audit 2024-04-15T21:21:43.244222+0000 mon.a (mon.0) 372 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:44.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:44 smithi133 bash[22165]: audit 2024-04-15T21:21:43.253652+0000 mon.a (mon.0) 373 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:44.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:44 smithi132 bash[21536]: audit 2024-04-15T21:21:43.207546+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:44.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:44 smithi132 bash[21536]: audit 2024-04-15T21:21:43.215736+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:44.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:44 smithi132 bash[21536]: audit 2024-04-15T21:21:43.225895+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:44.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:44 smithi132 bash[21536]: audit 2024-04-15T21:21:43.236951+0000 mon.a (mon.0) 370 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:44.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:44 smithi132 bash[21536]: audit 2024-04-15T21:21:43.242374+0000 mon.a (mon.0) 371 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:44.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:44 smithi132 bash[21536]: audit 2024-04-15T21:21:43.244222+0000 mon.a (mon.0) 372 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:44.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:44 smithi132 bash[21536]: audit 2024-04-15T21:21:43.253652+0000 mon.a (mon.0) 373 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:44.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:44 smithi187 bash[22200]: audit 2024-04-15T21:21:43.207546+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:44.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:44 smithi187 bash[22200]: audit 2024-04-15T21:21:43.215736+0000 mon.a (mon.0) 368 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:44.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:44 smithi187 bash[22200]: audit 2024-04-15T21:21:43.225895+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:44.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:44 smithi187 bash[22200]: audit 2024-04-15T21:21:43.236951+0000 mon.a (mon.0) 370 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:21:44.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:44 smithi187 bash[22200]: audit 2024-04-15T21:21:43.242374+0000 mon.a (mon.0) 371 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:44.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:44 smithi187 bash[22200]: audit 2024-04-15T21:21:43.244222+0000 mon.a (mon.0) 372 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:21:44.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:44 smithi187 bash[22200]: audit 2024-04-15T21:21:43.253652+0000 mon.a (mon.0) 373 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:44.746 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:44 smithi133 bash[23376]: debug 2024-04-15T21:21:44.389+0000 7f980f739200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-15T21:21:44.746 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:44 smithi133 bash[23376]: debug 2024-04-15T21:21:44.501+0000 7f980f739200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-15T21:21:45.246 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:44 smithi133 bash[23376]: debug 2024-04-15T21:21:44.945+0000 7f980f739200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-15T21:21:45.246 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:21:45 smithi133 bash[23376]: debug 2024-04-15T21:21:45.065+0000 7f980f739200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-15T21:21:45.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:45 smithi187 bash[22200]: cluster 2024-04-15T21:21:43.558788+0000 mgr.a (mgr.14152) 121 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:45.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:45 smithi187 bash[22200]: cluster 2024-04-15T21:21:45.093124+0000 mon.a (mon.0) 374 : cluster [DBG] Standby manager daemon b started 2024-04-15T21:21:45.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:45 smithi187 bash[22200]: audit 2024-04-15T21:21:45.094351+0000 mon.b (mon.2) 2 : audit [DBG] from='mgr.? 172.21.15.133:0/3501284466' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-04-15T21:21:45.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:45 smithi187 bash[22200]: audit 2024-04-15T21:21:45.095084+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.133:0/3501284466' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-15T21:21:45.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:45 smithi187 bash[22200]: audit 2024-04-15T21:21:45.096416+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.133:0/3501284466' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-04-15T21:21:45.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:45 smithi187 bash[22200]: audit 2024-04-15T21:21:45.097036+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.133:0/3501284466' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-15T21:21:45.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:45 smithi132 bash[21536]: cluster 2024-04-15T21:21:43.558788+0000 mgr.a (mgr.14152) 121 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:45.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:45 smithi132 bash[21536]: cluster 2024-04-15T21:21:45.093124+0000 mon.a (mon.0) 374 : cluster [DBG] Standby manager daemon b started 2024-04-15T21:21:45.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:45 smithi132 bash[21536]: audit 2024-04-15T21:21:45.094351+0000 mon.b (mon.2) 2 : audit [DBG] from='mgr.? 172.21.15.133:0/3501284466' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-04-15T21:21:45.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:45 smithi132 bash[21536]: audit 2024-04-15T21:21:45.095084+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.133:0/3501284466' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-15T21:21:45.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:45 smithi132 bash[21536]: audit 2024-04-15T21:21:45.096416+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.133:0/3501284466' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-04-15T21:21:45.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:45 smithi132 bash[21536]: audit 2024-04-15T21:21:45.097036+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.133:0/3501284466' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-15T21:21:45.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:45 smithi133 bash[22165]: cluster 2024-04-15T21:21:43.558788+0000 mgr.a (mgr.14152) 121 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:45.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:45 smithi133 bash[22165]: cluster 2024-04-15T21:21:45.093124+0000 mon.a (mon.0) 374 : cluster [DBG] Standby manager daemon b started 2024-04-15T21:21:45.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:45 smithi133 bash[22165]: audit 2024-04-15T21:21:45.094351+0000 mon.b (mon.2) 2 : audit [DBG] from='mgr.? 172.21.15.133:0/3501284466' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-04-15T21:21:45.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:45 smithi133 bash[22165]: audit 2024-04-15T21:21:45.095084+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.133:0/3501284466' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-15T21:21:45.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:45 smithi133 bash[22165]: audit 2024-04-15T21:21:45.096416+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.133:0/3501284466' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-04-15T21:21:45.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:45 smithi133 bash[22165]: audit 2024-04-15T21:21:45.097036+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.133:0/3501284466' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-15T21:21:46.607 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:46 smithi187 bash[22200]: cluster 2024-04-15T21:21:45.271431+0000 mon.a (mon.0) 375 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-04-15T21:21:46.607 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:46 smithi187 bash[22200]: audit 2024-04-15T21:21:45.271705+0000 mon.a (mon.0) 376 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-04-15T21:21:46.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:46 smithi132 bash[21536]: cluster 2024-04-15T21:21:45.271431+0000 mon.a (mon.0) 375 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-04-15T21:21:46.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:46 smithi132 bash[21536]: audit 2024-04-15T21:21:45.271705+0000 mon.a (mon.0) 376 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-04-15T21:21:46.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:46 smithi133 bash[22165]: cluster 2024-04-15T21:21:45.271431+0000 mon.a (mon.0) 375 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-04-15T21:21:46.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:46 smithi133 bash[22165]: audit 2024-04-15T21:21:45.271705+0000 mon.a (mon.0) 376 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-04-15T21:21:47.463 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:21:47.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:47 smithi132 bash[21536]: cluster 2024-04-15T21:21:45.559252+0000 mgr.a (mgr.14152) 122 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:47.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:47 smithi187 bash[22200]: cluster 2024-04-15T21:21:45.559252+0000 mgr.a (mgr.14152) 122 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:47.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:47 smithi133 bash[22165]: cluster 2024-04-15T21:21:45.559252+0000 mgr.a (mgr.14152) 122 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:49.613 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:49 smithi132 bash[21536]: cluster 2024-04-15T21:21:47.559705+0000 mgr.a (mgr.14152) 123 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:49.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:49 smithi187 bash[22200]: cluster 2024-04-15T21:21:47.559705+0000 mgr.a (mgr.14152) 123 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:49.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:49 smithi133 bash[22165]: cluster 2024-04-15T21:21:47.559705+0000 mgr.a (mgr.14152) 123 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:50.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:50 smithi187 bash[22200]: audit 2024-04-15T21:21:50.037554+0000 mon.a (mon.0) 377 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:21:50.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:50 smithi187 bash[22200]: audit 2024-04-15T21:21:50.041623+0000 mon.a (mon.0) 378 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:21:50.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:50 smithi187 bash[22200]: audit 2024-04-15T21:21:50.042673+0000 mon.a (mon.0) 379 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:50.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:50 smithi132 bash[21536]: audit 2024-04-15T21:21:50.037554+0000 mon.a (mon.0) 377 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:21:50.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:50 smithi132 bash[21536]: audit 2024-04-15T21:21:50.041623+0000 mon.a (mon.0) 378 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:21:50.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:50 smithi132 bash[21536]: audit 2024-04-15T21:21:50.042673+0000 mon.a (mon.0) 379 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:50.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:50 smithi133 bash[22165]: audit 2024-04-15T21:21:50.037554+0000 mon.a (mon.0) 377 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:21:50.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:50 smithi133 bash[22165]: audit 2024-04-15T21:21:50.041623+0000 mon.a (mon.0) 378 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:21:50.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:50 smithi133 bash[22165]: audit 2024-04-15T21:21:50.042673+0000 mon.a (mon.0) 379 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:21:51.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:51 smithi132 bash[21536]: cluster 2024-04-15T21:21:49.560126+0000 mgr.a (mgr.14152) 124 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:51.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:51 smithi132 bash[21536]: audit 2024-04-15T21:21:50.026845+0000 mgr.a (mgr.14152) 125 : audit [DBG] from='client.14214 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi132:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:21:51.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:51 smithi187 bash[22200]: cluster 2024-04-15T21:21:49.560126+0000 mgr.a (mgr.14152) 124 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:51.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:51 smithi187 bash[22200]: audit 2024-04-15T21:21:50.026845+0000 mgr.a (mgr.14152) 125 : audit [DBG] from='client.14214 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi132:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:21:51.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:51 smithi133 bash[22165]: cluster 2024-04-15T21:21:49.560126+0000 mgr.a (mgr.14152) 124 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:51.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:51 smithi133 bash[22165]: audit 2024-04-15T21:21:50.026845+0000 mgr.a (mgr.14152) 125 : audit [DBG] from='client.14214 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi132:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:21:53.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:53 smithi132 bash[21536]: cluster 2024-04-15T21:21:51.560597+0000 mgr.a (mgr.14152) 126 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:53.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:53 smithi132 bash[21536]: audit 2024-04-15T21:21:52.391357+0000 mon.a (mon.0) 380 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:53.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:53 smithi132 bash[21536]: audit 2024-04-15T21:21:52.399619+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:53.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:53 smithi132 bash[21536]: audit 2024-04-15T21:21:52.409526+0000 mon.a (mon.0) 382 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:53.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:53 smithi187 bash[22200]: cluster 2024-04-15T21:21:51.560597+0000 mgr.a (mgr.14152) 126 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:53.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:53 smithi187 bash[22200]: audit 2024-04-15T21:21:52.391357+0000 mon.a (mon.0) 380 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:53.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:53 smithi187 bash[22200]: audit 2024-04-15T21:21:52.399619+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:53.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:53 smithi187 bash[22200]: audit 2024-04-15T21:21:52.409526+0000 mon.a (mon.0) 382 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:53.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:53 smithi133 bash[22165]: cluster 2024-04-15T21:21:51.560597+0000 mgr.a (mgr.14152) 126 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:53.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:53 smithi133 bash[22165]: audit 2024-04-15T21:21:52.391357+0000 mon.a (mon.0) 380 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:53.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:53 smithi133 bash[22165]: audit 2024-04-15T21:21:52.399619+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:53.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:53 smithi133 bash[22165]: audit 2024-04-15T21:21:52.409526+0000 mon.a (mon.0) 382 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:21:55.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:55 smithi132 bash[21536]: cluster 2024-04-15T21:21:53.560966+0000 mgr.a (mgr.14152) 127 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:55.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:55 smithi187 bash[22200]: cluster 2024-04-15T21:21:53.560966+0000 mgr.a (mgr.14152) 127 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:55.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:55 smithi133 bash[22165]: cluster 2024-04-15T21:21:53.560966+0000 mgr.a (mgr.14152) 127 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:57.552 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:57 smithi133 bash[22165]: cluster 2024-04-15T21:21:55.561412+0000 mgr.a (mgr.14152) 128 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:57.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:57 smithi132 bash[21536]: cluster 2024-04-15T21:21:55.561412+0000 mgr.a (mgr.14152) 128 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:57.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:57 smithi187 bash[22200]: cluster 2024-04-15T21:21:55.561412+0000 mgr.a (mgr.14152) 128 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:58.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:58 smithi133 bash[22165]: audit 2024-04-15T21:21:58.109188+0000 mon.a (mon.0) 383 : audit [INF] from='client.? 172.21.15.132:0/2752016813' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "89f3f965-2a55-4bf6-ba1b-7227ef0970ac"}]: dispatch 2024-04-15T21:21:58.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:58 smithi133 bash[22165]: audit 2024-04-15T21:21:58.111691+0000 mon.a (mon.0) 384 : audit [INF] from='client.? 172.21.15.132:0/2752016813' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "89f3f965-2a55-4bf6-ba1b-7227ef0970ac"}]': finished 2024-04-15T21:21:58.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:58 smithi133 bash[22165]: cluster 2024-04-15T21:21:58.116810+0000 mon.a (mon.0) 385 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-04-15T21:21:58.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:58 smithi133 bash[22165]: audit 2024-04-15T21:21:58.117087+0000 mon.a (mon.0) 386 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:21:58.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:58 smithi132 bash[21536]: audit 2024-04-15T21:21:58.109188+0000 mon.a (mon.0) 383 : audit [INF] from='client.? 172.21.15.132:0/2752016813' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "89f3f965-2a55-4bf6-ba1b-7227ef0970ac"}]: dispatch 2024-04-15T21:21:58.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:58 smithi132 bash[21536]: audit 2024-04-15T21:21:58.111691+0000 mon.a (mon.0) 384 : audit [INF] from='client.? 172.21.15.132:0/2752016813' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "89f3f965-2a55-4bf6-ba1b-7227ef0970ac"}]': finished 2024-04-15T21:21:58.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:58 smithi132 bash[21536]: cluster 2024-04-15T21:21:58.116810+0000 mon.a (mon.0) 385 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-04-15T21:21:58.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:58 smithi132 bash[21536]: audit 2024-04-15T21:21:58.117087+0000 mon.a (mon.0) 386 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:21:58.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:58 smithi187 bash[22200]: audit 2024-04-15T21:21:58.109188+0000 mon.a (mon.0) 383 : audit [INF] from='client.? 172.21.15.132:0/2752016813' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "89f3f965-2a55-4bf6-ba1b-7227ef0970ac"}]: dispatch 2024-04-15T21:21:58.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:58 smithi187 bash[22200]: audit 2024-04-15T21:21:58.111691+0000 mon.a (mon.0) 384 : audit [INF] from='client.? 172.21.15.132:0/2752016813' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "89f3f965-2a55-4bf6-ba1b-7227ef0970ac"}]': finished 2024-04-15T21:21:58.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:58 smithi187 bash[22200]: cluster 2024-04-15T21:21:58.116810+0000 mon.a (mon.0) 385 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-04-15T21:21:58.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:58 smithi187 bash[22200]: audit 2024-04-15T21:21:58.117087+0000 mon.a (mon.0) 386 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:21:59.568 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:59 smithi133 bash[22165]: cluster 2024-04-15T21:21:57.561709+0000 mgr.a (mgr.14152) 129 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:59.568 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:21:59 smithi133 bash[22165]: audit 2024-04-15T21:21:59.005116+0000 mon.a (mon.0) 387 : audit [DBG] from='client.? 172.21.15.132:0/4114422993' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:21:59.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:59 smithi132 bash[21536]: cluster 2024-04-15T21:21:57.561709+0000 mgr.a (mgr.14152) 129 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:59.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:21:59 smithi132 bash[21536]: audit 2024-04-15T21:21:59.005116+0000 mon.a (mon.0) 387 : audit [DBG] from='client.? 172.21.15.132:0/4114422993' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:21:59.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:59 smithi187 bash[22200]: cluster 2024-04-15T21:21:57.561709+0000 mgr.a (mgr.14152) 129 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:21:59.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:21:59 smithi187 bash[22200]: audit 2024-04-15T21:21:59.005116+0000 mon.a (mon.0) 387 : audit [DBG] from='client.? 172.21.15.132:0/4114422993' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:22:01.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:01 smithi132 bash[21536]: cluster 2024-04-15T21:21:59.562039+0000 mgr.a (mgr.14152) 130 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:01.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:01 smithi187 bash[22200]: cluster 2024-04-15T21:21:59.562039+0000 mgr.a (mgr.14152) 130 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:01.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:01 smithi133 bash[22165]: cluster 2024-04-15T21:21:59.562039+0000 mgr.a (mgr.14152) 130 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:03.442 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:03 smithi132 bash[21536]: cluster 2024-04-15T21:22:01.562424+0000 mgr.a (mgr.14152) 131 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:03.442 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:03 smithi132 bash[21536]: audit 2024-04-15T21:22:03.167942+0000 mon.a (mon.0) 388 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:03.442 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:03 smithi132 bash[21536]: audit 2024-04-15T21:22:03.175255+0000 mon.a (mon.0) 389 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:03.442 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:03 smithi132 bash[21536]: audit 2024-04-15T21:22:03.183862+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:03.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:03 smithi187 bash[22200]: cluster 2024-04-15T21:22:01.562424+0000 mgr.a (mgr.14152) 131 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:03.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:03 smithi187 bash[22200]: audit 2024-04-15T21:22:03.167942+0000 mon.a (mon.0) 388 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:03.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:03 smithi187 bash[22200]: audit 2024-04-15T21:22:03.175255+0000 mon.a (mon.0) 389 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:03.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:03 smithi187 bash[22200]: audit 2024-04-15T21:22:03.183862+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:03.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:03 smithi133 bash[22165]: cluster 2024-04-15T21:22:01.562424+0000 mgr.a (mgr.14152) 131 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:03.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:03 smithi133 bash[22165]: audit 2024-04-15T21:22:03.167942+0000 mon.a (mon.0) 388 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:03.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:03 smithi133 bash[22165]: audit 2024-04-15T21:22:03.175255+0000 mon.a (mon.0) 389 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:03.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:03 smithi133 bash[22165]: audit 2024-04-15T21:22:03.183862+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:04.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:04 smithi187 bash[22200]: audit 2024-04-15T21:22:03.394332+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:04.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:04 smithi187 bash[22200]: audit 2024-04-15T21:22:03.403129+0000 mon.a (mon.0) 392 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:04.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:04 smithi187 bash[22200]: audit 2024-04-15T21:22:03.413836+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:04.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:04 smithi187 bash[22200]: cluster 2024-04-15T21:22:03.562697+0000 mgr.a (mgr.14152) 132 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:04.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:04 smithi133 bash[22165]: audit 2024-04-15T21:22:03.394332+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:04.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:04 smithi133 bash[22165]: audit 2024-04-15T21:22:03.403129+0000 mon.a (mon.0) 392 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:04.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:04 smithi133 bash[22165]: audit 2024-04-15T21:22:03.413836+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:04.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:04 smithi133 bash[22165]: cluster 2024-04-15T21:22:03.562697+0000 mgr.a (mgr.14152) 132 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:04.878 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:04 smithi132 bash[21536]: audit 2024-04-15T21:22:03.394332+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:04.878 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:04 smithi132 bash[21536]: audit 2024-04-15T21:22:03.403129+0000 mon.a (mon.0) 392 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:04.878 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:04 smithi132 bash[21536]: audit 2024-04-15T21:22:03.413836+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:04.878 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:04 smithi132 bash[21536]: cluster 2024-04-15T21:22:03.562697+0000 mgr.a (mgr.14152) 132 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:06.878 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:06 smithi132 bash[21536]: cluster 2024-04-15T21:22:05.563020+0000 mgr.a (mgr.14152) 133 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:06.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:06 smithi187 bash[22200]: cluster 2024-04-15T21:22:05.563020+0000 mgr.a (mgr.14152) 133 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:06.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:06 smithi133 bash[22165]: cluster 2024-04-15T21:22:05.563020+0000 mgr.a (mgr.14152) 133 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:08.878 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:08 smithi132 bash[21536]: cluster 2024-04-15T21:22:07.563378+0000 mgr.a (mgr.14152) 134 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:08.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:08 smithi187 bash[22200]: cluster 2024-04-15T21:22:07.563378+0000 mgr.a (mgr.14152) 134 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:08.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:08 smithi133 bash[22165]: cluster 2024-04-15T21:22:07.563378+0000 mgr.a (mgr.14152) 134 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:10.878 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:10 smithi132 bash[21536]: cluster 2024-04-15T21:22:09.563835+0000 mgr.a (mgr.14152) 135 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:10.878 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:10 smithi132 bash[21536]: audit 2024-04-15T21:22:09.789666+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-15T21:22:10.878 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:10 smithi132 bash[21536]: audit 2024-04-15T21:22:09.791097+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:22:10.878 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:10 smithi132 bash[21536]: cephadm 2024-04-15T21:22:09.792463+0000 mgr.a (mgr.14152) 136 : cephadm [INF] Deploying daemon osd.0 on smithi132 2024-04-15T21:22:10.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:10 smithi187 bash[22200]: cluster 2024-04-15T21:22:09.563835+0000 mgr.a (mgr.14152) 135 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:10.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:10 smithi187 bash[22200]: audit 2024-04-15T21:22:09.789666+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-15T21:22:10.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:10 smithi187 bash[22200]: audit 2024-04-15T21:22:09.791097+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:22:10.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:10 smithi187 bash[22200]: cephadm 2024-04-15T21:22:09.792463+0000 mgr.a (mgr.14152) 136 : cephadm [INF] Deploying daemon osd.0 on smithi132 2024-04-15T21:22:10.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:10 smithi133 bash[22165]: cluster 2024-04-15T21:22:09.563835+0000 mgr.a (mgr.14152) 135 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:10.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:10 smithi133 bash[22165]: audit 2024-04-15T21:22:09.789666+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-15T21:22:10.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:10 smithi133 bash[22165]: audit 2024-04-15T21:22:09.791097+0000 mon.a (mon.0) 395 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:22:10.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:10 smithi133 bash[22165]: cephadm 2024-04-15T21:22:09.792463+0000 mgr.a (mgr.14152) 136 : cephadm [INF] Deploying daemon osd.0 on smithi132 2024-04-15T21:22:12.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:12 smithi187 bash[22200]: cluster 2024-04-15T21:22:11.564256+0000 mgr.a (mgr.14152) 137 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:12.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:12 smithi187 bash[22200]: audit 2024-04-15T21:22:12.608769+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:12.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:12 smithi187 bash[22200]: audit 2024-04-15T21:22:12.617170+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:12.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:12 smithi187 bash[22200]: audit 2024-04-15T21:22:12.625246+0000 mon.a (mon.0) 398 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:12.917 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:12 smithi132 bash[21536]: cluster 2024-04-15T21:22:11.564256+0000 mgr.a (mgr.14152) 137 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:12.918 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:12 smithi132 bash[21536]: audit 2024-04-15T21:22:12.608769+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:12.918 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:12 smithi132 bash[21536]: audit 2024-04-15T21:22:12.617170+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:12.918 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:12 smithi132 bash[21536]: audit 2024-04-15T21:22:12.625246+0000 mon.a (mon.0) 398 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:12.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:12 smithi133 bash[22165]: cluster 2024-04-15T21:22:11.564256+0000 mgr.a (mgr.14152) 137 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:12.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:12 smithi133 bash[22165]: audit 2024-04-15T21:22:12.608769+0000 mon.a (mon.0) 396 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:12.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:12 smithi133 bash[22165]: audit 2024-04-15T21:22:12.617170+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:12.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:12 smithi133 bash[22165]: audit 2024-04-15T21:22:12.625246+0000 mon.a (mon.0) 398 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:13.810 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:13 smithi132 systemd[1]: /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-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-04-15T21:22:13.810 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:22:13 smithi132 systemd[1]: /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-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-04-15T21:22:14.086 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:13 smithi132 systemd[1]: /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-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-04-15T21:22:14.087 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:22:13 smithi132 systemd[1]: /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-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-04-15T21:22:15.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:15 smithi132 bash[21536]: cluster 2024-04-15T21:22:13.564611+0000 mgr.a (mgr.14152) 138 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:15.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:15 smithi132 bash[21536]: audit 2024-04-15T21:22:14.086215+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:15.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:15 smithi132 bash[21536]: audit 2024-04-15T21:22:14.092627+0000 mon.a (mon.0) 400 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:15.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:15 smithi132 bash[21536]: audit 2024-04-15T21:22:14.095711+0000 mon.a (mon.0) 401 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:22:15.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:15 smithi132 bash[21536]: audit 2024-04-15T21:22:14.100120+0000 mon.a (mon.0) 402 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:22:15.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:15 smithi132 bash[21536]: audit 2024-04-15T21:22:14.101053+0000 mon.a (mon.0) 403 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:22:15.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:15 smithi132 bash[21536]: audit 2024-04-15T21:22:14.106865+0000 mon.a (mon.0) 404 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:15.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:15 smithi187 bash[22200]: cluster 2024-04-15T21:22:13.564611+0000 mgr.a (mgr.14152) 138 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:15.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:15 smithi187 bash[22200]: audit 2024-04-15T21:22:14.086215+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:15.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:15 smithi187 bash[22200]: audit 2024-04-15T21:22:14.092627+0000 mon.a (mon.0) 400 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:15.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:15 smithi187 bash[22200]: audit 2024-04-15T21:22:14.095711+0000 mon.a (mon.0) 401 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:22:15.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:15 smithi187 bash[22200]: audit 2024-04-15T21:22:14.100120+0000 mon.a (mon.0) 402 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:22:15.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:15 smithi187 bash[22200]: audit 2024-04-15T21:22:14.101053+0000 mon.a (mon.0) 403 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:22:15.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:15 smithi187 bash[22200]: audit 2024-04-15T21:22:14.106865+0000 mon.a (mon.0) 404 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:15.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:15 smithi133 bash[22165]: cluster 2024-04-15T21:22:13.564611+0000 mgr.a (mgr.14152) 138 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:15.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:15 smithi133 bash[22165]: audit 2024-04-15T21:22:14.086215+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:15.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:15 smithi133 bash[22165]: audit 2024-04-15T21:22:14.092627+0000 mon.a (mon.0) 400 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:15.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:15 smithi133 bash[22165]: audit 2024-04-15T21:22:14.095711+0000 mon.a (mon.0) 401 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:22:15.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:15 smithi133 bash[22165]: audit 2024-04-15T21:22:14.100120+0000 mon.a (mon.0) 402 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:22:15.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:15 smithi133 bash[22165]: audit 2024-04-15T21:22:14.101053+0000 mon.a (mon.0) 403 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:22:15.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:15 smithi133 bash[22165]: audit 2024-04-15T21:22:14.106865+0000 mon.a (mon.0) 404 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:17.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:17 smithi132 bash[21536]: cluster 2024-04-15T21:22:15.564908+0000 mgr.a (mgr.14152) 139 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:17.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:17 smithi187 bash[22200]: cluster 2024-04-15T21:22:15.564908+0000 mgr.a (mgr.14152) 139 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:17.446 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:17 smithi133 bash[22165]: cluster 2024-04-15T21:22:15.564908+0000 mgr.a (mgr.14152) 139 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:19.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:19 smithi132 bash[21536]: cluster 2024-04-15T21:22:17.565321+0000 mgr.a (mgr.14152) 140 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:19.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:19 smithi187 bash[22200]: cluster 2024-04-15T21:22:17.565321+0000 mgr.a (mgr.14152) 140 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:19.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:19 smithi133 bash[22165]: cluster 2024-04-15T21:22:17.565321+0000 mgr.a (mgr.14152) 140 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:21.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:21 smithi132 bash[21536]: cluster 2024-04-15T21:22:19.565760+0000 mgr.a (mgr.14152) 141 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:21.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:21 smithi132 bash[21536]: audit 2024-04-15T21:22:20.311874+0000 mon.a (mon.0) 405 : audit [INF] from='osd.0 [v2:172.21.15.132:6802/1969507637,v1:172.21.15.132:6803/1969507637]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-15T21:22:21.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:21 smithi187 bash[22200]: cluster 2024-04-15T21:22:19.565760+0000 mgr.a (mgr.14152) 141 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:21.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:21 smithi187 bash[22200]: audit 2024-04-15T21:22:20.311874+0000 mon.a (mon.0) 405 : audit [INF] from='osd.0 [v2:172.21.15.132:6802/1969507637,v1:172.21.15.132:6803/1969507637]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-15T21:22:21.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:21 smithi133 bash[22165]: cluster 2024-04-15T21:22:19.565760+0000 mgr.a (mgr.14152) 141 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:21.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:21 smithi133 bash[22165]: audit 2024-04-15T21:22:20.311874+0000 mon.a (mon.0) 405 : audit [INF] from='osd.0 [v2:172.21.15.132:6802/1969507637,v1:172.21.15.132:6803/1969507637]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-15T21:22:22.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:22 smithi132 bash[21536]: audit 2024-04-15T21:22:21.106057+0000 mon.a (mon.0) 406 : audit [INF] from='osd.0 [v2:172.21.15.132:6802/1969507637,v1:172.21.15.132:6803/1969507637]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-15T21:22:22.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:22 smithi132 bash[21536]: cluster 2024-04-15T21:22:21.110205+0000 mon.a (mon.0) 407 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-04-15T21:22:22.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:22 smithi132 bash[21536]: audit 2024-04-15T21:22:21.110712+0000 mon.a (mon.0) 408 : audit [INF] from='osd.0 [v2:172.21.15.132:6802/1969507637,v1:172.21.15.132:6803/1969507637]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi132", "root=default"]}]: dispatch 2024-04-15T21:22:22.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:22 smithi132 bash[21536]: audit 2024-04-15T21:22:21.111314+0000 mon.a (mon.0) 409 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:22:22.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:22 smithi187 bash[22200]: audit 2024-04-15T21:22:21.106057+0000 mon.a (mon.0) 406 : audit [INF] from='osd.0 [v2:172.21.15.132:6802/1969507637,v1:172.21.15.132:6803/1969507637]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-15T21:22:22.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:22 smithi187 bash[22200]: cluster 2024-04-15T21:22:21.110205+0000 mon.a (mon.0) 407 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-04-15T21:22:22.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:22 smithi187 bash[22200]: audit 2024-04-15T21:22:21.110712+0000 mon.a (mon.0) 408 : audit [INF] from='osd.0 [v2:172.21.15.132:6802/1969507637,v1:172.21.15.132:6803/1969507637]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi132", "root=default"]}]: dispatch 2024-04-15T21:22:22.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:22 smithi187 bash[22200]: audit 2024-04-15T21:22:21.111314+0000 mon.a (mon.0) 409 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:22:22.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:22 smithi133 bash[22165]: audit 2024-04-15T21:22:21.106057+0000 mon.a (mon.0) 406 : audit [INF] from='osd.0 [v2:172.21.15.132:6802/1969507637,v1:172.21.15.132:6803/1969507637]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-15T21:22:22.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:22 smithi133 bash[22165]: cluster 2024-04-15T21:22:21.110205+0000 mon.a (mon.0) 407 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-04-15T21:22:22.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:22 smithi133 bash[22165]: audit 2024-04-15T21:22:21.110712+0000 mon.a (mon.0) 408 : audit [INF] from='osd.0 [v2:172.21.15.132:6802/1969507637,v1:172.21.15.132:6803/1969507637]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi132", "root=default"]}]: dispatch 2024-04-15T21:22:22.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:22 smithi133 bash[22165]: audit 2024-04-15T21:22:21.111314+0000 mon.a (mon.0) 409 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:22:23.356 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:23 smithi132 bash[21536]: cluster 2024-04-15T21:22:21.566173+0000 mgr.a (mgr.14152) 142 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:23.356 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:23 smithi132 bash[21536]: audit 2024-04-15T21:22:22.112550+0000 mon.a (mon.0) 410 : audit [INF] from='osd.0 [v2:172.21.15.132:6802/1969507637,v1:172.21.15.132:6803/1969507637]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi132", "root=default"]}]': finished 2024-04-15T21:22:23.356 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:23 smithi132 bash[21536]: cluster 2024-04-15T21:22:22.115815+0000 mon.a (mon.0) 411 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-04-15T21:22:23.356 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:23 smithi132 bash[21536]: audit 2024-04-15T21:22:22.116357+0000 mon.a (mon.0) 412 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:22:23.357 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:23 smithi132 bash[21536]: audit 2024-04-15T21:22:22.119210+0000 mon.a (mon.0) 413 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:22:23.357 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:23 smithi132 bash[21536]: audit 2024-04-15T21:22:22.583402+0000 mon.a (mon.0) 414 : audit [INF] from='osd.0 [v2:172.21.15.132:6802/1969507637,v1:172.21.15.132:6803/1969507637]' entity='osd.0' 2024-04-15T21:22:23.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:23 smithi187 bash[22200]: cluster 2024-04-15T21:22:21.566173+0000 mgr.a (mgr.14152) 142 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:23.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:23 smithi187 bash[22200]: audit 2024-04-15T21:22:22.112550+0000 mon.a (mon.0) 410 : audit [INF] from='osd.0 [v2:172.21.15.132:6802/1969507637,v1:172.21.15.132:6803/1969507637]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi132", "root=default"]}]': finished 2024-04-15T21:22:23.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:23 smithi187 bash[22200]: cluster 2024-04-15T21:22:22.115815+0000 mon.a (mon.0) 411 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-04-15T21:22:23.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:23 smithi187 bash[22200]: audit 2024-04-15T21:22:22.116357+0000 mon.a (mon.0) 412 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:22:23.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:23 smithi187 bash[22200]: audit 2024-04-15T21:22:22.119210+0000 mon.a (mon.0) 413 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:22:23.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:23 smithi187 bash[22200]: audit 2024-04-15T21:22:22.583402+0000 mon.a (mon.0) 414 : audit [INF] from='osd.0 [v2:172.21.15.132:6802/1969507637,v1:172.21.15.132:6803/1969507637]' entity='osd.0' 2024-04-15T21:22:23.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:23 smithi133 bash[22165]: cluster 2024-04-15T21:22:21.566173+0000 mgr.a (mgr.14152) 142 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:23.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:23 smithi133 bash[22165]: audit 2024-04-15T21:22:22.112550+0000 mon.a (mon.0) 410 : audit [INF] from='osd.0 [v2:172.21.15.132:6802/1969507637,v1:172.21.15.132:6803/1969507637]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi132", "root=default"]}]': finished 2024-04-15T21:22:23.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:23 smithi133 bash[22165]: cluster 2024-04-15T21:22:22.115815+0000 mon.a (mon.0) 411 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-04-15T21:22:23.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:23 smithi133 bash[22165]: audit 2024-04-15T21:22:22.116357+0000 mon.a (mon.0) 412 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:22:23.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:23 smithi133 bash[22165]: audit 2024-04-15T21:22:22.119210+0000 mon.a (mon.0) 413 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:22:23.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:23 smithi133 bash[22165]: audit 2024-04-15T21:22:22.583402+0000 mon.a (mon.0) 414 : audit [INF] from='osd.0 [v2:172.21.15.132:6802/1969507637,v1:172.21.15.132:6803/1969507637]' entity='osd.0' 2024-04-15T21:22:24.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:24 smithi132 bash[21536]: cluster 2024-04-15T21:22:21.294595+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-15T21:22:24.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:24 smithi132 bash[21536]: cluster 2024-04-15T21:22:21.294755+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-15T21:22:24.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:24 smithi132 bash[21536]: audit 2024-04-15T21:22:23.122716+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:22:24.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:24 smithi132 bash[21536]: audit 2024-04-15T21:22:23.340594+0000 mon.a (mon.0) 416 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:24.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:24 smithi132 bash[21536]: audit 2024-04-15T21:22:23.347416+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:24.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:24 smithi132 bash[21536]: cephadm 2024-04-15T21:22:23.349526+0000 mgr.a (mgr.14152) 143 : cephadm [INF] Detected new or changed devices on smithi132 2024-04-15T21:22:24.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:24 smithi132 bash[21536]: audit 2024-04-15T21:22:23.355952+0000 mon.a (mon.0) 418 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:24.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:24 smithi132 bash[21536]: audit 2024-04-15T21:22:23.391591+0000 mon.a (mon.0) 419 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:22:24.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:24 smithi132 bash[21536]: audit 2024-04-15T21:22:23.394685+0000 mon.a (mon.0) 420 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:22:24.380 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:24 smithi132 bash[21536]: audit 2024-04-15T21:22:23.395695+0000 mon.a (mon.0) 421 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:22:24.380 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:24 smithi132 bash[21536]: audit 2024-04-15T21:22:23.403069+0000 mon.a (mon.0) 422 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:24.380 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:24 smithi132 bash[21536]: audit 2024-04-15T21:22:23.586107+0000 mon.a (mon.0) 423 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:24.380 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:24 smithi132 bash[21536]: cluster 2024-04-15T21:22:23.594759+0000 mon.a (mon.0) 424 : cluster [INF] osd.0 [v2:172.21.15.132:6802/1969507637,v1:172.21.15.132:6803/1969507637] boot 2024-04-15T21:22:24.380 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:24 smithi132 bash[21536]: cluster 2024-04-15T21:22:23.594786+0000 mon.a (mon.0) 425 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-04-15T21:22:24.380 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:24 smithi132 bash[21536]: audit 2024-04-15T21:22:23.595568+0000 mon.a (mon.0) 426 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:22:24.380 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:24 smithi132 bash[21536]: audit 2024-04-15T21:22:23.600243+0000 mon.a (mon.0) 427 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:24.380 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:24 smithi132 bash[21536]: audit 2024-04-15T21:22:23.608072+0000 mon.a (mon.0) 428 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:24.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:24 smithi187 bash[22200]: cluster 2024-04-15T21:22:21.294595+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-15T21:22:24.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:24 smithi187 bash[22200]: cluster 2024-04-15T21:22:21.294755+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-15T21:22:24.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:24 smithi187 bash[22200]: audit 2024-04-15T21:22:23.122716+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:22:24.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:24 smithi187 bash[22200]: audit 2024-04-15T21:22:23.340594+0000 mon.a (mon.0) 416 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:24.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:24 smithi187 bash[22200]: audit 2024-04-15T21:22:23.347416+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:24.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:24 smithi187 bash[22200]: cephadm 2024-04-15T21:22:23.349526+0000 mgr.a (mgr.14152) 143 : cephadm [INF] Detected new or changed devices on smithi132 2024-04-15T21:22:24.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:24 smithi187 bash[22200]: audit 2024-04-15T21:22:23.355952+0000 mon.a (mon.0) 418 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:24.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:24 smithi187 bash[22200]: audit 2024-04-15T21:22:23.391591+0000 mon.a (mon.0) 419 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:22:24.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:24 smithi187 bash[22200]: audit 2024-04-15T21:22:23.394685+0000 mon.a (mon.0) 420 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:22:24.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:24 smithi187 bash[22200]: audit 2024-04-15T21:22:23.395695+0000 mon.a (mon.0) 421 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:22:24.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:24 smithi187 bash[22200]: audit 2024-04-15T21:22:23.403069+0000 mon.a (mon.0) 422 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:24.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:24 smithi187 bash[22200]: audit 2024-04-15T21:22:23.586107+0000 mon.a (mon.0) 423 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:24.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:24 smithi187 bash[22200]: cluster 2024-04-15T21:22:23.594759+0000 mon.a (mon.0) 424 : cluster [INF] osd.0 [v2:172.21.15.132:6802/1969507637,v1:172.21.15.132:6803/1969507637] boot 2024-04-15T21:22:24.416 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:24 smithi187 bash[22200]: cluster 2024-04-15T21:22:23.594786+0000 mon.a (mon.0) 425 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-04-15T21:22:24.416 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:24 smithi187 bash[22200]: audit 2024-04-15T21:22:23.595568+0000 mon.a (mon.0) 426 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:22:24.416 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:24 smithi187 bash[22200]: audit 2024-04-15T21:22:23.600243+0000 mon.a (mon.0) 427 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:24.416 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:24 smithi187 bash[22200]: audit 2024-04-15T21:22:23.608072+0000 mon.a (mon.0) 428 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:24.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:24 smithi133 bash[22165]: cluster 2024-04-15T21:22:21.294595+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-15T21:22:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:24 smithi133 bash[22165]: cluster 2024-04-15T21:22:21.294755+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-15T21:22:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:24 smithi133 bash[22165]: audit 2024-04-15T21:22:23.122716+0000 mon.a (mon.0) 415 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:22:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:24 smithi133 bash[22165]: audit 2024-04-15T21:22:23.340594+0000 mon.a (mon.0) 416 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:24 smithi133 bash[22165]: audit 2024-04-15T21:22:23.347416+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:24 smithi133 bash[22165]: cephadm 2024-04-15T21:22:23.349526+0000 mgr.a (mgr.14152) 143 : cephadm [INF] Detected new or changed devices on smithi132 2024-04-15T21:22:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:24 smithi133 bash[22165]: audit 2024-04-15T21:22:23.355952+0000 mon.a (mon.0) 418 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:24 smithi133 bash[22165]: audit 2024-04-15T21:22:23.391591+0000 mon.a (mon.0) 419 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:22:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:24 smithi133 bash[22165]: audit 2024-04-15T21:22:23.394685+0000 mon.a (mon.0) 420 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:22:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:24 smithi133 bash[22165]: audit 2024-04-15T21:22:23.395695+0000 mon.a (mon.0) 421 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:22:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:24 smithi133 bash[22165]: audit 2024-04-15T21:22:23.403069+0000 mon.a (mon.0) 422 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:24 smithi133 bash[22165]: audit 2024-04-15T21:22:23.586107+0000 mon.a (mon.0) 423 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:24 smithi133 bash[22165]: cluster 2024-04-15T21:22:23.594759+0000 mon.a (mon.0) 424 : cluster [INF] osd.0 [v2:172.21.15.132:6802/1969507637,v1:172.21.15.132:6803/1969507637] boot 2024-04-15T21:22:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:24 smithi133 bash[22165]: cluster 2024-04-15T21:22:23.594786+0000 mon.a (mon.0) 425 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-04-15T21:22:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:24 smithi133 bash[22165]: audit 2024-04-15T21:22:23.595568+0000 mon.a (mon.0) 426 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:22:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:24 smithi133 bash[22165]: audit 2024-04-15T21:22:23.600243+0000 mon.a (mon.0) 427 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:24.498 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:24 smithi133 bash[22165]: audit 2024-04-15T21:22:23.608072+0000 mon.a (mon.0) 428 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:25.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:25 smithi132 bash[21536]: cluster 2024-04-15T21:22:23.566612+0000 mgr.a (mgr.14152) 144 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:25.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:25 smithi187 bash[22200]: cluster 2024-04-15T21:22:23.566612+0000 mgr.a (mgr.14152) 144 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:25.440 INFO:teuthology.orchestra.run.smithi132.stdout:Created osd(s) 0 on host 'smithi132' 2024-04-15T21:22:25.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:25 smithi133 bash[22165]: cluster 2024-04-15T21:22:23.566612+0000 mgr.a (mgr.14152) 144 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:22:26.061 DEBUG:teuthology.orchestra.run.smithi132:osd.0> sudo journalctl -f -n 0 -u ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@osd.0.service 2024-04-15T21:22:26.063 INFO:tasks.cephadm:Deploying osd.1 on smithi133 with /dev/vg_nvme/lv_4... 2024-04-15T21:22:26.064 DEBUG:teuthology.orchestra.run.smithi133:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-04-15T21:22:26.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:26 smithi132 bash[21536]: cluster 2024-04-15T21:22:25.135279+0000 mon.a (mon.0) 429 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-04-15T21:22:26.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:26 smithi132 bash[21536]: audit 2024-04-15T21:22:25.383105+0000 mon.a (mon.0) 430 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:26.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:26 smithi132 bash[21536]: audit 2024-04-15T21:22:25.392719+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:26.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:26 smithi132 bash[21536]: audit 2024-04-15T21:22:25.405184+0000 mon.a (mon.0) 432 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:22:26.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:26 smithi132 bash[21536]: audit 2024-04-15T21:22:25.409196+0000 mon.a (mon.0) 433 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi132", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:22:26.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:26 smithi132 bash[21536]: audit 2024-04-15T21:22:25.410751+0000 mon.a (mon.0) 434 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:22:26.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:26 smithi132 bash[21536]: audit 2024-04-15T21:22:25.412066+0000 mon.a (mon.0) 435 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:22:26.380 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:26 smithi132 bash[21536]: audit 2024-04-15T21:22:25.422260+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:26.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:26 smithi187 bash[22200]: cluster 2024-04-15T21:22:25.135279+0000 mon.a (mon.0) 429 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-04-15T21:22:26.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:26 smithi187 bash[22200]: audit 2024-04-15T21:22:25.383105+0000 mon.a (mon.0) 430 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:26.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:26 smithi187 bash[22200]: audit 2024-04-15T21:22:25.392719+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:26.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:26 smithi187 bash[22200]: audit 2024-04-15T21:22:25.405184+0000 mon.a (mon.0) 432 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:22:26.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:26 smithi187 bash[22200]: audit 2024-04-15T21:22:25.409196+0000 mon.a (mon.0) 433 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi132", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:22:26.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:26 smithi187 bash[22200]: audit 2024-04-15T21:22:25.410751+0000 mon.a (mon.0) 434 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:22:26.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:26 smithi187 bash[22200]: audit 2024-04-15T21:22:25.412066+0000 mon.a (mon.0) 435 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:22:26.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:26 smithi187 bash[22200]: audit 2024-04-15T21:22:25.422260+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:26.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:26 smithi133 bash[22165]: cluster 2024-04-15T21:22:25.135279+0000 mon.a (mon.0) 429 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-04-15T21:22:26.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:26 smithi133 bash[22165]: audit 2024-04-15T21:22:25.383105+0000 mon.a (mon.0) 430 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:26.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:26 smithi133 bash[22165]: audit 2024-04-15T21:22:25.392719+0000 mon.a (mon.0) 431 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:26.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:26 smithi133 bash[22165]: audit 2024-04-15T21:22:25.405184+0000 mon.a (mon.0) 432 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:22:26.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:26 smithi133 bash[22165]: audit 2024-04-15T21:22:25.409196+0000 mon.a (mon.0) 433 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi132", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:22:26.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:26 smithi133 bash[22165]: audit 2024-04-15T21:22:25.410751+0000 mon.a (mon.0) 434 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:22:26.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:26 smithi133 bash[22165]: audit 2024-04-15T21:22:25.412066+0000 mon.a (mon.0) 435 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:22:26.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:26 smithi133 bash[22165]: audit 2024-04-15T21:22:25.422260+0000 mon.a (mon.0) 436 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:27.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:27 smithi187 bash[22200]: cluster 2024-04-15T21:22:25.414859+0000 mgr.a (mgr.14152) 145 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:27.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:27 smithi187 bash[22200]: cluster 2024-04-15T21:22:26.389324+0000 mon.a (mon.0) 437 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-15T21:22:27.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:27 smithi133 bash[22165]: cluster 2024-04-15T21:22:25.414859+0000 mgr.a (mgr.14152) 145 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:27.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:27 smithi133 bash[22165]: cluster 2024-04-15T21:22:26.389324+0000 mon.a (mon.0) 437 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-15T21:22:27.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:27 smithi132 bash[21536]: cluster 2024-04-15T21:22:25.414859+0000 mgr.a (mgr.14152) 145 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:27.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:27 smithi132 bash[21536]: cluster 2024-04-15T21:22:26.389324+0000 mon.a (mon.0) 437 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-15T21:22:29.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:29 smithi187 bash[22200]: cluster 2024-04-15T21:22:27.415403+0000 mgr.a (mgr.14152) 146 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:29.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:29 smithi133 bash[22165]: cluster 2024-04-15T21:22:27.415403+0000 mgr.a (mgr.14152) 146 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:29.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:29 smithi132 bash[21536]: cluster 2024-04-15T21:22:27.415403+0000 mgr.a (mgr.14152) 146 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:30.778 INFO:teuthology.orchestra.run.smithi133.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.b/config 2024-04-15T21:22:31.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:31 smithi187 bash[22200]: cluster 2024-04-15T21:22:29.415891+0000 mgr.a (mgr.14152) 147 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:31.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:31 smithi187 bash[22200]: audit 2024-04-15T21:22:30.795501+0000 mon.a (mon.0) 438 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:31.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:31 smithi187 bash[22200]: audit 2024-04-15T21:22:30.802008+0000 mon.a (mon.0) 439 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:31.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:31 smithi187 bash[22200]: audit 2024-04-15T21:22:30.810178+0000 mon.a (mon.0) 440 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:31.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:31 smithi187 bash[22200]: audit 2024-04-15T21:22:30.853421+0000 mon.a (mon.0) 441 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:22:31.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:31 smithi187 bash[22200]: audit 2024-04-15T21:22:30.858579+0000 mon.a (mon.0) 442 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:22:31.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:31 smithi187 bash[22200]: audit 2024-04-15T21:22:30.860193+0000 mon.a (mon.0) 443 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:22:31.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:31 smithi187 bash[22200]: audit 2024-04-15T21:22:30.869640+0000 mon.a (mon.0) 444 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:31.472 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:31 smithi133 bash[22165]: cluster 2024-04-15T21:22:29.415891+0000 mgr.a (mgr.14152) 147 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:31.473 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:31 smithi133 bash[22165]: audit 2024-04-15T21:22:30.795501+0000 mon.a (mon.0) 438 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:31.473 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:31 smithi133 bash[22165]: audit 2024-04-15T21:22:30.802008+0000 mon.a (mon.0) 439 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:31.473 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:31 smithi133 bash[22165]: audit 2024-04-15T21:22:30.810178+0000 mon.a (mon.0) 440 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:31.473 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:31 smithi133 bash[22165]: audit 2024-04-15T21:22:30.853421+0000 mon.a (mon.0) 441 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:22:31.473 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:31 smithi133 bash[22165]: audit 2024-04-15T21:22:30.858579+0000 mon.a (mon.0) 442 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:22:31.473 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:31 smithi133 bash[22165]: audit 2024-04-15T21:22:30.860193+0000 mon.a (mon.0) 443 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:22:31.473 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:31 smithi133 bash[22165]: audit 2024-04-15T21:22:30.869640+0000 mon.a (mon.0) 444 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:31.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:31 smithi132 bash[21536]: cluster 2024-04-15T21:22:29.415891+0000 mgr.a (mgr.14152) 147 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:31.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:31 smithi132 bash[21536]: audit 2024-04-15T21:22:30.795501+0000 mon.a (mon.0) 438 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:31.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:31 smithi132 bash[21536]: audit 2024-04-15T21:22:30.802008+0000 mon.a (mon.0) 439 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:31.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:31 smithi132 bash[21536]: audit 2024-04-15T21:22:30.810178+0000 mon.a (mon.0) 440 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:31.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:31 smithi132 bash[21536]: audit 2024-04-15T21:22:30.853421+0000 mon.a (mon.0) 441 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:22:31.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:31 smithi132 bash[21536]: audit 2024-04-15T21:22:30.858579+0000 mon.a (mon.0) 442 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:22:31.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:31 smithi132 bash[21536]: audit 2024-04-15T21:22:30.860193+0000 mon.a (mon.0) 443 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:22:31.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:31 smithi132 bash[21536]: audit 2024-04-15T21:22:30.869640+0000 mon.a (mon.0) 444 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:32.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:32 smithi187 bash[22200]: cluster 2024-04-15T21:22:30.863361+0000 mgr.a (mgr.14152) 148 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:32.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:32 smithi187 bash[22200]: cluster 2024-04-15T21:22:31.806634+0000 mon.a (mon.0) 445 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-04-15T21:22:32.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:32 smithi187 bash[22200]: cluster 2024-04-15T21:22:31.806684+0000 mon.a (mon.0) 446 : cluster [INF] Cluster is now healthy 2024-04-15T21:22:32.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:32 smithi133 bash[22165]: cluster 2024-04-15T21:22:30.863361+0000 mgr.a (mgr.14152) 148 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:32.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:32 smithi133 bash[22165]: cluster 2024-04-15T21:22:31.806634+0000 mon.a (mon.0) 445 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-04-15T21:22:32.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:32 smithi133 bash[22165]: cluster 2024-04-15T21:22:31.806684+0000 mon.a (mon.0) 446 : cluster [INF] Cluster is now healthy 2024-04-15T21:22:32.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:32 smithi132 bash[21536]: cluster 2024-04-15T21:22:30.863361+0000 mgr.a (mgr.14152) 148 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:32.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:32 smithi132 bash[21536]: cluster 2024-04-15T21:22:31.806634+0000 mon.a (mon.0) 445 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-04-15T21:22:32.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:32 smithi132 bash[21536]: cluster 2024-04-15T21:22:31.806684+0000 mon.a (mon.0) 446 : cluster [INF] Cluster is now healthy 2024-04-15T21:22:33.436 INFO:teuthology.orchestra.run.smithi133.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-04-15T21:22:33.436 INFO:teuthology.orchestra.run.smithi133.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-04-15T21:22:33.436 INFO:teuthology.orchestra.run.smithi133.stderr: stderr: 10+0 records in 2024-04-15T21:22:33.436 INFO:teuthology.orchestra.run.smithi133.stderr:10+0 records out 2024-04-15T21:22:33.436 INFO:teuthology.orchestra.run.smithi133.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0146433 s, 716 MB/s 2024-04-15T21:22:33.437 INFO:teuthology.orchestra.run.smithi133.stderr:--> Zapping successful for: 2024-04-15T21:22:34.011 DEBUG:teuthology.orchestra.run.smithi133:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph orch daemon add osd smithi133:vg_nvme/lv_4 2024-04-15T21:22:34.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:33 smithi132 bash[21536]: audit 2024-04-15T21:22:32.826493+0000 mon.a (mon.0) 447 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:34.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:33 smithi132 bash[21536]: audit 2024-04-15T21:22:32.834566+0000 mon.a (mon.0) 448 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:34.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:33 smithi132 bash[21536]: audit 2024-04-15T21:22:32.844639+0000 mon.a (mon.0) 449 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:34.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:33 smithi132 bash[21536]: cluster 2024-04-15T21:22:32.863885+0000 mgr.a (mgr.14152) 149 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:34.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:33 smithi187 bash[22200]: audit 2024-04-15T21:22:32.826493+0000 mon.a (mon.0) 447 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:34.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:33 smithi187 bash[22200]: audit 2024-04-15T21:22:32.834566+0000 mon.a (mon.0) 448 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:34.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:33 smithi187 bash[22200]: audit 2024-04-15T21:22:32.844639+0000 mon.a (mon.0) 449 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:34.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:33 smithi187 bash[22200]: cluster 2024-04-15T21:22:32.863885+0000 mgr.a (mgr.14152) 149 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:34.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:33 smithi133 bash[22165]: audit 2024-04-15T21:22:32.826493+0000 mon.a (mon.0) 447 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:34.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:33 smithi133 bash[22165]: audit 2024-04-15T21:22:32.834566+0000 mon.a (mon.0) 448 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:34.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:33 smithi133 bash[22165]: audit 2024-04-15T21:22:32.844639+0000 mon.a (mon.0) 449 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:34.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:33 smithi133 bash[22165]: cluster 2024-04-15T21:22:32.863885+0000 mgr.a (mgr.14152) 149 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:36.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:35 smithi133 bash[22165]: cluster 2024-04-15T21:22:34.864468+0000 mgr.a (mgr.14152) 150 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:36.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:35 smithi132 bash[21536]: cluster 2024-04-15T21:22:34.864468+0000 mgr.a (mgr.14152) 150 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:36.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:35 smithi187 bash[22200]: cluster 2024-04-15T21:22:34.864468+0000 mgr.a (mgr.14152) 150 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:38.188 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:37 smithi133 bash[22165]: cluster 2024-04-15T21:22:36.864940+0000 mgr.a (mgr.14152) 151 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:38.314 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:37 smithi132 bash[21536]: cluster 2024-04-15T21:22:36.864940+0000 mgr.a (mgr.14152) 151 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:38.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:37 smithi187 bash[22200]: cluster 2024-04-15T21:22:36.864940+0000 mgr.a (mgr.14152) 151 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:38.720 INFO:teuthology.orchestra.run.smithi133.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.b/config 2024-04-15T21:22:39.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:39 smithi133 bash[22165]: cluster 2024-04-15T21:22:38.865350+0000 mgr.a (mgr.14152) 152 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:40.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:39 smithi132 bash[21536]: cluster 2024-04-15T21:22:38.865350+0000 mgr.a (mgr.14152) 152 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:40.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:39 smithi187 bash[22200]: cluster 2024-04-15T21:22:38.865350+0000 mgr.a (mgr.14152) 152 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:42.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:41 smithi133 bash[22165]: cluster 2024-04-15T21:22:40.865842+0000 mgr.a (mgr.14152) 153 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:42.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:41 smithi133 bash[22165]: audit 2024-04-15T21:22:41.912964+0000 mon.a (mon.0) 450 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:22:42.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:41 smithi133 bash[22165]: audit 2024-04-15T21:22:41.919500+0000 mon.a (mon.0) 451 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:22:42.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:41 smithi133 bash[22165]: audit 2024-04-15T21:22:41.921187+0000 mon.a (mon.0) 452 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:22:42.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:41 smithi132 bash[21536]: cluster 2024-04-15T21:22:40.865842+0000 mgr.a (mgr.14152) 153 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:42.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:41 smithi132 bash[21536]: audit 2024-04-15T21:22:41.912964+0000 mon.a (mon.0) 450 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:22:42.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:41 smithi132 bash[21536]: audit 2024-04-15T21:22:41.919500+0000 mon.a (mon.0) 451 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:22:42.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:41 smithi132 bash[21536]: audit 2024-04-15T21:22:41.921187+0000 mon.a (mon.0) 452 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:22:42.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:41 smithi187 bash[22200]: cluster 2024-04-15T21:22:40.865842+0000 mgr.a (mgr.14152) 153 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:42.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:41 smithi187 bash[22200]: audit 2024-04-15T21:22:41.912964+0000 mon.a (mon.0) 450 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:22:42.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:41 smithi187 bash[22200]: audit 2024-04-15T21:22:41.919500+0000 mon.a (mon.0) 451 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:22:42.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:41 smithi187 bash[22200]: audit 2024-04-15T21:22:41.921187+0000 mon.a (mon.0) 452 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:22:43.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:42 smithi133 bash[22165]: audit 2024-04-15T21:22:41.905284+0000 mgr.a (mgr.14152) 154 : audit [DBG] from='client.24128 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi133:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:22:43.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:42 smithi132 bash[21536]: audit 2024-04-15T21:22:41.905284+0000 mgr.a (mgr.14152) 154 : audit [DBG] from='client.24128 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi133:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:22:43.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:42 smithi187 bash[22200]: audit 2024-04-15T21:22:41.905284+0000 mgr.a (mgr.14152) 154 : audit [DBG] from='client.24128 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi133:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:22:44.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:43 smithi133 bash[22165]: cluster 2024-04-15T21:22:42.866228+0000 mgr.a (mgr.14152) 155 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:44.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:43 smithi133 bash[22165]: audit 2024-04-15T21:22:43.818371+0000 mon.a (mon.0) 453 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:44.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:43 smithi133 bash[22165]: audit 2024-04-15T21:22:43.826967+0000 mon.a (mon.0) 454 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:44.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:43 smithi133 bash[22165]: audit 2024-04-15T21:22:43.837552+0000 mon.a (mon.0) 455 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:44.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:43 smithi132 bash[21536]: cluster 2024-04-15T21:22:42.866228+0000 mgr.a (mgr.14152) 155 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:44.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:43 smithi132 bash[21536]: audit 2024-04-15T21:22:43.818371+0000 mon.a (mon.0) 453 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:44.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:43 smithi132 bash[21536]: audit 2024-04-15T21:22:43.826967+0000 mon.a (mon.0) 454 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:44.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:43 smithi132 bash[21536]: audit 2024-04-15T21:22:43.837552+0000 mon.a (mon.0) 455 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:44.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:43 smithi187 bash[22200]: cluster 2024-04-15T21:22:42.866228+0000 mgr.a (mgr.14152) 155 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:44.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:43 smithi187 bash[22200]: audit 2024-04-15T21:22:43.818371+0000 mon.a (mon.0) 453 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:44.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:43 smithi187 bash[22200]: audit 2024-04-15T21:22:43.826967+0000 mon.a (mon.0) 454 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:44.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:43 smithi187 bash[22200]: audit 2024-04-15T21:22:43.837552+0000 mon.a (mon.0) 455 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:46.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:45 smithi133 bash[22165]: cluster 2024-04-15T21:22:44.866671+0000 mgr.a (mgr.14152) 156 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:46.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:45 smithi132 bash[21536]: cluster 2024-04-15T21:22:44.866671+0000 mgr.a (mgr.14152) 156 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:46.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:45 smithi187 bash[22200]: cluster 2024-04-15T21:22:44.866671+0000 mgr.a (mgr.14152) 156 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:48.237 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:47 smithi133 bash[22165]: cluster 2024-04-15T21:22:46.867142+0000 mgr.a (mgr.14152) 157 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:48.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:47 smithi132 bash[21536]: cluster 2024-04-15T21:22:46.867142+0000 mgr.a (mgr.14152) 157 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:48.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:47 smithi187 bash[22200]: cluster 2024-04-15T21:22:46.867142+0000 mgr.a (mgr.14152) 157 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:50.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:49 smithi133 bash[22165]: cluster 2024-04-15T21:22:48.867553+0000 mgr.a (mgr.14152) 158 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:50.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:49 smithi133 bash[22165]: audit 2024-04-15T21:22:49.384779+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:50.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:49 smithi133 bash[22165]: audit 2024-04-15T21:22:49.389599+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:50.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:49 smithi133 bash[22165]: audit 2024-04-15T21:22:49.394340+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:50.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:49 smithi133 bash[22165]: audit 2024-04-15T21:22:49.903019+0000 mon.b (mon.2) 6 : audit [INF] from='client.? 172.21.15.133:0/883367145' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3b4948a3-764e-477d-9d6d-5e7b757c4bbe"}]: dispatch 2024-04-15T21:22:50.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:49 smithi133 bash[22165]: audit 2024-04-15T21:22:49.904300+0000 mon.a (mon.0) 459 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3b4948a3-764e-477d-9d6d-5e7b757c4bbe"}]: dispatch 2024-04-15T21:22:50.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:49 smithi133 bash[22165]: audit 2024-04-15T21:22:49.907376+0000 mon.a (mon.0) 460 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3b4948a3-764e-477d-9d6d-5e7b757c4bbe"}]': finished 2024-04-15T21:22:50.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:49 smithi133 bash[22165]: cluster 2024-04-15T21:22:49.912358+0000 mon.a (mon.0) 461 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-04-15T21:22:50.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:49 smithi133 bash[22165]: audit 2024-04-15T21:22:49.912928+0000 mon.a (mon.0) 462 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:22:50.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:49 smithi132 bash[21536]: cluster 2024-04-15T21:22:48.867553+0000 mgr.a (mgr.14152) 158 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:50.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:49 smithi132 bash[21536]: audit 2024-04-15T21:22:49.384779+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:50.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:49 smithi132 bash[21536]: audit 2024-04-15T21:22:49.389599+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:50.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:49 smithi132 bash[21536]: audit 2024-04-15T21:22:49.394340+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:50.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:49 smithi132 bash[21536]: audit 2024-04-15T21:22:49.903019+0000 mon.b (mon.2) 6 : audit [INF] from='client.? 172.21.15.133:0/883367145' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3b4948a3-764e-477d-9d6d-5e7b757c4bbe"}]: dispatch 2024-04-15T21:22:50.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:49 smithi132 bash[21536]: audit 2024-04-15T21:22:49.904300+0000 mon.a (mon.0) 459 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3b4948a3-764e-477d-9d6d-5e7b757c4bbe"}]: dispatch 2024-04-15T21:22:50.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:49 smithi132 bash[21536]: audit 2024-04-15T21:22:49.907376+0000 mon.a (mon.0) 460 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3b4948a3-764e-477d-9d6d-5e7b757c4bbe"}]': finished 2024-04-15T21:22:50.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:49 smithi132 bash[21536]: cluster 2024-04-15T21:22:49.912358+0000 mon.a (mon.0) 461 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-04-15T21:22:50.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:49 smithi132 bash[21536]: audit 2024-04-15T21:22:49.912928+0000 mon.a (mon.0) 462 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:22:50.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:49 smithi187 bash[22200]: cluster 2024-04-15T21:22:48.867553+0000 mgr.a (mgr.14152) 158 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:50.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:49 smithi187 bash[22200]: audit 2024-04-15T21:22:49.384779+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:50.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:49 smithi187 bash[22200]: audit 2024-04-15T21:22:49.389599+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:50.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:49 smithi187 bash[22200]: audit 2024-04-15T21:22:49.394340+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:50.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:49 smithi187 bash[22200]: audit 2024-04-15T21:22:49.903019+0000 mon.b (mon.2) 6 : audit [INF] from='client.? 172.21.15.133:0/883367145' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3b4948a3-764e-477d-9d6d-5e7b757c4bbe"}]: dispatch 2024-04-15T21:22:50.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:49 smithi187 bash[22200]: audit 2024-04-15T21:22:49.904300+0000 mon.a (mon.0) 459 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3b4948a3-764e-477d-9d6d-5e7b757c4bbe"}]: dispatch 2024-04-15T21:22:50.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:49 smithi187 bash[22200]: audit 2024-04-15T21:22:49.907376+0000 mon.a (mon.0) 460 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3b4948a3-764e-477d-9d6d-5e7b757c4bbe"}]': finished 2024-04-15T21:22:50.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:49 smithi187 bash[22200]: cluster 2024-04-15T21:22:49.912358+0000 mon.a (mon.0) 461 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-04-15T21:22:50.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:49 smithi187 bash[22200]: audit 2024-04-15T21:22:49.912928+0000 mon.a (mon.0) 462 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:22:51.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:50 smithi187 bash[22200]: audit 2024-04-15T21:22:50.627865+0000 mon.b (mon.2) 7 : audit [DBG] from='client.? 172.21.15.133:0/4138105607' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:22:51.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:50 smithi133 bash[22165]: audit 2024-04-15T21:22:50.627865+0000 mon.b (mon.2) 7 : audit [DBG] from='client.? 172.21.15.133:0/4138105607' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:22:51.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:50 smithi132 bash[21536]: audit 2024-04-15T21:22:50.627865+0000 mon.b (mon.2) 7 : audit [DBG] from='client.? 172.21.15.133:0/4138105607' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:22:52.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:51 smithi133 bash[22165]: cluster 2024-04-15T21:22:50.867996+0000 mgr.a (mgr.14152) 159 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:52.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:51 smithi132 bash[21536]: cluster 2024-04-15T21:22:50.867996+0000 mgr.a (mgr.14152) 159 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:52.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:51 smithi187 bash[22200]: cluster 2024-04-15T21:22:50.867996+0000 mgr.a (mgr.14152) 159 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:54.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:54 smithi132 bash[21536]: cluster 2024-04-15T21:22:52.868389+0000 mgr.a (mgr.14152) 160 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:54.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:54 smithi132 bash[21536]: audit 2024-04-15T21:22:53.046243+0000 mon.a (mon.0) 463 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:54.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:54 smithi132 bash[21536]: audit 2024-04-15T21:22:53.055637+0000 mon.a (mon.0) 464 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:54.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:54 smithi132 bash[21536]: audit 2024-04-15T21:22:53.067263+0000 mon.a (mon.0) 465 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:54.416 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:54 smithi187 bash[22200]: cluster 2024-04-15T21:22:52.868389+0000 mgr.a (mgr.14152) 160 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:55.016 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:54 smithi187 bash[22200]: audit 2024-04-15T21:22:53.046243+0000 mon.a (mon.0) 463 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:55.016 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:54 smithi187 bash[22200]: audit 2024-04-15T21:22:53.055637+0000 mon.a (mon.0) 464 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:55.017 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:54 smithi187 bash[22200]: audit 2024-04-15T21:22:53.067263+0000 mon.a (mon.0) 465 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:55.018 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:54 smithi133 bash[22165]: cluster 2024-04-15T21:22:52.868389+0000 mgr.a (mgr.14152) 160 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:55.018 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:54 smithi133 bash[22165]: audit 2024-04-15T21:22:53.046243+0000 mon.a (mon.0) 463 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:55.018 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:54 smithi133 bash[22165]: audit 2024-04-15T21:22:53.055637+0000 mon.a (mon.0) 464 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:55.018 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:54 smithi133 bash[22165]: audit 2024-04-15T21:22:53.067263+0000 mon.a (mon.0) 465 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:22:56.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:56 smithi132 bash[21536]: cluster 2024-04-15T21:22:54.868827+0000 mgr.a (mgr.14152) 161 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:56.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:56 smithi187 bash[22200]: cluster 2024-04-15T21:22:54.868827+0000 mgr.a (mgr.14152) 161 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:56.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:56 smithi133 bash[22165]: cluster 2024-04-15T21:22:54.868827+0000 mgr.a (mgr.14152) 161 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:58.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:22:58 smithi132 bash[21536]: cluster 2024-04-15T21:22:56.869285+0000 mgr.a (mgr.14152) 162 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:58.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:22:58 smithi187 bash[22200]: cluster 2024-04-15T21:22:56.869285+0000 mgr.a (mgr.14152) 162 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:22:58.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:22:58 smithi133 bash[22165]: cluster 2024-04-15T21:22:56.869285+0000 mgr.a (mgr.14152) 162 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:00.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:00 smithi132 bash[21536]: cluster 2024-04-15T21:22:58.869765+0000 mgr.a (mgr.14152) 163 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:00.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:00 smithi187 bash[22200]: cluster 2024-04-15T21:22:58.869765+0000 mgr.a (mgr.14152) 163 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:00.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:00 smithi133 bash[22165]: cluster 2024-04-15T21:22:58.869765+0000 mgr.a (mgr.14152) 163 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:02.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:02 smithi132 bash[21536]: cluster 2024-04-15T21:23:00.870227+0000 mgr.a (mgr.14152) 164 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:02.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:02 smithi187 bash[22200]: cluster 2024-04-15T21:23:00.870227+0000 mgr.a (mgr.14152) 164 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:02.438 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:02 smithi133 bash[22165]: cluster 2024-04-15T21:23:00.870227+0000 mgr.a (mgr.14152) 164 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:03.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:03 smithi132 bash[21536]: audit 2024-04-15T21:23:02.369770+0000 mon.a (mon.0) 466 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-15T21:23:03.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:03 smithi132 bash[21536]: audit 2024-04-15T21:23:02.371805+0000 mon.a (mon.0) 467 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:03.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:03 smithi132 bash[21536]: cephadm 2024-04-15T21:23:02.373565+0000 mgr.a (mgr.14152) 165 : cephadm [INF] Deploying daemon osd.1 on smithi133 2024-04-15T21:23:03.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:03 smithi187 bash[22200]: audit 2024-04-15T21:23:02.369770+0000 mon.a (mon.0) 466 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-15T21:23:03.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:03 smithi187 bash[22200]: audit 2024-04-15T21:23:02.371805+0000 mon.a (mon.0) 467 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:03.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:03 smithi187 bash[22200]: cephadm 2024-04-15T21:23:02.373565+0000 mgr.a (mgr.14152) 165 : cephadm [INF] Deploying daemon osd.1 on smithi133 2024-04-15T21:23:03.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:03 smithi133 bash[22165]: audit 2024-04-15T21:23:02.369770+0000 mon.a (mon.0) 466 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-15T21:23:03.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:03 smithi133 bash[22165]: audit 2024-04-15T21:23:02.371805+0000 mon.a (mon.0) 467 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:03.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:03 smithi133 bash[22165]: cephadm 2024-04-15T21:23:02.373565+0000 mgr.a (mgr.14152) 165 : cephadm [INF] Deploying daemon osd.1 on smithi133 2024-04-15T21:23:04.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:04 smithi133 bash[22165]: cluster 2024-04-15T21:23:02.870675+0000 mgr.a (mgr.14152) 166 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:04.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:04 smithi133 bash[22165]: audit 2024-04-15T21:23:03.986260+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:04.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:04 smithi133 bash[22165]: audit 2024-04-15T21:23:03.994692+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:04.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:04 smithi133 bash[22165]: audit 2024-04-15T21:23:04.004753+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:04.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:04 smithi132 bash[21536]: cluster 2024-04-15T21:23:02.870675+0000 mgr.a (mgr.14152) 166 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:04.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:04 smithi132 bash[21536]: audit 2024-04-15T21:23:03.986260+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:04.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:04 smithi132 bash[21536]: audit 2024-04-15T21:23:03.994692+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:04.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:04 smithi132 bash[21536]: audit 2024-04-15T21:23:04.004753+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:04.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:04 smithi187 bash[22200]: cluster 2024-04-15T21:23:02.870675+0000 mgr.a (mgr.14152) 166 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:04.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:04 smithi187 bash[22200]: audit 2024-04-15T21:23:03.986260+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:04.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:04 smithi187 bash[22200]: audit 2024-04-15T21:23:03.994692+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:04.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:04 smithi187 bash[22200]: audit 2024-04-15T21:23:04.004753+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:06.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:06 smithi132 bash[21536]: cluster 2024-04-15T21:23:04.871116+0000 mgr.a (mgr.14152) 167 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:06.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:06 smithi187 bash[22200]: cluster 2024-04-15T21:23:04.871116+0000 mgr.a (mgr.14152) 167 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:06.442 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:06 smithi133 bash[22165]: cluster 2024-04-15T21:23:04.871116+0000 mgr.a (mgr.14152) 167 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:07.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:07 smithi133 systemd[1]: /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-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-04-15T21:23:07.747 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:23:07 smithi133 systemd[1]: /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-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-04-15T21:23:08.078 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:07 smithi133 systemd[1]: /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-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-04-15T21:23:08.078 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:23:07 smithi133 systemd[1]: /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-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-04-15T21:23:08.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:08 smithi132 bash[21536]: cluster 2024-04-15T21:23:06.871602+0000 mgr.a (mgr.14152) 168 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:08.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:08 smithi132 bash[21536]: audit 2024-04-15T21:23:07.971630+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:08.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:08 smithi132 bash[21536]: audit 2024-04-15T21:23:07.979945+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:08.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:08 smithi132 bash[21536]: audit 2024-04-15T21:23:07.990271+0000 mon.a (mon.0) 473 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:23:08.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:08 smithi132 bash[21536]: audit 2024-04-15T21:23:07.998644+0000 mon.a (mon.0) 474 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:08.128 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:08 smithi132 bash[21536]: audit 2024-04-15T21:23:08.000924+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:23:08.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:08 smithi132 bash[21536]: audit 2024-04-15T21:23:08.013879+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:08.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:08 smithi187 bash[22200]: cluster 2024-04-15T21:23:06.871602+0000 mgr.a (mgr.14152) 168 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:08.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:08 smithi187 bash[22200]: audit 2024-04-15T21:23:07.971630+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:08.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:08 smithi187 bash[22200]: audit 2024-04-15T21:23:07.979945+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:08.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:08 smithi187 bash[22200]: audit 2024-04-15T21:23:07.990271+0000 mon.a (mon.0) 473 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:23:08.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:08 smithi187 bash[22200]: audit 2024-04-15T21:23:07.998644+0000 mon.a (mon.0) 474 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:08.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:08 smithi187 bash[22200]: audit 2024-04-15T21:23:08.000924+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:23:08.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:08 smithi187 bash[22200]: audit 2024-04-15T21:23:08.013879+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:08.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:08 smithi133 bash[22165]: cluster 2024-04-15T21:23:06.871602+0000 mgr.a (mgr.14152) 168 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:08.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:08 smithi133 bash[22165]: audit 2024-04-15T21:23:07.971630+0000 mon.a (mon.0) 471 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:08.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:08 smithi133 bash[22165]: audit 2024-04-15T21:23:07.979945+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:08.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:08 smithi133 bash[22165]: audit 2024-04-15T21:23:07.990271+0000 mon.a (mon.0) 473 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:23:08.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:08 smithi133 bash[22165]: audit 2024-04-15T21:23:07.998644+0000 mon.a (mon.0) 474 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:08.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:08 smithi133 bash[22165]: audit 2024-04-15T21:23:08.000924+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:23:08.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:08 smithi133 bash[22165]: audit 2024-04-15T21:23:08.013879+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:10.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:10 smithi132 bash[21536]: cluster 2024-04-15T21:23:08.872092+0000 mgr.a (mgr.14152) 169 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:10.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:10 smithi132 bash[21536]: audit 2024-04-15T21:23:09.567714+0000 mon.a (mon.0) 477 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:10.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:10 smithi132 bash[21536]: audit 2024-04-15T21:23:09.576222+0000 mon.a (mon.0) 478 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:10.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:10 smithi132 bash[21536]: audit 2024-04-15T21:23:09.586478+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:10.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:10 smithi187 bash[22200]: cluster 2024-04-15T21:23:08.872092+0000 mgr.a (mgr.14152) 169 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:10.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:10 smithi187 bash[22200]: audit 2024-04-15T21:23:09.567714+0000 mon.a (mon.0) 477 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:10.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:10 smithi187 bash[22200]: audit 2024-04-15T21:23:09.576222+0000 mon.a (mon.0) 478 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:10.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:10 smithi187 bash[22200]: audit 2024-04-15T21:23:09.586478+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:10.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:10 smithi133 bash[22165]: cluster 2024-04-15T21:23:08.872092+0000 mgr.a (mgr.14152) 169 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:10.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:10 smithi133 bash[22165]: audit 2024-04-15T21:23:09.567714+0000 mon.a (mon.0) 477 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:10.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:10 smithi133 bash[22165]: audit 2024-04-15T21:23:09.576222+0000 mon.a (mon.0) 478 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:10.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:10 smithi133 bash[22165]: audit 2024-04-15T21:23:09.586478+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:12.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:12 smithi132 bash[21536]: cluster 2024-04-15T21:23:10.872522+0000 mgr.a (mgr.14152) 170 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:12.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:12 smithi187 bash[22200]: cluster 2024-04-15T21:23:10.872522+0000 mgr.a (mgr.14152) 170 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:12.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:12 smithi133 bash[22165]: cluster 2024-04-15T21:23:10.872522+0000 mgr.a (mgr.14152) 170 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:14.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:14 smithi132 bash[21536]: cluster 2024-04-15T21:23:12.872956+0000 mgr.a (mgr.14152) 171 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:14.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:14 smithi132 bash[21536]: audit 2024-04-15T21:23:13.264732+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:14.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:14 smithi132 bash[21536]: audit 2024-04-15T21:23:13.272749+0000 mon.a (mon.0) 481 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:14.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:14 smithi132 bash[21536]: audit 2024-04-15T21:23:13.282728+0000 mon.a (mon.0) 482 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:14.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:14 smithi187 bash[22200]: cluster 2024-04-15T21:23:12.872956+0000 mgr.a (mgr.14152) 171 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:14.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:14 smithi187 bash[22200]: audit 2024-04-15T21:23:13.264732+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:14.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:14 smithi187 bash[22200]: audit 2024-04-15T21:23:13.272749+0000 mon.a (mon.0) 481 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:14.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:14 smithi187 bash[22200]: audit 2024-04-15T21:23:13.282728+0000 mon.a (mon.0) 482 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:14.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:14 smithi133 bash[22165]: cluster 2024-04-15T21:23:12.872956+0000 mgr.a (mgr.14152) 171 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:14.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:14 smithi133 bash[22165]: audit 2024-04-15T21:23:13.264732+0000 mon.a (mon.0) 480 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:14.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:14 smithi133 bash[22165]: audit 2024-04-15T21:23:13.272749+0000 mon.a (mon.0) 481 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:14.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:14 smithi133 bash[22165]: audit 2024-04-15T21:23:13.282728+0000 mon.a (mon.0) 482 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:15.541 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:15 smithi133 bash[22165]: audit 2024-04-15T21:23:14.269001+0000 mon.b (mon.2) 8 : audit [INF] from='osd.1 [v2:172.21.15.133:6800/3183802104,v1:172.21.15.133:6801/3183802104]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-15T21:23:15.541 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:15 smithi133 bash[22165]: audit 2024-04-15T21:23:14.270429+0000 mon.a (mon.0) 483 : audit [INF] from='osd.1 ' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-15T21:23:15.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:15 smithi132 bash[21536]: audit 2024-04-15T21:23:14.269001+0000 mon.b (mon.2) 8 : audit [INF] from='osd.1 [v2:172.21.15.133:6800/3183802104,v1:172.21.15.133:6801/3183802104]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-15T21:23:15.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:15 smithi132 bash[21536]: audit 2024-04-15T21:23:14.270429+0000 mon.a (mon.0) 483 : audit [INF] from='osd.1 ' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-15T21:23:15.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:15 smithi187 bash[22200]: audit 2024-04-15T21:23:14.269001+0000 mon.b (mon.2) 8 : audit [INF] from='osd.1 [v2:172.21.15.133:6800/3183802104,v1:172.21.15.133:6801/3183802104]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-15T21:23:15.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:15 smithi187 bash[22200]: audit 2024-04-15T21:23:14.270429+0000 mon.a (mon.0) 483 : audit [INF] from='osd.1 ' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-15T21:23:16.178 INFO:teuthology.orchestra.run.smithi133.stdout:Created osd(s) 1 on host 'smithi133' 2024-04-15T21:23:16.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:16 smithi133 bash[22165]: cluster 2024-04-15T21:23:14.873417+0000 mgr.a (mgr.14152) 172 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:16.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:16 smithi133 bash[22165]: audit 2024-04-15T21:23:15.271724+0000 mon.a (mon.0) 484 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-15T21:23:16.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:16 smithi133 bash[22165]: audit 2024-04-15T21:23:15.273301+0000 mon.b (mon.2) 9 : audit [INF] from='osd.1 [v2:172.21.15.133:6800/3183802104,v1:172.21.15.133:6801/3183802104]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi133", "root=default"]}]: dispatch 2024-04-15T21:23:16.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:16 smithi133 bash[22165]: cluster 2024-04-15T21:23:15.276413+0000 mon.a (mon.0) 485 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-04-15T21:23:16.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:16 smithi133 bash[22165]: audit 2024-04-15T21:23:15.277243+0000 mon.a (mon.0) 486 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:23:16.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:16 smithi133 bash[22165]: audit 2024-04-15T21:23:15.277797+0000 mon.a (mon.0) 487 : audit [INF] from='osd.1 ' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi133", "root=default"]}]: dispatch 2024-04-15T21:23:16.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:16 smithi133 bash[22165]: audit 2024-04-15T21:23:16.119994+0000 mon.a (mon.0) 488 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:16.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:16 smithi133 bash[22165]: audit 2024-04-15T21:23:16.128649+0000 mon.a (mon.0) 489 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:16.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:16 smithi133 bash[22165]: audit 2024-04-15T21:23:16.143251+0000 mon.a (mon.0) 490 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:23:16.498 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:16 smithi133 bash[22165]: audit 2024-04-15T21:23:16.148719+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:23:16.498 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:16 smithi133 bash[22165]: audit 2024-04-15T21:23:16.156174+0000 mon.a (mon.0) 492 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:16.498 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:16 smithi133 bash[22165]: audit 2024-04-15T21:23:16.160364+0000 mon.a (mon.0) 493 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:16.498 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:16 smithi133 bash[22165]: audit 2024-04-15T21:23:16.162137+0000 mon.a (mon.0) 494 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:23:16.498 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:16 smithi133 bash[22165]: audit 2024-04-15T21:23:16.171741+0000 mon.a (mon.0) 495 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:16.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:16 smithi132 bash[21536]: cluster 2024-04-15T21:23:14.873417+0000 mgr.a (mgr.14152) 172 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:16.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:16 smithi132 bash[21536]: audit 2024-04-15T21:23:15.271724+0000 mon.a (mon.0) 484 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-15T21:23:16.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:16 smithi132 bash[21536]: audit 2024-04-15T21:23:15.273301+0000 mon.b (mon.2) 9 : audit [INF] from='osd.1 [v2:172.21.15.133:6800/3183802104,v1:172.21.15.133:6801/3183802104]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi133", "root=default"]}]: dispatch 2024-04-15T21:23:16.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:16 smithi132 bash[21536]: cluster 2024-04-15T21:23:15.276413+0000 mon.a (mon.0) 485 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-04-15T21:23:16.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:16 smithi132 bash[21536]: audit 2024-04-15T21:23:15.277243+0000 mon.a (mon.0) 486 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:23:16.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:16 smithi132 bash[21536]: audit 2024-04-15T21:23:15.277797+0000 mon.a (mon.0) 487 : audit [INF] from='osd.1 ' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi133", "root=default"]}]: dispatch 2024-04-15T21:23:16.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:16 smithi132 bash[21536]: audit 2024-04-15T21:23:16.119994+0000 mon.a (mon.0) 488 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:16.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:16 smithi132 bash[21536]: audit 2024-04-15T21:23:16.128649+0000 mon.a (mon.0) 489 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:16.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:16 smithi132 bash[21536]: audit 2024-04-15T21:23:16.143251+0000 mon.a (mon.0) 490 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:23:16.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:16 smithi132 bash[21536]: audit 2024-04-15T21:23:16.148719+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:23:16.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:16 smithi132 bash[21536]: audit 2024-04-15T21:23:16.156174+0000 mon.a (mon.0) 492 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:16.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:16 smithi132 bash[21536]: audit 2024-04-15T21:23:16.160364+0000 mon.a (mon.0) 493 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:16.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:16 smithi132 bash[21536]: audit 2024-04-15T21:23:16.162137+0000 mon.a (mon.0) 494 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:23:16.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:16 smithi132 bash[21536]: audit 2024-04-15T21:23:16.171741+0000 mon.a (mon.0) 495 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:16.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:16 smithi187 bash[22200]: cluster 2024-04-15T21:23:14.873417+0000 mgr.a (mgr.14152) 172 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:16.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:16 smithi187 bash[22200]: audit 2024-04-15T21:23:15.271724+0000 mon.a (mon.0) 484 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-15T21:23:16.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:16 smithi187 bash[22200]: audit 2024-04-15T21:23:15.273301+0000 mon.b (mon.2) 9 : audit [INF] from='osd.1 [v2:172.21.15.133:6800/3183802104,v1:172.21.15.133:6801/3183802104]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi133", "root=default"]}]: dispatch 2024-04-15T21:23:16.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:16 smithi187 bash[22200]: cluster 2024-04-15T21:23:15.276413+0000 mon.a (mon.0) 485 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-04-15T21:23:16.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:16 smithi187 bash[22200]: audit 2024-04-15T21:23:15.277243+0000 mon.a (mon.0) 486 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:23:16.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:16 smithi187 bash[22200]: audit 2024-04-15T21:23:15.277797+0000 mon.a (mon.0) 487 : audit [INF] from='osd.1 ' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi133", "root=default"]}]: dispatch 2024-04-15T21:23:16.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:16 smithi187 bash[22200]: audit 2024-04-15T21:23:16.119994+0000 mon.a (mon.0) 488 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:16.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:16 smithi187 bash[22200]: audit 2024-04-15T21:23:16.128649+0000 mon.a (mon.0) 489 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:16.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:16 smithi187 bash[22200]: audit 2024-04-15T21:23:16.143251+0000 mon.a (mon.0) 490 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:23:16.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:16 smithi187 bash[22200]: audit 2024-04-15T21:23:16.148719+0000 mon.a (mon.0) 491 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:23:16.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:16 smithi187 bash[22200]: audit 2024-04-15T21:23:16.156174+0000 mon.a (mon.0) 492 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:16.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:16 smithi187 bash[22200]: audit 2024-04-15T21:23:16.160364+0000 mon.a (mon.0) 493 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:16.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:16 smithi187 bash[22200]: audit 2024-04-15T21:23:16.162137+0000 mon.a (mon.0) 494 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:23:16.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:16 smithi187 bash[22200]: audit 2024-04-15T21:23:16.171741+0000 mon.a (mon.0) 495 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:16.854 DEBUG:teuthology.orchestra.run.smithi133:osd.1> sudo journalctl -f -n 0 -u ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@osd.1.service 2024-04-15T21:23:16.856 INFO:tasks.cephadm:Deploying osd.2 on smithi187 with /dev/vg_nvme/lv_4... 2024-04-15T21:23:16.857 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-04-15T21:23:17.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:17 smithi132 bash[21536]: cluster 2024-04-15T21:23:15.218812+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-15T21:23:17.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:17 smithi132 bash[21536]: cluster 2024-04-15T21:23:15.218966+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-15T21:23:17.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:17 smithi132 bash[21536]: cephadm 2024-04-15T21:23:16.150120+0000 mgr.a (mgr.14152) 173 : cephadm [INF] Adjusting osd_memory_target on smithi133 to 16241M 2024-04-15T21:23:17.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:17 smithi132 bash[21536]: audit 2024-04-15T21:23:16.274135+0000 mon.a (mon.0) 496 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi133", "root=default"]}]': finished 2024-04-15T21:23:17.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:17 smithi132 bash[21536]: cluster 2024-04-15T21:23:16.279199+0000 mon.a (mon.0) 497 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-04-15T21:23:17.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:17 smithi132 bash[21536]: audit 2024-04-15T21:23:16.280067+0000 mon.a (mon.0) 498 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:23:17.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:17 smithi132 bash[21536]: audit 2024-04-15T21:23:16.289747+0000 mon.a (mon.0) 499 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:23:17.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:17 smithi187 bash[22200]: cluster 2024-04-15T21:23:15.218812+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-15T21:23:17.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:17 smithi187 bash[22200]: cluster 2024-04-15T21:23:15.218966+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-15T21:23:17.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:17 smithi187 bash[22200]: cephadm 2024-04-15T21:23:16.150120+0000 mgr.a (mgr.14152) 173 : cephadm [INF] Adjusting osd_memory_target on smithi133 to 16241M 2024-04-15T21:23:17.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:17 smithi187 bash[22200]: audit 2024-04-15T21:23:16.274135+0000 mon.a (mon.0) 496 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi133", "root=default"]}]': finished 2024-04-15T21:23:17.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:17 smithi187 bash[22200]: cluster 2024-04-15T21:23:16.279199+0000 mon.a (mon.0) 497 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-04-15T21:23:17.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:17 smithi187 bash[22200]: audit 2024-04-15T21:23:16.280067+0000 mon.a (mon.0) 498 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:23:17.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:17 smithi187 bash[22200]: audit 2024-04-15T21:23:16.289747+0000 mon.a (mon.0) 499 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:23:17.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:17 smithi133 bash[22165]: cluster 2024-04-15T21:23:15.218812+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-15T21:23:17.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:17 smithi133 bash[22165]: cluster 2024-04-15T21:23:15.218966+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-15T21:23:17.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:17 smithi133 bash[22165]: cephadm 2024-04-15T21:23:16.150120+0000 mgr.a (mgr.14152) 173 : cephadm [INF] Adjusting osd_memory_target on smithi133 to 16241M 2024-04-15T21:23:17.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:17 smithi133 bash[22165]: audit 2024-04-15T21:23:16.274135+0000 mon.a (mon.0) 496 : audit [INF] from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi133", "root=default"]}]': finished 2024-04-15T21:23:17.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:17 smithi133 bash[22165]: cluster 2024-04-15T21:23:16.279199+0000 mon.a (mon.0) 497 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-04-15T21:23:17.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:17 smithi133 bash[22165]: audit 2024-04-15T21:23:16.280067+0000 mon.a (mon.0) 498 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:23:17.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:17 smithi133 bash[22165]: audit 2024-04-15T21:23:16.289747+0000 mon.a (mon.0) 499 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:23:18.611 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:18 smithi132 bash[21536]: cluster 2024-04-15T21:23:16.873888+0000 mgr.a (mgr.14152) 174 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:18.611 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:18 smithi132 bash[21536]: audit 2024-04-15T21:23:17.289671+0000 mon.a (mon.0) 500 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:23:18.612 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:18 smithi132 bash[21536]: cluster 2024-04-15T21:23:17.298375+0000 mon.a (mon.0) 501 : cluster [INF] osd.1 [v2:172.21.15.133:6800/3183802104,v1:172.21.15.133:6801/3183802104] boot 2024-04-15T21:23:18.612 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:18 smithi132 bash[21536]: cluster 2024-04-15T21:23:17.298446+0000 mon.a (mon.0) 502 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-04-15T21:23:18.612 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:18 smithi132 bash[21536]: audit 2024-04-15T21:23:17.299374+0000 mon.a (mon.0) 503 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:23:18.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:18 smithi187 bash[22200]: cluster 2024-04-15T21:23:16.873888+0000 mgr.a (mgr.14152) 174 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:18.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:18 smithi187 bash[22200]: audit 2024-04-15T21:23:17.289671+0000 mon.a (mon.0) 500 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:23:18.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:18 smithi187 bash[22200]: cluster 2024-04-15T21:23:17.298375+0000 mon.a (mon.0) 501 : cluster [INF] osd.1 [v2:172.21.15.133:6800/3183802104,v1:172.21.15.133:6801/3183802104] boot 2024-04-15T21:23:18.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:18 smithi187 bash[22200]: cluster 2024-04-15T21:23:17.298446+0000 mon.a (mon.0) 502 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-04-15T21:23:18.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:18 smithi187 bash[22200]: audit 2024-04-15T21:23:17.299374+0000 mon.a (mon.0) 503 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:23:18.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:18 smithi133 bash[22165]: cluster 2024-04-15T21:23:16.873888+0000 mgr.a (mgr.14152) 174 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:23:18.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:18 smithi133 bash[22165]: audit 2024-04-15T21:23:17.289671+0000 mon.a (mon.0) 500 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:23:18.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:18 smithi133 bash[22165]: cluster 2024-04-15T21:23:17.298375+0000 mon.a (mon.0) 501 : cluster [INF] osd.1 [v2:172.21.15.133:6800/3183802104,v1:172.21.15.133:6801/3183802104] boot 2024-04-15T21:23:18.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:18 smithi133 bash[22165]: cluster 2024-04-15T21:23:17.298446+0000 mon.a (mon.0) 502 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-04-15T21:23:18.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:18 smithi133 bash[22165]: audit 2024-04-15T21:23:17.299374+0000 mon.a (mon.0) 503 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:23:19.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:19 smithi132 bash[21536]: cluster 2024-04-15T21:23:18.309269+0000 mon.a (mon.0) 504 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-04-15T21:23:19.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:19 smithi187 bash[22200]: cluster 2024-04-15T21:23:18.309269+0000 mon.a (mon.0) 504 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-04-15T21:23:19.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:19 smithi133 bash[22165]: cluster 2024-04-15T21:23:18.309269+0000 mon.a (mon.0) 504 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-04-15T21:23:20.556 INFO:teuthology.orchestra.run.smithi187.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.c/config 2024-04-15T21:23:20.577 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:20 smithi187 bash[22200]: cluster 2024-04-15T21:23:18.874374+0000 mgr.a (mgr.14152) 175 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:20.630 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:20 smithi132 bash[21536]: cluster 2024-04-15T21:23:18.874374+0000 mgr.a (mgr.14152) 175 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:20.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:20 smithi133 bash[22165]: cluster 2024-04-15T21:23:18.874374+0000 mgr.a (mgr.14152) 175 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:22.623 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:22 smithi133 bash[22165]: cluster 2024-04-15T21:23:20.874725+0000 mgr.a (mgr.14152) 176 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:22.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:22 smithi132 bash[21536]: cluster 2024-04-15T21:23:20.874725+0000 mgr.a (mgr.14152) 176 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:22.632 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:22 smithi187 bash[22200]: cluster 2024-04-15T21:23:20.874725+0000 mgr.a (mgr.14152) 176 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:23.273 INFO:teuthology.orchestra.run.smithi187.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-04-15T21:23:23.273 INFO:teuthology.orchestra.run.smithi187.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-04-15T21:23:23.273 INFO:teuthology.orchestra.run.smithi187.stderr: stderr: 10+0 records in 2024-04-15T21:23:23.273 INFO:teuthology.orchestra.run.smithi187.stderr:10+0 records out 2024-04-15T21:23:23.273 INFO:teuthology.orchestra.run.smithi187.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0130688 s, 802 MB/s 2024-04-15T21:23:23.273 INFO:teuthology.orchestra.run.smithi187.stderr:--> Zapping successful for: 2024-04-15T21:23:23.911 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph orch daemon add osd smithi187:vg_nvme/lv_4 2024-04-15T21:23:24.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:24 smithi133 bash[22165]: cluster 2024-04-15T21:23:22.875152+0000 mgr.a (mgr.14152) 177 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:24.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:24 smithi133 bash[22165]: audit 2024-04-15T21:23:24.202282+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:24 smithi133 bash[22165]: audit 2024-04-15T21:23:24.210687+0000 mon.a (mon.0) 506 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:24 smithi133 bash[22165]: audit 2024-04-15T21:23:24.216285+0000 mon.a (mon.0) 507 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:23:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:24 smithi133 bash[22165]: audit 2024-04-15T21:23:24.222170+0000 mon.a (mon.0) 508 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:24 smithi133 bash[22165]: audit 2024-04-15T21:23:24.222965+0000 mon.a (mon.0) 509 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:24 smithi133 bash[22165]: audit 2024-04-15T21:23:24.225082+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:23:24.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:24 smithi133 bash[22165]: audit 2024-04-15T21:23:24.234948+0000 mon.a (mon.0) 511 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:24.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:24 smithi132 bash[21536]: cluster 2024-04-15T21:23:22.875152+0000 mgr.a (mgr.14152) 177 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:24.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:24 smithi132 bash[21536]: audit 2024-04-15T21:23:24.202282+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:24.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:24 smithi132 bash[21536]: audit 2024-04-15T21:23:24.210687+0000 mon.a (mon.0) 506 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:24.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:24 smithi132 bash[21536]: audit 2024-04-15T21:23:24.216285+0000 mon.a (mon.0) 507 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:23:24.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:24 smithi132 bash[21536]: audit 2024-04-15T21:23:24.222170+0000 mon.a (mon.0) 508 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:24.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:24 smithi132 bash[21536]: audit 2024-04-15T21:23:24.222965+0000 mon.a (mon.0) 509 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:24.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:24 smithi132 bash[21536]: audit 2024-04-15T21:23:24.225082+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:23:24.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:24 smithi132 bash[21536]: audit 2024-04-15T21:23:24.234948+0000 mon.a (mon.0) 511 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:24.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:24 smithi187 bash[22200]: cluster 2024-04-15T21:23:22.875152+0000 mgr.a (mgr.14152) 177 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:24.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:24 smithi187 bash[22200]: audit 2024-04-15T21:23:24.202282+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:24.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:24 smithi187 bash[22200]: audit 2024-04-15T21:23:24.210687+0000 mon.a (mon.0) 506 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:24.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:24 smithi187 bash[22200]: audit 2024-04-15T21:23:24.216285+0000 mon.a (mon.0) 507 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:23:24.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:24 smithi187 bash[22200]: audit 2024-04-15T21:23:24.222170+0000 mon.a (mon.0) 508 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:24.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:24 smithi187 bash[22200]: audit 2024-04-15T21:23:24.222965+0000 mon.a (mon.0) 509 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:24.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:24 smithi187 bash[22200]: audit 2024-04-15T21:23:24.225082+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:23:24.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:24 smithi187 bash[22200]: audit 2024-04-15T21:23:24.234948+0000 mon.a (mon.0) 511 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:25.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:25 smithi132 bash[21536]: cephadm 2024-04-15T21:23:24.213853+0000 mgr.a (mgr.14152) 178 : cephadm [INF] Detected new or changed devices on smithi133 2024-04-15T21:23:25.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:25 smithi132 bash[21536]: cluster 2024-04-15T21:23:24.228780+0000 mgr.a (mgr.14152) 179 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:25.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:25 smithi132 bash[21536]: audit 2024-04-15T21:23:24.809786+0000 mon.a (mon.0) 512 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:25.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:25 smithi132 bash[21536]: audit 2024-04-15T21:23:24.819067+0000 mon.a (mon.0) 513 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:25.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:25 smithi132 bash[21536]: audit 2024-04-15T21:23:24.829508+0000 mon.a (mon.0) 514 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:25.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:25 smithi132 bash[21536]: audit 2024-04-15T21:23:24.857812+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:23:25.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:25 smithi132 bash[21536]: audit 2024-04-15T21:23:24.863335+0000 mon.a (mon.0) 516 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:25.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:25 smithi132 bash[21536]: audit 2024-04-15T21:23:24.865179+0000 mon.a (mon.0) 517 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:23:25.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:25 smithi132 bash[21536]: audit 2024-04-15T21:23:24.875263+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:25.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:25 smithi187 bash[22200]: cephadm 2024-04-15T21:23:24.213853+0000 mgr.a (mgr.14152) 178 : cephadm [INF] Detected new or changed devices on smithi133 2024-04-15T21:23:25.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:25 smithi187 bash[22200]: cluster 2024-04-15T21:23:24.228780+0000 mgr.a (mgr.14152) 179 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:25.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:25 smithi187 bash[22200]: audit 2024-04-15T21:23:24.809786+0000 mon.a (mon.0) 512 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:25.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:25 smithi187 bash[22200]: audit 2024-04-15T21:23:24.819067+0000 mon.a (mon.0) 513 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:25.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:25 smithi187 bash[22200]: audit 2024-04-15T21:23:24.829508+0000 mon.a (mon.0) 514 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:25.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:25 smithi187 bash[22200]: audit 2024-04-15T21:23:24.857812+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:23:25.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:25 smithi187 bash[22200]: audit 2024-04-15T21:23:24.863335+0000 mon.a (mon.0) 516 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:25.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:25 smithi187 bash[22200]: audit 2024-04-15T21:23:24.865179+0000 mon.a (mon.0) 517 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:23:25.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:25 smithi187 bash[22200]: audit 2024-04-15T21:23:24.875263+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:25.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:25 smithi133 bash[22165]: cephadm 2024-04-15T21:23:24.213853+0000 mgr.a (mgr.14152) 178 : cephadm [INF] Detected new or changed devices on smithi133 2024-04-15T21:23:25.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:25 smithi133 bash[22165]: cluster 2024-04-15T21:23:24.228780+0000 mgr.a (mgr.14152) 179 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:25.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:25 smithi133 bash[22165]: audit 2024-04-15T21:23:24.809786+0000 mon.a (mon.0) 512 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:25.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:25 smithi133 bash[22165]: audit 2024-04-15T21:23:24.819067+0000 mon.a (mon.0) 513 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:25.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:25 smithi133 bash[22165]: audit 2024-04-15T21:23:24.829508+0000 mon.a (mon.0) 514 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:25.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:25 smithi133 bash[22165]: audit 2024-04-15T21:23:24.857812+0000 mon.a (mon.0) 515 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:23:25.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:25 smithi133 bash[22165]: audit 2024-04-15T21:23:24.863335+0000 mon.a (mon.0) 516 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:25.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:25 smithi133 bash[22165]: audit 2024-04-15T21:23:24.865179+0000 mon.a (mon.0) 517 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:23:25.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:25 smithi133 bash[22165]: audit 2024-04-15T21:23:24.875263+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:26.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:26 smithi132 bash[21536]: cluster 2024-04-15T21:23:24.868783+0000 mgr.a (mgr.14152) 180 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:26.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:26 smithi187 bash[22200]: cluster 2024-04-15T21:23:24.868783+0000 mgr.a (mgr.14152) 180 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:26.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:26 smithi133 bash[22165]: cluster 2024-04-15T21:23:24.868783+0000 mgr.a (mgr.14152) 180 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:27.612 INFO:teuthology.orchestra.run.smithi187.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.c/config 2024-04-15T21:23:28.399 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:28 smithi187 bash[22200]: cluster 2024-04-15T21:23:26.869233+0000 mgr.a (mgr.14152) 181 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:28.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:28 smithi132 bash[21536]: cluster 2024-04-15T21:23:26.869233+0000 mgr.a (mgr.14152) 181 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:28.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:28 smithi133 bash[22165]: cluster 2024-04-15T21:23:26.869233+0000 mgr.a (mgr.14152) 181 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:30.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:30 smithi132 bash[21536]: cluster 2024-04-15T21:23:28.869743+0000 mgr.a (mgr.14152) 182 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:30.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:30 smithi132 bash[21536]: audit 2024-04-15T21:23:29.770462+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:30.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:30 smithi132 bash[21536]: audit 2024-04-15T21:23:29.778235+0000 mon.a (mon.0) 520 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:30.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:30 smithi132 bash[21536]: audit 2024-04-15T21:23:29.788282+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:30.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:30 smithi187 bash[22200]: cluster 2024-04-15T21:23:28.869743+0000 mgr.a (mgr.14152) 182 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:30.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:30 smithi187 bash[22200]: audit 2024-04-15T21:23:29.770462+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:30.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:30 smithi187 bash[22200]: audit 2024-04-15T21:23:29.778235+0000 mon.a (mon.0) 520 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:30.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:30 smithi187 bash[22200]: audit 2024-04-15T21:23:29.788282+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:30.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:30 smithi133 bash[22165]: cluster 2024-04-15T21:23:28.869743+0000 mgr.a (mgr.14152) 182 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:30.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:30 smithi133 bash[22165]: audit 2024-04-15T21:23:29.770462+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:30.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:30 smithi133 bash[22165]: audit 2024-04-15T21:23:29.778235+0000 mon.a (mon.0) 520 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:30.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:30 smithi133 bash[22165]: audit 2024-04-15T21:23:29.788282+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:31.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:31 smithi132 bash[21536]: audit 2024-04-15T21:23:30.756282+0000 mon.a (mon.0) 522 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:23:31.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:31 smithi132 bash[21536]: audit 2024-04-15T21:23:30.762784+0000 mon.a (mon.0) 523 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:23:31.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:31 smithi132 bash[21536]: audit 2024-04-15T21:23:30.764636+0000 mon.a (mon.0) 524 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:31.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:31 smithi187 bash[22200]: audit 2024-04-15T21:23:30.756282+0000 mon.a (mon.0) 522 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:23:31.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:31 smithi187 bash[22200]: audit 2024-04-15T21:23:30.762784+0000 mon.a (mon.0) 523 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:23:31.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:31 smithi187 bash[22200]: audit 2024-04-15T21:23:30.764636+0000 mon.a (mon.0) 524 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:31.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:31 smithi133 bash[22165]: audit 2024-04-15T21:23:30.756282+0000 mon.a (mon.0) 522 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:23:31.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:31 smithi133 bash[22165]: audit 2024-04-15T21:23:30.762784+0000 mon.a (mon.0) 523 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:23:31.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:31 smithi133 bash[22165]: audit 2024-04-15T21:23:30.764636+0000 mon.a (mon.0) 524 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:32.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:32 smithi132 bash[21536]: audit 2024-04-15T21:23:30.748695+0000 mgr.a (mgr.14152) 183 : audit [DBG] from='client.24139 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi187:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:23:32.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:32 smithi132 bash[21536]: cluster 2024-04-15T21:23:30.870198+0000 mgr.a (mgr.14152) 184 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:32.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:32 smithi187 bash[22200]: audit 2024-04-15T21:23:30.748695+0000 mgr.a (mgr.14152) 183 : audit [DBG] from='client.24139 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi187:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:23:32.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:32 smithi187 bash[22200]: cluster 2024-04-15T21:23:30.870198+0000 mgr.a (mgr.14152) 184 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:32.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:32 smithi133 bash[22165]: audit 2024-04-15T21:23:30.748695+0000 mgr.a (mgr.14152) 183 : audit [DBG] from='client.24139 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi187:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:23:32.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:32 smithi133 bash[22165]: cluster 2024-04-15T21:23:30.870198+0000 mgr.a (mgr.14152) 184 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:34.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:34 smithi132 bash[21536]: cluster 2024-04-15T21:23:32.870663+0000 mgr.a (mgr.14152) 185 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:34.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:34 smithi132 bash[21536]: audit 2024-04-15T21:23:33.473362+0000 mon.a (mon.0) 525 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:34.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:34 smithi132 bash[21536]: audit 2024-04-15T21:23:33.481345+0000 mon.a (mon.0) 526 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:34.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:34 smithi132 bash[21536]: audit 2024-04-15T21:23:33.491660+0000 mon.a (mon.0) 527 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:34.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:34 smithi187 bash[22200]: cluster 2024-04-15T21:23:32.870663+0000 mgr.a (mgr.14152) 185 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:34.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:34 smithi187 bash[22200]: audit 2024-04-15T21:23:33.473362+0000 mon.a (mon.0) 525 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:34.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:34 smithi187 bash[22200]: audit 2024-04-15T21:23:33.481345+0000 mon.a (mon.0) 526 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:34.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:34 smithi187 bash[22200]: audit 2024-04-15T21:23:33.491660+0000 mon.a (mon.0) 527 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:34.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:34 smithi133 bash[22165]: cluster 2024-04-15T21:23:32.870663+0000 mgr.a (mgr.14152) 185 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:34.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:34 smithi133 bash[22165]: audit 2024-04-15T21:23:33.473362+0000 mon.a (mon.0) 525 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:34.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:34 smithi133 bash[22165]: audit 2024-04-15T21:23:33.481345+0000 mon.a (mon.0) 526 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:34.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:34 smithi133 bash[22165]: audit 2024-04-15T21:23:33.491660+0000 mon.a (mon.0) 527 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:36.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:36 smithi132 bash[21536]: cluster 2024-04-15T21:23:34.871133+0000 mgr.a (mgr.14152) 186 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:36.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:36 smithi187 bash[22200]: cluster 2024-04-15T21:23:34.871133+0000 mgr.a (mgr.14152) 186 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:36.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:36 smithi133 bash[22165]: cluster 2024-04-15T21:23:34.871133+0000 mgr.a (mgr.14152) 186 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:38.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:38 smithi132 bash[21536]: cluster 2024-04-15T21:23:36.871621+0000 mgr.a (mgr.14152) 187 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:38.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:38 smithi132 bash[21536]: audit 2024-04-15T21:23:38.286591+0000 mon.a (mon.0) 528 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b35bd764-3dd8-4e5b-87e7-3e713731b835"}]: dispatch 2024-04-15T21:23:38.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:38 smithi132 bash[21536]: audit 2024-04-15T21:23:38.286627+0000 mon.c (mon.1) 3 : audit [INF] from='client.? 172.21.15.187:0/967610315' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b35bd764-3dd8-4e5b-87e7-3e713731b835"}]: dispatch 2024-04-15T21:23:38.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:38 smithi132 bash[21536]: audit 2024-04-15T21:23:38.289788+0000 mon.a (mon.0) 529 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b35bd764-3dd8-4e5b-87e7-3e713731b835"}]': finished 2024-04-15T21:23:38.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:38 smithi132 bash[21536]: cluster 2024-04-15T21:23:38.295028+0000 mon.a (mon.0) 530 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-04-15T21:23:38.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:38 smithi132 bash[21536]: audit 2024-04-15T21:23:38.295461+0000 mon.a (mon.0) 531 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:23:38.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:38 smithi187 bash[22200]: cluster 2024-04-15T21:23:36.871621+0000 mgr.a (mgr.14152) 187 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:38.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:38 smithi187 bash[22200]: audit 2024-04-15T21:23:38.286591+0000 mon.a (mon.0) 528 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b35bd764-3dd8-4e5b-87e7-3e713731b835"}]: dispatch 2024-04-15T21:23:38.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:38 smithi187 bash[22200]: audit 2024-04-15T21:23:38.286627+0000 mon.c (mon.1) 3 : audit [INF] from='client.? 172.21.15.187:0/967610315' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b35bd764-3dd8-4e5b-87e7-3e713731b835"}]: dispatch 2024-04-15T21:23:38.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:38 smithi187 bash[22200]: audit 2024-04-15T21:23:38.289788+0000 mon.a (mon.0) 529 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b35bd764-3dd8-4e5b-87e7-3e713731b835"}]': finished 2024-04-15T21:23:38.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:38 smithi187 bash[22200]: cluster 2024-04-15T21:23:38.295028+0000 mon.a (mon.0) 530 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-04-15T21:23:38.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:38 smithi187 bash[22200]: audit 2024-04-15T21:23:38.295461+0000 mon.a (mon.0) 531 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:23:38.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:38 smithi133 bash[22165]: cluster 2024-04-15T21:23:36.871621+0000 mgr.a (mgr.14152) 187 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:38.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:38 smithi133 bash[22165]: audit 2024-04-15T21:23:38.286591+0000 mon.a (mon.0) 528 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b35bd764-3dd8-4e5b-87e7-3e713731b835"}]: dispatch 2024-04-15T21:23:38.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:38 smithi133 bash[22165]: audit 2024-04-15T21:23:38.286627+0000 mon.c (mon.1) 3 : audit [INF] from='client.? 172.21.15.187:0/967610315' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b35bd764-3dd8-4e5b-87e7-3e713731b835"}]: dispatch 2024-04-15T21:23:38.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:38 smithi133 bash[22165]: audit 2024-04-15T21:23:38.289788+0000 mon.a (mon.0) 529 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b35bd764-3dd8-4e5b-87e7-3e713731b835"}]': finished 2024-04-15T21:23:38.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:38 smithi133 bash[22165]: cluster 2024-04-15T21:23:38.295028+0000 mon.a (mon.0) 530 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-04-15T21:23:38.747 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:38 smithi133 bash[22165]: audit 2024-04-15T21:23:38.295461+0000 mon.a (mon.0) 531 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:23:39.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:39 smithi132 bash[21536]: audit 2024-04-15T21:23:39.052071+0000 mon.c (mon.1) 4 : audit [DBG] from='client.? 172.21.15.187:0/1230813788' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:23:39.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:39 smithi187 bash[22200]: audit 2024-04-15T21:23:39.052071+0000 mon.c (mon.1) 4 : audit [DBG] from='client.? 172.21.15.187:0/1230813788' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:23:39.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:39 smithi133 bash[22165]: audit 2024-04-15T21:23:39.052071+0000 mon.c (mon.1) 4 : audit [DBG] from='client.? 172.21.15.187:0/1230813788' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:23:40.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:40 smithi132 bash[21536]: cluster 2024-04-15T21:23:38.872094+0000 mgr.a (mgr.14152) 188 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:40.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:40 smithi187 bash[22200]: cluster 2024-04-15T21:23:38.872094+0000 mgr.a (mgr.14152) 188 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:40.684 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:40 smithi133 bash[22165]: cluster 2024-04-15T21:23:38.872094+0000 mgr.a (mgr.14152) 188 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:42.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:42 smithi132 bash[21536]: cluster 2024-04-15T21:23:40.872604+0000 mgr.a (mgr.14152) 189 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:42.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:42 smithi187 bash[22200]: cluster 2024-04-15T21:23:40.872604+0000 mgr.a (mgr.14152) 189 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:42.699 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:42 smithi133 bash[22165]: cluster 2024-04-15T21:23:40.872604+0000 mgr.a (mgr.14152) 189 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:44.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:44 smithi132 bash[21536]: cluster 2024-04-15T21:23:42.873081+0000 mgr.a (mgr.14152) 190 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:44.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:44 smithi187 bash[22200]: cluster 2024-04-15T21:23:42.873081+0000 mgr.a (mgr.14152) 190 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:44.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:44 smithi133 bash[22165]: cluster 2024-04-15T21:23:42.873081+0000 mgr.a (mgr.14152) 190 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:46.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:45 smithi133 bash[22165]: cluster 2024-04-15T21:23:44.873596+0000 mgr.a (mgr.14152) 191 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:46.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:45 smithi133 bash[22165]: audit 2024-04-15T21:23:44.979614+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:46.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:45 smithi133 bash[22165]: audit 2024-04-15T21:23:44.988368+0000 mon.a (mon.0) 533 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:46.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:45 smithi133 bash[22165]: audit 2024-04-15T21:23:45.000312+0000 mon.a (mon.0) 534 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:46.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:45 smithi133 bash[22165]: audit 2024-04-15T21:23:45.195806+0000 mon.a (mon.0) 535 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:46.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:45 smithi133 bash[22165]: audit 2024-04-15T21:23:45.206256+0000 mon.a (mon.0) 536 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:46.247 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:45 smithi133 bash[22165]: audit 2024-04-15T21:23:45.218164+0000 mon.a (mon.0) 537 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:46.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:45 smithi132 bash[21536]: cluster 2024-04-15T21:23:44.873596+0000 mgr.a (mgr.14152) 191 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:46.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:45 smithi132 bash[21536]: audit 2024-04-15T21:23:44.979614+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:46.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:45 smithi132 bash[21536]: audit 2024-04-15T21:23:44.988368+0000 mon.a (mon.0) 533 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:46.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:45 smithi132 bash[21536]: audit 2024-04-15T21:23:45.000312+0000 mon.a (mon.0) 534 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:46.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:45 smithi132 bash[21536]: audit 2024-04-15T21:23:45.195806+0000 mon.a (mon.0) 535 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:46.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:45 smithi132 bash[21536]: audit 2024-04-15T21:23:45.206256+0000 mon.a (mon.0) 536 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:46.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:45 smithi132 bash[21536]: audit 2024-04-15T21:23:45.218164+0000 mon.a (mon.0) 537 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:46.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:45 smithi187 bash[22200]: cluster 2024-04-15T21:23:44.873596+0000 mgr.a (mgr.14152) 191 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:46.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:45 smithi187 bash[22200]: audit 2024-04-15T21:23:44.979614+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:46.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:45 smithi187 bash[22200]: audit 2024-04-15T21:23:44.988368+0000 mon.a (mon.0) 533 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:46.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:45 smithi187 bash[22200]: audit 2024-04-15T21:23:45.000312+0000 mon.a (mon.0) 534 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:46.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:45 smithi187 bash[22200]: audit 2024-04-15T21:23:45.195806+0000 mon.a (mon.0) 535 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:46.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:45 smithi187 bash[22200]: audit 2024-04-15T21:23:45.206256+0000 mon.a (mon.0) 536 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:46.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:45 smithi187 bash[22200]: audit 2024-04-15T21:23:45.218164+0000 mon.a (mon.0) 537 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:48.226 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:47 smithi187 bash[22200]: cluster 2024-04-15T21:23:46.874010+0000 mgr.a (mgr.14152) 192 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:48.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:47 smithi133 bash[22165]: cluster 2024-04-15T21:23:46.874010+0000 mgr.a (mgr.14152) 192 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:48.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:47 smithi132 bash[21536]: cluster 2024-04-15T21:23:46.874010+0000 mgr.a (mgr.14152) 192 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:50.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:49 smithi133 bash[22165]: cluster 2024-04-15T21:23:48.874480+0000 mgr.a (mgr.14152) 193 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:50.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:49 smithi132 bash[21536]: cluster 2024-04-15T21:23:48.874480+0000 mgr.a (mgr.14152) 193 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:50.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:49 smithi187 bash[22200]: cluster 2024-04-15T21:23:48.874480+0000 mgr.a (mgr.14152) 193 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:51.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:50 smithi133 bash[22165]: audit 2024-04-15T21:23:49.987232+0000 mon.a (mon.0) 538 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:51.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:50 smithi133 bash[22165]: audit 2024-04-15T21:23:49.998198+0000 mon.a (mon.0) 539 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:51.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:50 smithi133 bash[22165]: audit 2024-04-15T21:23:50.008247+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:51.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:50 smithi132 bash[21536]: audit 2024-04-15T21:23:49.987232+0000 mon.a (mon.0) 538 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:51.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:50 smithi132 bash[21536]: audit 2024-04-15T21:23:49.998198+0000 mon.a (mon.0) 539 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:51.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:50 smithi132 bash[21536]: audit 2024-04-15T21:23:50.008247+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:51.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:50 smithi187 bash[22200]: audit 2024-04-15T21:23:49.987232+0000 mon.a (mon.0) 538 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:51.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:50 smithi187 bash[22200]: audit 2024-04-15T21:23:49.998198+0000 mon.a (mon.0) 539 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:51.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:50 smithi187 bash[22200]: audit 2024-04-15T21:23:50.008247+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:52.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:52 smithi132 bash[21536]: cluster 2024-04-15T21:23:50.874965+0000 mgr.a (mgr.14152) 194 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:52.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:52 smithi132 bash[21536]: audit 2024-04-15T21:23:51.317123+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-15T21:23:52.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:52 smithi132 bash[21536]: audit 2024-04-15T21:23:51.318932+0000 mon.a (mon.0) 542 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:52.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:52 smithi132 bash[21536]: cephadm 2024-04-15T21:23:51.320551+0000 mgr.a (mgr.14152) 195 : cephadm [INF] Deploying daemon osd.2 on smithi187 2024-04-15T21:23:52.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:52 smithi187 bash[22200]: cluster 2024-04-15T21:23:50.874965+0000 mgr.a (mgr.14152) 194 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:52.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:52 smithi187 bash[22200]: audit 2024-04-15T21:23:51.317123+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-15T21:23:52.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:52 smithi187 bash[22200]: audit 2024-04-15T21:23:51.318932+0000 mon.a (mon.0) 542 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:52.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:52 smithi187 bash[22200]: cephadm 2024-04-15T21:23:51.320551+0000 mgr.a (mgr.14152) 195 : cephadm [INF] Deploying daemon osd.2 on smithi187 2024-04-15T21:23:52.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:52 smithi133 bash[22165]: cluster 2024-04-15T21:23:50.874965+0000 mgr.a (mgr.14152) 194 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:52.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:52 smithi133 bash[22165]: audit 2024-04-15T21:23:51.317123+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-15T21:23:52.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:52 smithi133 bash[22165]: audit 2024-04-15T21:23:51.318932+0000 mon.a (mon.0) 542 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:52.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:52 smithi133 bash[22165]: cephadm 2024-04-15T21:23:51.320551+0000 mgr.a (mgr.14152) 195 : cephadm [INF] Deploying daemon osd.2 on smithi187 2024-04-15T21:23:54.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:54 smithi132 bash[21536]: cluster 2024-04-15T21:23:52.875406+0000 mgr.a (mgr.14152) 196 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:54.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:54 smithi132 bash[21536]: audit 2024-04-15T21:23:53.691098+0000 mon.a (mon.0) 543 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:54.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:54 smithi132 bash[21536]: audit 2024-04-15T21:23:53.699269+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:54.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:54 smithi132 bash[21536]: audit 2024-04-15T21:23:53.709608+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:54.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:54 smithi187 bash[22200]: cluster 2024-04-15T21:23:52.875406+0000 mgr.a (mgr.14152) 196 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:54.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:54 smithi187 bash[22200]: audit 2024-04-15T21:23:53.691098+0000 mon.a (mon.0) 543 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:54.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:54 smithi187 bash[22200]: audit 2024-04-15T21:23:53.699269+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:54.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:54 smithi187 bash[22200]: audit 2024-04-15T21:23:53.709608+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:54.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:54 smithi133 bash[22165]: cluster 2024-04-15T21:23:52.875406+0000 mgr.a (mgr.14152) 196 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:54.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:54 smithi133 bash[22165]: audit 2024-04-15T21:23:53.691098+0000 mon.a (mon.0) 543 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:54.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:54 smithi133 bash[22165]: audit 2024-04-15T21:23:53.699269+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:54.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:54 smithi133 bash[22165]: audit 2024-04-15T21:23:53.709608+0000 mon.a (mon.0) 545 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:55.163 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:55 smithi187 bash[22200]: cephadm 2024-04-15T21:23:53.702487+0000 mgr.a (mgr.14152) 197 : cephadm [INF] Detected new or changed devices on smithi187 2024-04-15T21:23:55.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:55 smithi132 bash[21536]: cephadm 2024-04-15T21:23:53.702487+0000 mgr.a (mgr.14152) 197 : cephadm [INF] Detected new or changed devices on smithi187 2024-04-15T21:23:55.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:55 smithi133 bash[22165]: cephadm 2024-04-15T21:23:53.702487+0000 mgr.a (mgr.14152) 197 : cephadm [INF] Detected new or changed devices on smithi187 2024-04-15T21:23:56.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:56 smithi132 bash[21536]: cluster 2024-04-15T21:23:54.875883+0000 mgr.a (mgr.14152) 198 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:56.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:56 smithi187 bash[22200]: cluster 2024-04-15T21:23:54.875883+0000 mgr.a (mgr.14152) 198 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:56.498 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:56 smithi133 bash[22165]: cluster 2024-04-15T21:23:54.875883+0000 mgr.a (mgr.14152) 198 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:57.590 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:57 smithi187 systemd[1]: /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-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-04-15T21:23:57.864 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:57 smithi187 systemd[1]: /etc/systemd/system/ceph-7ac1dc10-fb6d-11ee-bc8f-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-04-15T21:23:58.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:58 smithi187 bash[22200]: cluster 2024-04-15T21:23:56.876336+0000 mgr.a (mgr.14152) 199 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:58.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:58 smithi187 bash[22200]: audit 2024-04-15T21:23:57.872389+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:58.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:58 smithi187 bash[22200]: audit 2024-04-15T21:23:57.880658+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:58.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:58 smithi187 bash[22200]: audit 2024-04-15T21:23:57.891349+0000 mon.a (mon.0) 548 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:23:58.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:58 smithi187 bash[22200]: audit 2024-04-15T21:23:57.899255+0000 mon.a (mon.0) 549 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:58.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:58 smithi187 bash[22200]: audit 2024-04-15T21:23:57.901860+0000 mon.a (mon.0) 550 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:23:58.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:23:58 smithi187 bash[22200]: audit 2024-04-15T21:23:57.914524+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:58.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:58 smithi132 bash[21536]: cluster 2024-04-15T21:23:56.876336+0000 mgr.a (mgr.14152) 199 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:58.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:58 smithi132 bash[21536]: audit 2024-04-15T21:23:57.872389+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:58.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:58 smithi132 bash[21536]: audit 2024-04-15T21:23:57.880658+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:58.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:58 smithi132 bash[21536]: audit 2024-04-15T21:23:57.891349+0000 mon.a (mon.0) 548 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:23:58.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:58 smithi132 bash[21536]: audit 2024-04-15T21:23:57.899255+0000 mon.a (mon.0) 549 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:58.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:58 smithi132 bash[21536]: audit 2024-04-15T21:23:57.901860+0000 mon.a (mon.0) 550 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:23:58.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:23:58 smithi132 bash[21536]: audit 2024-04-15T21:23:57.914524+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:58.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:58 smithi133 bash[22165]: cluster 2024-04-15T21:23:56.876336+0000 mgr.a (mgr.14152) 199 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:23:58.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:58 smithi133 bash[22165]: audit 2024-04-15T21:23:57.872389+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:58.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:58 smithi133 bash[22165]: audit 2024-04-15T21:23:57.880658+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:23:58.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:58 smithi133 bash[22165]: audit 2024-04-15T21:23:57.891349+0000 mon.a (mon.0) 548 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:23:58.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:58 smithi133 bash[22165]: audit 2024-04-15T21:23:57.899255+0000 mon.a (mon.0) 549 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:23:58.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:58 smithi133 bash[22165]: audit 2024-04-15T21:23:57.901860+0000 mon.a (mon.0) 550 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:23:58.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:23:58 smithi133 bash[22165]: audit 2024-04-15T21:23:57.914524+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:00.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:00 smithi132 bash[21536]: cluster 2024-04-15T21:23:58.876893+0000 mgr.a (mgr.14152) 200 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:24:00.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:00 smithi133 bash[22165]: cluster 2024-04-15T21:23:58.876893+0000 mgr.a (mgr.14152) 200 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:24:00.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:00 smithi187 bash[22200]: cluster 2024-04-15T21:23:58.876893+0000 mgr.a (mgr.14152) 200 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:24:02.341 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:02 smithi133 bash[22165]: cluster 2024-04-15T21:24:00.877415+0000 mgr.a (mgr.14152) 201 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:24:02.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:02 smithi132 bash[21536]: cluster 2024-04-15T21:24:00.877415+0000 mgr.a (mgr.14152) 201 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:24:02.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:02 smithi187 bash[22200]: cluster 2024-04-15T21:24:00.877415+0000 mgr.a (mgr.14152) 201 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:24:04.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:04 smithi132 bash[21536]: cluster 2024-04-15T21:24:02.877777+0000 mgr.a (mgr.14152) 202 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:24:04.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:04 smithi187 bash[22200]: cluster 2024-04-15T21:24:02.877777+0000 mgr.a (mgr.14152) 202 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:24:04.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:04 smithi133 bash[22165]: cluster 2024-04-15T21:24:02.877777+0000 mgr.a (mgr.14152) 202 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:24:05.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:05 smithi132 bash[21536]: audit 2024-04-15T21:24:04.543439+0000 mon.a (mon.0) 552 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-15T21:24:05.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:05 smithi132 bash[21536]: audit 2024-04-15T21:24:04.543471+0000 mon.c (mon.1) 5 : audit [INF] from='osd.2 [v2:172.21.15.187:6800/2835711690,v1:172.21.15.187:6801/2835711690]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-15T21:24:05.383 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:05 smithi187 bash[22200]: audit 2024-04-15T21:24:04.543439+0000 mon.a (mon.0) 552 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-15T21:24:05.383 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:05 smithi187 bash[22200]: audit 2024-04-15T21:24:04.543471+0000 mon.c (mon.1) 5 : audit [INF] from='osd.2 [v2:172.21.15.187:6800/2835711690,v1:172.21.15.187:6801/2835711690]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-15T21:24:05.440 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:05 smithi133 bash[22165]: audit 2024-04-15T21:24:04.543439+0000 mon.a (mon.0) 552 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-15T21:24:05.440 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:05 smithi133 bash[22165]: audit 2024-04-15T21:24:04.543471+0000 mon.c (mon.1) 5 : audit [INF] from='osd.2 [v2:172.21.15.187:6800/2835711690,v1:172.21.15.187:6801/2835711690]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-15T21:24:06.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:06 smithi132 bash[21536]: cluster 2024-04-15T21:24:04.878169+0000 mgr.a (mgr.14152) 203 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:24:06.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:06 smithi132 bash[21536]: audit 2024-04-15T21:24:05.047453+0000 mon.a (mon.0) 553 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-15T21:24:06.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:06 smithi132 bash[21536]: cluster 2024-04-15T21:24:05.054252+0000 mon.a (mon.0) 554 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-04-15T21:24:06.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:06 smithi132 bash[21536]: audit 2024-04-15T21:24:05.054665+0000 mon.a (mon.0) 555 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:24:06.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:06 smithi132 bash[21536]: audit 2024-04-15T21:24:05.055016+0000 mon.c (mon.1) 6 : audit [INF] from='osd.2 [v2:172.21.15.187:6800/2835711690,v1:172.21.15.187:6801/2835711690]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]: dispatch 2024-04-15T21:24:06.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:06 smithi132 bash[21536]: audit 2024-04-15T21:24:05.055072+0000 mon.a (mon.0) 556 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]: dispatch 2024-04-15T21:24:06.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:06 smithi132 bash[21536]: audit 2024-04-15T21:24:05.419852+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:06.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:06 smithi132 bash[21536]: audit 2024-04-15T21:24:05.429061+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:06.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:06 smithi132 bash[21536]: audit 2024-04-15T21:24:05.439532+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:06.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:06 smithi187 bash[22200]: cluster 2024-04-15T21:24:04.878169+0000 mgr.a (mgr.14152) 203 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:24:06.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:06 smithi187 bash[22200]: audit 2024-04-15T21:24:05.047453+0000 mon.a (mon.0) 553 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-15T21:24:06.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:06 smithi187 bash[22200]: cluster 2024-04-15T21:24:05.054252+0000 mon.a (mon.0) 554 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-04-15T21:24:06.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:06 smithi187 bash[22200]: audit 2024-04-15T21:24:05.054665+0000 mon.a (mon.0) 555 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:24:06.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:06 smithi187 bash[22200]: audit 2024-04-15T21:24:05.055016+0000 mon.c (mon.1) 6 : audit [INF] from='osd.2 [v2:172.21.15.187:6800/2835711690,v1:172.21.15.187:6801/2835711690]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]: dispatch 2024-04-15T21:24:06.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:06 smithi187 bash[22200]: audit 2024-04-15T21:24:05.055072+0000 mon.a (mon.0) 556 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]: dispatch 2024-04-15T21:24:06.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:06 smithi187 bash[22200]: audit 2024-04-15T21:24:05.419852+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:06.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:06 smithi187 bash[22200]: audit 2024-04-15T21:24:05.429061+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:06.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:06 smithi187 bash[22200]: audit 2024-04-15T21:24:05.439532+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:06.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:06 smithi133 bash[22165]: cluster 2024-04-15T21:24:04.878169+0000 mgr.a (mgr.14152) 203 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:24:06.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:06 smithi133 bash[22165]: audit 2024-04-15T21:24:05.047453+0000 mon.a (mon.0) 553 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-15T21:24:06.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:06 smithi133 bash[22165]: cluster 2024-04-15T21:24:05.054252+0000 mon.a (mon.0) 554 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-04-15T21:24:06.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:06 smithi133 bash[22165]: audit 2024-04-15T21:24:05.054665+0000 mon.a (mon.0) 555 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:24:06.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:06 smithi133 bash[22165]: audit 2024-04-15T21:24:05.055016+0000 mon.c (mon.1) 6 : audit [INF] from='osd.2 [v2:172.21.15.187:6800/2835711690,v1:172.21.15.187:6801/2835711690]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]: dispatch 2024-04-15T21:24:06.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:06 smithi133 bash[22165]: audit 2024-04-15T21:24:05.055072+0000 mon.a (mon.0) 556 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]: dispatch 2024-04-15T21:24:06.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:06 smithi133 bash[22165]: audit 2024-04-15T21:24:05.419852+0000 mon.a (mon.0) 557 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:06.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:06 smithi133 bash[22165]: audit 2024-04-15T21:24:05.429061+0000 mon.a (mon.0) 558 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:06.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:06 smithi133 bash[22165]: audit 2024-04-15T21:24:05.439532+0000 mon.a (mon.0) 559 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:06.728 INFO:teuthology.orchestra.run.smithi187.stdout:Created osd(s) 2 on host 'smithi187' 2024-04-15T21:24:07.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:07 smithi132 bash[21536]: audit 2024-04-15T21:24:06.049754+0000 mon.a (mon.0) 560 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]': finished 2024-04-15T21:24:07.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:07 smithi132 bash[21536]: cluster 2024-04-15T21:24:06.054823+0000 mon.a (mon.0) 561 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-04-15T21:24:07.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:07 smithi132 bash[21536]: audit 2024-04-15T21:24:06.055820+0000 mon.a (mon.0) 562 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:24:07.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:07 smithi132 bash[21536]: audit 2024-04-15T21:24:06.063467+0000 mon.a (mon.0) 563 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:24:07.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:07 smithi132 bash[21536]: audit 2024-04-15T21:24:06.705519+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:07.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:07 smithi132 bash[21536]: audit 2024-04-15T21:24:06.713884+0000 mon.a (mon.0) 565 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:07.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:07 smithi132 bash[21536]: audit 2024-04-15T21:24:06.737826+0000 mon.a (mon.0) 566 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:24:07.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:07 smithi132 bash[21536]: audit 2024-04-15T21:24:06.743851+0000 mon.a (mon.0) 567 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:24:07.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:07 smithi132 bash[21536]: audit 2024-04-15T21:24:06.751672+0000 mon.a (mon.0) 568 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:07.380 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:07 smithi132 bash[21536]: audit 2024-04-15T21:24:06.755576+0000 mon.a (mon.0) 569 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:24:07.380 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:07 smithi132 bash[21536]: audit 2024-04-15T21:24:06.757412+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:24:07.380 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:07 smithi132 bash[21536]: audit 2024-04-15T21:24:06.767229+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:07.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:07 smithi187 bash[22200]: audit 2024-04-15T21:24:06.049754+0000 mon.a (mon.0) 560 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]': finished 2024-04-15T21:24:07.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:07 smithi187 bash[22200]: cluster 2024-04-15T21:24:06.054823+0000 mon.a (mon.0) 561 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-04-15T21:24:07.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:07 smithi187 bash[22200]: audit 2024-04-15T21:24:06.055820+0000 mon.a (mon.0) 562 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:24:07.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:07 smithi187 bash[22200]: audit 2024-04-15T21:24:06.063467+0000 mon.a (mon.0) 563 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:24:07.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:07 smithi187 bash[22200]: audit 2024-04-15T21:24:06.705519+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:07.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:07 smithi187 bash[22200]: audit 2024-04-15T21:24:06.713884+0000 mon.a (mon.0) 565 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:07.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:07 smithi187 bash[22200]: audit 2024-04-15T21:24:06.737826+0000 mon.a (mon.0) 566 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:24:07.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:07 smithi187 bash[22200]: audit 2024-04-15T21:24:06.743851+0000 mon.a (mon.0) 567 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:24:07.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:07 smithi187 bash[22200]: audit 2024-04-15T21:24:06.751672+0000 mon.a (mon.0) 568 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:07.416 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:07 smithi187 bash[22200]: audit 2024-04-15T21:24:06.755576+0000 mon.a (mon.0) 569 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:24:07.416 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:07 smithi187 bash[22200]: audit 2024-04-15T21:24:06.757412+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:24:07.416 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:07 smithi187 bash[22200]: audit 2024-04-15T21:24:06.767229+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:07.423 DEBUG:teuthology.orchestra.run.smithi187:osd.2> sudo journalctl -f -n 0 -u ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@osd.2.service 2024-04-15T21:24:07.426 INFO:tasks.cephadm:Waiting for 3 OSDs to come up... 2024-04-15T21:24:07.426 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph osd stat -f json 2024-04-15T21:24:07.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:07 smithi133 bash[22165]: audit 2024-04-15T21:24:06.049754+0000 mon.a (mon.0) 560 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi187", "root=default"]}]': finished 2024-04-15T21:24:07.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:07 smithi133 bash[22165]: cluster 2024-04-15T21:24:06.054823+0000 mon.a (mon.0) 561 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-04-15T21:24:07.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:07 smithi133 bash[22165]: audit 2024-04-15T21:24:06.055820+0000 mon.a (mon.0) 562 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:24:07.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:07 smithi133 bash[22165]: audit 2024-04-15T21:24:06.063467+0000 mon.a (mon.0) 563 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:24:07.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:07 smithi133 bash[22165]: audit 2024-04-15T21:24:06.705519+0000 mon.a (mon.0) 564 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:07.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:07 smithi133 bash[22165]: audit 2024-04-15T21:24:06.713884+0000 mon.a (mon.0) 565 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:07.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:07 smithi133 bash[22165]: audit 2024-04-15T21:24:06.737826+0000 mon.a (mon.0) 566 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:24:07.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:07 smithi133 bash[22165]: audit 2024-04-15T21:24:06.743851+0000 mon.a (mon.0) 567 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:24:07.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:07 smithi133 bash[22165]: audit 2024-04-15T21:24:06.751672+0000 mon.a (mon.0) 568 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:07.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:07 smithi133 bash[22165]: audit 2024-04-15T21:24:06.755576+0000 mon.a (mon.0) 569 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:24:07.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:07 smithi133 bash[22165]: audit 2024-04-15T21:24:06.757412+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:24:07.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:07 smithi133 bash[22165]: audit 2024-04-15T21:24:06.767229+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:08.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:08 smithi132 bash[21536]: cluster 2024-04-15T21:24:05.563765+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-15T21:24:08.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:08 smithi132 bash[21536]: cluster 2024-04-15T21:24:05.563864+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-15T21:24:08.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:08 smithi132 bash[21536]: cephadm 2024-04-15T21:24:06.745352+0000 mgr.a (mgr.14152) 204 : cephadm [INF] Adjusting osd_memory_target on smithi187 to 20337M 2024-04-15T21:24:08.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:08 smithi132 bash[21536]: cluster 2024-04-15T21:24:06.878560+0000 mgr.a (mgr.14152) 205 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:24:08.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:08 smithi132 bash[21536]: audit 2024-04-15T21:24:07.058578+0000 mon.a (mon.0) 572 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:24:08.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:08 smithi132 bash[21536]: cluster 2024-04-15T21:24:07.064860+0000 mon.a (mon.0) 573 : cluster [INF] osd.2 [v2:172.21.15.187:6800/2835711690,v1:172.21.15.187:6801/2835711690] boot 2024-04-15T21:24:08.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:08 smithi132 bash[21536]: cluster 2024-04-15T21:24:07.064942+0000 mon.a (mon.0) 574 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-04-15T21:24:08.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:08 smithi132 bash[21536]: audit 2024-04-15T21:24:07.065772+0000 mon.a (mon.0) 575 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:24:08.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:08 smithi132 bash[21536]: audit 2024-04-15T21:24:07.748229+0000 mon.a (mon.0) 576 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' 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-04-15T21:24:08.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:08 smithi187 bash[22200]: cluster 2024-04-15T21:24:05.563765+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-15T21:24:08.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:08 smithi187 bash[22200]: cluster 2024-04-15T21:24:05.563864+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-15T21:24:08.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:08 smithi187 bash[22200]: cephadm 2024-04-15T21:24:06.745352+0000 mgr.a (mgr.14152) 204 : cephadm [INF] Adjusting osd_memory_target on smithi187 to 20337M 2024-04-15T21:24:08.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:08 smithi187 bash[22200]: cluster 2024-04-15T21:24:06.878560+0000 mgr.a (mgr.14152) 205 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:24:08.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:08 smithi187 bash[22200]: audit 2024-04-15T21:24:07.058578+0000 mon.a (mon.0) 572 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:24:08.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:08 smithi187 bash[22200]: cluster 2024-04-15T21:24:07.064860+0000 mon.a (mon.0) 573 : cluster [INF] osd.2 [v2:172.21.15.187:6800/2835711690,v1:172.21.15.187:6801/2835711690] boot 2024-04-15T21:24:08.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:08 smithi187 bash[22200]: cluster 2024-04-15T21:24:07.064942+0000 mon.a (mon.0) 574 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-04-15T21:24:08.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:08 smithi187 bash[22200]: audit 2024-04-15T21:24:07.065772+0000 mon.a (mon.0) 575 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:24:08.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:08 smithi187 bash[22200]: audit 2024-04-15T21:24:07.748229+0000 mon.a (mon.0) 576 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' 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-04-15T21:24:08.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:08 smithi133 bash[22165]: cluster 2024-04-15T21:24:05.563765+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-04-15T21:24:08.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:08 smithi133 bash[22165]: cluster 2024-04-15T21:24:05.563864+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-04-15T21:24:08.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:08 smithi133 bash[22165]: cephadm 2024-04-15T21:24:06.745352+0000 mgr.a (mgr.14152) 204 : cephadm [INF] Adjusting osd_memory_target on smithi187 to 20337M 2024-04-15T21:24:08.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:08 smithi133 bash[22165]: cluster 2024-04-15T21:24:06.878560+0000 mgr.a (mgr.14152) 205 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:24:08.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:08 smithi133 bash[22165]: audit 2024-04-15T21:24:07.058578+0000 mon.a (mon.0) 572 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:24:08.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:08 smithi133 bash[22165]: cluster 2024-04-15T21:24:07.064860+0000 mon.a (mon.0) 573 : cluster [INF] osd.2 [v2:172.21.15.187:6800/2835711690,v1:172.21.15.187:6801/2835711690] boot 2024-04-15T21:24:08.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:08 smithi133 bash[22165]: cluster 2024-04-15T21:24:07.064942+0000 mon.a (mon.0) 574 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-04-15T21:24:08.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:08 smithi133 bash[22165]: audit 2024-04-15T21:24:07.065772+0000 mon.a (mon.0) 575 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:24:08.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:08 smithi133 bash[22165]: audit 2024-04-15T21:24:07.748229+0000 mon.a (mon.0) 576 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' 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-04-15T21:24:09.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:09 smithi132 bash[21536]: audit 2024-04-15T21:24:08.081401+0000 mon.a (mon.0) 577 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' 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-04-15T21:24:09.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:09 smithi132 bash[21536]: cluster 2024-04-15T21:24:08.086573+0000 mon.a (mon.0) 578 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-04-15T21:24:09.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:09 smithi132 bash[21536]: audit 2024-04-15T21:24:08.088556+0000 mon.a (mon.0) 579 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-15T21:24:09.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:09 smithi187 bash[22200]: audit 2024-04-15T21:24:08.081401+0000 mon.a (mon.0) 577 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' 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-04-15T21:24:09.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:09 smithi187 bash[22200]: cluster 2024-04-15T21:24:08.086573+0000 mon.a (mon.0) 578 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-04-15T21:24:09.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:09 smithi187 bash[22200]: audit 2024-04-15T21:24:08.088556+0000 mon.a (mon.0) 579 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-15T21:24:09.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:09 smithi133 bash[22165]: audit 2024-04-15T21:24:08.081401+0000 mon.a (mon.0) 577 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' 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-04-15T21:24:09.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:09 smithi133 bash[22165]: cluster 2024-04-15T21:24:08.086573+0000 mon.a (mon.0) 578 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-04-15T21:24:09.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:09 smithi133 bash[22165]: audit 2024-04-15T21:24:08.088556+0000 mon.a (mon.0) 579 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-15T21:24:10.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: cluster 2024-04-15T21:24:08.879156+0000 mgr.a (mgr.14152) 206 : cluster [DBG] pgmap v151: 1 pgs: 1 creating+peering; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:10.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: cluster 2024-04-15T21:24:09.082090+0000 mon.a (mon.0) 580 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-04-15T21:24:10.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: audit 2024-04-15T21:24:09.083740+0000 mon.a (mon.0) 581 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-15T21:24:10.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: cluster 2024-04-15T21:24:09.088823+0000 mon.a (mon.0) 582 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-04-15T21:24:10.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: audit 2024-04-15T21:24:09.397399+0000 mon.a (mon.0) 583 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:10.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: audit 2024-04-15T21:24:09.493439+0000 mon.a (mon.0) 584 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:10.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: audit 2024-04-15T21:24:09.603934+0000 mon.a (mon.0) 585 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:10.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: audit 2024-04-15T21:24:09.606209+0000 mon.a (mon.0) 586 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T21:24:10.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: audit 2024-04-15T21:24:09.648729+0000 mon.a (mon.0) 587 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T21:24:10.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: audit 2024-04-15T21:24:09.649084+0000 mon.a (mon.0) 588 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:24:10.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: audit 2024-04-15T21:24:09.649298+0000 mon.a (mon.0) 589 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:24:10.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: audit 2024-04-15T21:24:09.649506+0000 mon.a (mon.0) 590 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:24:10.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: audit 2024-04-15T21:24:09.651701+0000 mon.a (mon.0) 591 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:24:10.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: audit 2024-04-15T21:24:09.651956+0000 mon.a (mon.0) 592 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:24:10.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: audit 2024-04-15T21:24:09.652211+0000 mon.a (mon.0) 593 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:24:10.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: audit 2024-04-15T21:24:09.652333+0000 mon.c (mon.1) 7 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T21:24:10.379 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: audit 2024-04-15T21:24:09.692549+0000 mon.c (mon.1) 8 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T21:24:10.380 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: audit 2024-04-15T21:24:09.693934+0000 mon.b (mon.2) 10 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T21:24:10.380 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: audit 2024-04-15T21:24:09.694918+0000 mon.a (mon.0) 594 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:24:10.380 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: audit 2024-04-15T21:24:09.695124+0000 mon.a (mon.0) 595 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:24:10.380 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: audit 2024-04-15T21:24:09.695359+0000 mon.a (mon.0) 596 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:24:10.380 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:10 smithi132 bash[21536]: audit 2024-04-15T21:24:09.747078+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T21:24:10.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: cluster 2024-04-15T21:24:08.879156+0000 mgr.a (mgr.14152) 206 : cluster [DBG] pgmap v151: 1 pgs: 1 creating+peering; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:10.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: cluster 2024-04-15T21:24:09.082090+0000 mon.a (mon.0) 580 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-04-15T21:24:10.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: audit 2024-04-15T21:24:09.083740+0000 mon.a (mon.0) 581 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-15T21:24:10.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: cluster 2024-04-15T21:24:09.088823+0000 mon.a (mon.0) 582 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-04-15T21:24:10.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: audit 2024-04-15T21:24:09.397399+0000 mon.a (mon.0) 583 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:10.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: audit 2024-04-15T21:24:09.493439+0000 mon.a (mon.0) 584 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:10.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: audit 2024-04-15T21:24:09.603934+0000 mon.a (mon.0) 585 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:10.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: audit 2024-04-15T21:24:09.606209+0000 mon.a (mon.0) 586 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T21:24:10.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: audit 2024-04-15T21:24:09.648729+0000 mon.a (mon.0) 587 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T21:24:10.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: audit 2024-04-15T21:24:09.649084+0000 mon.a (mon.0) 588 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:24:10.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: audit 2024-04-15T21:24:09.649298+0000 mon.a (mon.0) 589 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:24:10.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: audit 2024-04-15T21:24:09.649506+0000 mon.a (mon.0) 590 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:24:10.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: audit 2024-04-15T21:24:09.651701+0000 mon.a (mon.0) 591 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:24:10.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: audit 2024-04-15T21:24:09.651956+0000 mon.a (mon.0) 592 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:24:10.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: audit 2024-04-15T21:24:09.652211+0000 mon.a (mon.0) 593 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:24:10.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: audit 2024-04-15T21:24:09.652333+0000 mon.c (mon.1) 7 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T21:24:10.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: audit 2024-04-15T21:24:09.692549+0000 mon.c (mon.1) 8 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T21:24:10.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: audit 2024-04-15T21:24:09.693934+0000 mon.b (mon.2) 10 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T21:24:10.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: audit 2024-04-15T21:24:09.694918+0000 mon.a (mon.0) 594 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:24:10.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: audit 2024-04-15T21:24:09.695124+0000 mon.a (mon.0) 595 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:24:10.415 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: audit 2024-04-15T21:24:09.695359+0000 mon.a (mon.0) 596 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:24:10.416 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:10 smithi187 bash[22200]: audit 2024-04-15T21:24:09.747078+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T21:24:10.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: cluster 2024-04-15T21:24:08.879156+0000 mgr.a (mgr.14152) 206 : cluster [DBG] pgmap v151: 1 pgs: 1 creating+peering; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:10.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: cluster 2024-04-15T21:24:09.082090+0000 mon.a (mon.0) 580 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-04-15T21:24:10.498 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: audit 2024-04-15T21:24:09.083740+0000 mon.a (mon.0) 581 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-15T21:24:10.498 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: cluster 2024-04-15T21:24:09.088823+0000 mon.a (mon.0) 582 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-04-15T21:24:10.498 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: audit 2024-04-15T21:24:09.397399+0000 mon.a (mon.0) 583 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:10.498 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: audit 2024-04-15T21:24:09.493439+0000 mon.a (mon.0) 584 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:10.498 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: audit 2024-04-15T21:24:09.603934+0000 mon.a (mon.0) 585 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:10.498 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: audit 2024-04-15T21:24:09.606209+0000 mon.a (mon.0) 586 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T21:24:10.499 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: audit 2024-04-15T21:24:09.648729+0000 mon.a (mon.0) 587 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T21:24:10.499 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: audit 2024-04-15T21:24:09.649084+0000 mon.a (mon.0) 588 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:24:10.499 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: audit 2024-04-15T21:24:09.649298+0000 mon.a (mon.0) 589 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:24:10.499 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: audit 2024-04-15T21:24:09.649506+0000 mon.a (mon.0) 590 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:24:10.499 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: audit 2024-04-15T21:24:09.651701+0000 mon.a (mon.0) 591 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:24:10.499 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: audit 2024-04-15T21:24:09.651956+0000 mon.a (mon.0) 592 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:24:10.500 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: audit 2024-04-15T21:24:09.652211+0000 mon.a (mon.0) 593 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:24:10.500 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: audit 2024-04-15T21:24:09.652333+0000 mon.c (mon.1) 7 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T21:24:10.500 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: audit 2024-04-15T21:24:09.692549+0000 mon.c (mon.1) 8 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T21:24:10.500 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: audit 2024-04-15T21:24:09.693934+0000 mon.b (mon.2) 10 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T21:24:10.500 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: audit 2024-04-15T21:24:09.694918+0000 mon.a (mon.0) 594 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:24:10.500 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: audit 2024-04-15T21:24:09.695124+0000 mon.a (mon.0) 595 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:24:10.501 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: audit 2024-04-15T21:24:09.695359+0000 mon.a (mon.0) 596 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:24:10.501 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:10 smithi133 bash[22165]: audit 2024-04-15T21:24:09.747078+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T21:24:11.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:11 smithi132 bash[21536]: cluster 2024-04-15T21:24:10.111005+0000 mon.a (mon.0) 597 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-04-15T21:24:11.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:11 smithi132 bash[21536]: audit 2024-04-15T21:24:10.209700+0000 mon.a (mon.0) 598 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:11.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:11 smithi132 bash[21536]: audit 2024-04-15T21:24:10.218675+0000 mon.a (mon.0) 599 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:11.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:11 smithi132 bash[21536]: audit 2024-04-15T21:24:10.229045+0000 mon.a (mon.0) 600 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:11.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:11 smithi132 bash[21536]: cluster 2024-04-15T21:24:10.616476+0000 mon.a (mon.0) 601 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-04-15T21:24:11.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:11 smithi187 bash[22200]: cluster 2024-04-15T21:24:10.111005+0000 mon.a (mon.0) 597 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-04-15T21:24:11.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:11 smithi187 bash[22200]: audit 2024-04-15T21:24:10.209700+0000 mon.a (mon.0) 598 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:11.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:11 smithi187 bash[22200]: audit 2024-04-15T21:24:10.218675+0000 mon.a (mon.0) 599 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:11.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:11 smithi187 bash[22200]: audit 2024-04-15T21:24:10.229045+0000 mon.a (mon.0) 600 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:11.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:11 smithi187 bash[22200]: cluster 2024-04-15T21:24:10.616476+0000 mon.a (mon.0) 601 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-04-15T21:24:11.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:11 smithi133 bash[22165]: cluster 2024-04-15T21:24:10.111005+0000 mon.a (mon.0) 597 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-04-15T21:24:11.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:11 smithi133 bash[22165]: audit 2024-04-15T21:24:10.209700+0000 mon.a (mon.0) 598 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:11.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:11 smithi133 bash[22165]: audit 2024-04-15T21:24:10.218675+0000 mon.a (mon.0) 599 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:11.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:11 smithi133 bash[22165]: audit 2024-04-15T21:24:10.229045+0000 mon.a (mon.0) 600 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:11.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:11 smithi133 bash[22165]: cluster 2024-04-15T21:24:10.616476+0000 mon.a (mon.0) 601 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-04-15T21:24:11.619 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:24:12.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:12 smithi132 bash[21536]: cluster 2024-04-15T21:24:10.879656+0000 mgr.a (mgr.14152) 207 : cluster [DBG] pgmap v154: 1 pgs: 1 creating+peering; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:12.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:12 smithi132 bash[21536]: cluster 2024-04-15T21:24:11.604549+0000 mon.a (mon.0) 602 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-04-15T21:24:12.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:12 smithi132 bash[21536]: cluster 2024-04-15T21:24:11.604610+0000 mon.a (mon.0) 603 : cluster [INF] Cluster is now healthy 2024-04-15T21:24:12.382 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:12 smithi187 bash[22200]: cluster 2024-04-15T21:24:10.879656+0000 mgr.a (mgr.14152) 207 : cluster [DBG] pgmap v154: 1 pgs: 1 creating+peering; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:12.382 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:12 smithi187 bash[22200]: cluster 2024-04-15T21:24:11.604549+0000 mon.a (mon.0) 602 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-04-15T21:24:12.382 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:12 smithi187 bash[22200]: cluster 2024-04-15T21:24:11.604610+0000 mon.a (mon.0) 603 : cluster [INF] Cluster is now healthy 2024-04-15T21:24:12.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:12 smithi133 bash[22165]: cluster 2024-04-15T21:24:10.879656+0000 mgr.a (mgr.14152) 207 : cluster [DBG] pgmap v154: 1 pgs: 1 creating+peering; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:12.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:12 smithi133 bash[22165]: cluster 2024-04-15T21:24:11.604549+0000 mon.a (mon.0) 602 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-04-15T21:24:12.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:12 smithi133 bash[22165]: cluster 2024-04-15T21:24:11.604610+0000 mon.a (mon.0) 603 : cluster [INF] Cluster is now healthy 2024-04-15T21:24:14.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:14 smithi187 bash[22200]: cluster 2024-04-15T21:24:12.880251+0000 mgr.a (mgr.14152) 208 : cluster [DBG] pgmap v155: 1 pgs: 1 creating+peering; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:14.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:14 smithi187 bash[22200]: audit 2024-04-15T21:24:13.890741+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:14.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:14 smithi187 bash[22200]: audit 2024-04-15T21:24:13.894965+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:14.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:14 smithi187 bash[22200]: audit 2024-04-15T21:24:13.899833+0000 mon.a (mon.0) 606 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:14.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:14 smithi187 bash[22200]: audit 2024-04-15T21:24:13.905454+0000 mon.a (mon.0) 607 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:24:14.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:14 smithi187 bash[22200]: audit 2024-04-15T21:24:13.908184+0000 mon.a (mon.0) 608 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:24:14.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:14 smithi187 bash[22200]: audit 2024-04-15T21:24:13.909021+0000 mon.a (mon.0) 609 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:24:14.165 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:14 smithi187 bash[22200]: audit 2024-04-15T21:24:13.915547+0000 mon.a (mon.0) 610 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:14.258 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:24:14.272 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:14 smithi132 bash[21536]: cluster 2024-04-15T21:24:12.880251+0000 mgr.a (mgr.14152) 208 : cluster [DBG] pgmap v155: 1 pgs: 1 creating+peering; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:14.272 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:14 smithi132 bash[21536]: audit 2024-04-15T21:24:13.890741+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:14.272 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:14 smithi132 bash[21536]: audit 2024-04-15T21:24:13.894965+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:14.272 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:14 smithi132 bash[21536]: audit 2024-04-15T21:24:13.899833+0000 mon.a (mon.0) 606 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:14.272 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:14 smithi132 bash[21536]: audit 2024-04-15T21:24:13.905454+0000 mon.a (mon.0) 607 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:24:14.272 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:14 smithi132 bash[21536]: audit 2024-04-15T21:24:13.908184+0000 mon.a (mon.0) 608 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:24:14.272 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:14 smithi132 bash[21536]: audit 2024-04-15T21:24:13.909021+0000 mon.a (mon.0) 609 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:24:14.272 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:14 smithi132 bash[21536]: audit 2024-04-15T21:24:13.915547+0000 mon.a (mon.0) 610 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:14.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:14 smithi133 bash[22165]: cluster 2024-04-15T21:24:12.880251+0000 mgr.a (mgr.14152) 208 : cluster [DBG] pgmap v155: 1 pgs: 1 creating+peering; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:14.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:14 smithi133 bash[22165]: audit 2024-04-15T21:24:13.890741+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:14.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:14 smithi133 bash[22165]: audit 2024-04-15T21:24:13.894965+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:14.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:14 smithi133 bash[22165]: audit 2024-04-15T21:24:13.899833+0000 mon.a (mon.0) 606 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:14.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:14 smithi133 bash[22165]: audit 2024-04-15T21:24:13.905454+0000 mon.a (mon.0) 607 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:24:14.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:14 smithi133 bash[22165]: audit 2024-04-15T21:24:13.908184+0000 mon.a (mon.0) 608 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:24:14.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:14 smithi133 bash[22165]: audit 2024-04-15T21:24:13.909021+0000 mon.a (mon.0) 609 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:24:14.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:14 smithi133 bash[22165]: audit 2024-04-15T21:24:13.915547+0000 mon.a (mon.0) 610 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:14.884 INFO:teuthology.orchestra.run.smithi132.stdout:{"epoch":21,"num_osds":3,"num_up_osds":3,"osd_up_since":1713216247,"num_in_osds":3,"osd_in_since":1713216218,"num_remapped_pgs":0} 2024-04-15T21:24:14.885 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph osd dump --format=json 2024-04-15T21:24:15.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:15 smithi132 bash[21536]: cluster 2024-04-15T21:24:13.910928+0000 mgr.a (mgr.14152) 209 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:15.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:15 smithi132 bash[21536]: audit 2024-04-15T21:24:14.260295+0000 mon.a (mon.0) 611 : audit [DBG] from='client.? 172.21.15.132:0/751730522' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-15T21:24:15.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:15 smithi132 bash[21536]: cluster 2024-04-15T21:24:14.898346+0000 mon.a (mon.0) 612 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-15T21:24:15.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:15 smithi187 bash[22200]: cluster 2024-04-15T21:24:13.910928+0000 mgr.a (mgr.14152) 209 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:15.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:15 smithi187 bash[22200]: audit 2024-04-15T21:24:14.260295+0000 mon.a (mon.0) 611 : audit [DBG] from='client.? 172.21.15.132:0/751730522' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-15T21:24:15.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:15 smithi187 bash[22200]: cluster 2024-04-15T21:24:14.898346+0000 mon.a (mon.0) 612 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-15T21:24:15.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:15 smithi133 bash[22165]: cluster 2024-04-15T21:24:13.910928+0000 mgr.a (mgr.14152) 209 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:15.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:15 smithi133 bash[22165]: audit 2024-04-15T21:24:14.260295+0000 mon.a (mon.0) 611 : audit [DBG] from='client.? 172.21.15.132:0/751730522' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-15T21:24:15.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:15 smithi133 bash[22165]: cluster 2024-04-15T21:24:14.898346+0000 mon.a (mon.0) 612 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-15T21:24:17.380 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:17 smithi132 bash[21536]: cluster 2024-04-15T21:24:15.911470+0000 mgr.a (mgr.14152) 210 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:17.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:17 smithi187 bash[22200]: cluster 2024-04-15T21:24:15.911470+0000 mgr.a (mgr.14152) 210 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:17.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:17 smithi133 bash[22165]: cluster 2024-04-15T21:24:15.911470+0000 mgr.a (mgr.14152) 210 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:19.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:19 smithi132 bash[21536]: cluster 2024-04-15T21:24:17.912037+0000 mgr.a (mgr.14152) 211 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:19.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:19 smithi132 bash[21536]: audit 2024-04-15T21:24:19.061617+0000 mon.a (mon.0) 613 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:19.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:19 smithi132 bash[21536]: audit 2024-04-15T21:24:19.070188+0000 mon.a (mon.0) 614 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:19.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:19 smithi132 bash[21536]: audit 2024-04-15T21:24:19.080588+0000 mon.a (mon.0) 615 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:19.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:19 smithi132 bash[21536]: audit 2024-04-15T21:24:19.093069+0000 mon.a (mon.0) 616 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:24:19.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:19 smithi132 bash[21536]: audit 2024-04-15T21:24:19.099159+0000 mon.a (mon.0) 617 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:24:19.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:19 smithi132 bash[21536]: audit 2024-04-15T21:24:19.101151+0000 mon.a (mon.0) 618 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:24:19.378 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:19 smithi132 bash[21536]: audit 2024-04-15T21:24:19.109231+0000 mon.a (mon.0) 619 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:19.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:19 smithi187 bash[22200]: cluster 2024-04-15T21:24:17.912037+0000 mgr.a (mgr.14152) 211 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:19.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:19 smithi187 bash[22200]: audit 2024-04-15T21:24:19.061617+0000 mon.a (mon.0) 613 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:19.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:19 smithi187 bash[22200]: audit 2024-04-15T21:24:19.070188+0000 mon.a (mon.0) 614 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:19.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:19 smithi187 bash[22200]: audit 2024-04-15T21:24:19.080588+0000 mon.a (mon.0) 615 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:19.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:19 smithi187 bash[22200]: audit 2024-04-15T21:24:19.093069+0000 mon.a (mon.0) 616 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:24:19.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:19 smithi187 bash[22200]: audit 2024-04-15T21:24:19.099159+0000 mon.a (mon.0) 617 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:24:19.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:19 smithi187 bash[22200]: audit 2024-04-15T21:24:19.101151+0000 mon.a (mon.0) 618 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:24:19.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:19 smithi187 bash[22200]: audit 2024-04-15T21:24:19.109231+0000 mon.a (mon.0) 619 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:19.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:19 smithi133 bash[22165]: cluster 2024-04-15T21:24:17.912037+0000 mgr.a (mgr.14152) 211 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:19.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:19 smithi133 bash[22165]: audit 2024-04-15T21:24:19.061617+0000 mon.a (mon.0) 613 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:19.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:19 smithi133 bash[22165]: audit 2024-04-15T21:24:19.070188+0000 mon.a (mon.0) 614 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:19.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:19 smithi133 bash[22165]: audit 2024-04-15T21:24:19.080588+0000 mon.a (mon.0) 615 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:19.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:19 smithi133 bash[22165]: audit 2024-04-15T21:24:19.093069+0000 mon.a (mon.0) 616 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:24:19.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:19 smithi133 bash[22165]: audit 2024-04-15T21:24:19.099159+0000 mon.a (mon.0) 617 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:24:19.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:19 smithi133 bash[22165]: audit 2024-04-15T21:24:19.101151+0000 mon.a (mon.0) 618 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:24:19.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:19 smithi133 bash[22165]: audit 2024-04-15T21:24:19.109231+0000 mon.a (mon.0) 619 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:19.607 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:24:20.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:20 smithi132 bash[21536]: cluster 2024-04-15T21:24:19.103866+0000 mgr.a (mgr.14152) 212 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:20.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:20 smithi132 bash[21536]: cluster 2024-04-15T21:24:20.077166+0000 mon.a (mon.0) 620 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-04-15T21:24:20.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:20 smithi132 bash[21536]: cluster 2024-04-15T21:24:20.077226+0000 mon.a (mon.0) 621 : cluster [INF] Cluster is now healthy 2024-04-15T21:24:20.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:20 smithi187 bash[22200]: cluster 2024-04-15T21:24:19.103866+0000 mgr.a (mgr.14152) 212 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:20.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:20 smithi187 bash[22200]: cluster 2024-04-15T21:24:20.077166+0000 mon.a (mon.0) 620 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-04-15T21:24:20.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:20 smithi187 bash[22200]: cluster 2024-04-15T21:24:20.077226+0000 mon.a (mon.0) 621 : cluster [INF] Cluster is now healthy 2024-04-15T21:24:20.424 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:20 smithi133 bash[22165]: cluster 2024-04-15T21:24:19.103866+0000 mgr.a (mgr.14152) 212 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:20.424 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:20 smithi133 bash[22165]: cluster 2024-04-15T21:24:20.077166+0000 mon.a (mon.0) 620 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-04-15T21:24:20.424 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:20 smithi133 bash[22165]: cluster 2024-04-15T21:24:20.077226+0000 mon.a (mon.0) 621 : cluster [INF] Cluster is now healthy 2024-04-15T21:24:22.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:22 smithi187 bash[22200]: cluster 2024-04-15T21:24:21.104449+0000 mgr.a (mgr.14152) 213 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:22.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:22 smithi133 bash[22165]: cluster 2024-04-15T21:24:21.104449+0000 mgr.a (mgr.14152) 213 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:22.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:22 smithi132 bash[21536]: cluster 2024-04-15T21:24:21.104449+0000 mgr.a (mgr.14152) 213 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:23.479 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:24:23.479 INFO:teuthology.orchestra.run.smithi132.stdout:{"epoch":21,"fsid":"7ac1dc10-fb6d-11ee-bc8f-c7b262605968","created":"2024-04-15T21:18:21.414940+0000","modified":"2024-04-15T21:24:10.093569+0000","last_up_change":"2024-04-15T21:24:07.056769+0000","last_in_change":"2024-04-15T21:23:38.287479+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":8,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":3,"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-04-15T21:24:07.755158+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,"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":3,"score_stable":3,"optimal_score":1,"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":"89f3f965-2a55-4bf6-ba1b-7227ef0970ac","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.132:6802","nonce":1969507637},{"type":"v1","addr":"172.21.15.132:6803","nonce":1969507637}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.132:6804","nonce":1969507637},{"type":"v1","addr":"172.21.15.132:6805","nonce":1969507637}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.132:6808","nonce":1969507637},{"type":"v1","addr":"172.21.15.132:6809","nonce":1969507637}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.132:6806","nonce":1969507637},{"type":"v1","addr":"172.21.15.132:6807","nonce":1969507637}]},"public_addr":"172.21.15.132:6803/1969507637","cluster_addr":"172.21.15.132:6805/1969507637","heartbeat_back_addr":"172.21.15.132:6809/1969507637","heartbeat_front_addr":"172.21.15.132:6807/1969507637","state":["exists","up"]},{"osd":1,"uuid":"3b4948a3-764e-477d-9d6d-5e7b757c4bbe","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.133:6800","nonce":3183802104},{"type":"v1","addr":"172.21.15.133:6801","nonce":3183802104}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.133:6802","nonce":3183802104},{"type":"v1","addr":"172.21.15.133:6803","nonce":3183802104}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.133:6806","nonce":3183802104},{"type":"v1","addr":"172.21.15.133:6807","nonce":3183802104}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.133:6804","nonce":3183802104},{"type":"v1","addr":"172.21.15.133:6805","nonce":3183802104}]},"public_addr":"172.21.15.133:6801/3183802104","cluster_addr":"172.21.15.133:6803/3183802104","heartbeat_back_addr":"172.21.15.133:6807/3183802104","heartbeat_front_addr":"172.21.15.133:6805/3183802104","state":["exists","up"]},{"osd":2,"uuid":"b35bd764-3dd8-4e5b-87e7-3e713731b835","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6800","nonce":2835711690},{"type":"v1","addr":"172.21.15.187:6801","nonce":2835711690}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6802","nonce":2835711690},{"type":"v1","addr":"172.21.15.187:6803","nonce":2835711690}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6806","nonce":2835711690},{"type":"v1","addr":"172.21.15.187:6807","nonce":2835711690}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6804","nonce":2835711690},{"type":"v1","addr":"172.21.15.187:6805","nonce":2835711690}]},"public_addr":"172.21.15.187:6801/2835711690","cluster_addr":"172.21.15.187:6803/2835711690","heartbeat_back_addr":"172.21.15.187:6807/2835711690","heartbeat_front_addr":"172.21.15.187:6805/2835711690","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:22:21.294760+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:23:15.218974+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:24:05.563869+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.132:6800/2687140709":"2024-04-16T21:19:27.520096+0000","172.21.15.132:0/3577555026":"2024-04-16T21:18:53.007691+0000","172.21.15.132:6801/2687140709":"2024-04-16T21:19:27.520096+0000","172.21.15.132:0/3669192999":"2024-04-16T21:18:53.007691+0000","172.21.15.132:0/1434260312":"2024-04-16T21:18:53.007691+0000","172.21.15.132:0/1415220719":"2024-04-16T21:19:27.520096+0000","172.21.15.132:6800/3422350282":"2024-04-16T21:18:53.007691+0000","172.21.15.132:6801/3422350282":"2024-04-16T21:18:53.007691+0000","172.21.15.132:0/873655167":"2024-04-16T21:19:27.520096+0000","172.21.15.132:0/790670113":"2024-04-16T21:19:27.520096+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-04-15T21:24:24.389 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:24 smithi132 bash[21536]: cluster 2024-04-15T21:24:23.104897+0000 mgr.a (mgr.14152) 214 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:24.390 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:24 smithi132 bash[21536]: audit 2024-04-15T21:24:23.479773+0000 mon.a (mon.0) 622 : audit [DBG] from='client.? 172.21.15.132:0/2658126961' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T21:24:24.391 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-04-15T21:24:07.755158+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, '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': 3, 'score_stable': 3, 'optimal_score': 1, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-04-15T21:24:24.392 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-04-15T21:24:24.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:24 smithi187 bash[22200]: cluster 2024-04-15T21:24:23.104897+0000 mgr.a (mgr.14152) 214 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:24.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:24 smithi187 bash[22200]: audit 2024-04-15T21:24:23.479773+0000 mon.a (mon.0) 622 : audit [DBG] from='client.? 172.21.15.132:0/2658126961' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T21:24:24.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:24 smithi133 bash[22165]: cluster 2024-04-15T21:24:23.104897+0000 mgr.a (mgr.14152) 214 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:24.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:24 smithi133 bash[22165]: audit 2024-04-15T21:24:23.479773+0000 mon.a (mon.0) 622 : audit [DBG] from='client.? 172.21.15.132:0/2658126961' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T21:24:26.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:26 smithi187 bash[22200]: cluster 2024-04-15T21:24:25.105540+0000 mgr.a (mgr.14152) 215 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:26.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:26 smithi187 bash[22200]: audit 2024-04-15T21:24:25.615736+0000 mon.a (mon.0) 623 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:26.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:26 smithi187 bash[22200]: audit 2024-04-15T21:24:25.624550+0000 mon.a (mon.0) 624 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:26.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:26 smithi187 bash[22200]: audit 2024-04-15T21:24:25.635085+0000 mon.a (mon.0) 625 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:26.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:26 smithi133 bash[22165]: cluster 2024-04-15T21:24:25.105540+0000 mgr.a (mgr.14152) 215 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:26.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:26 smithi133 bash[22165]: audit 2024-04-15T21:24:25.615736+0000 mon.a (mon.0) 623 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:26.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:26 smithi133 bash[22165]: audit 2024-04-15T21:24:25.624550+0000 mon.a (mon.0) 624 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:26.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:26 smithi133 bash[22165]: audit 2024-04-15T21:24:25.635085+0000 mon.a (mon.0) 625 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:26.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:26 smithi132 bash[21536]: cluster 2024-04-15T21:24:25.105540+0000 mgr.a (mgr.14152) 215 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:26.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:26 smithi132 bash[21536]: audit 2024-04-15T21:24:25.615736+0000 mon.a (mon.0) 623 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:26.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:26 smithi132 bash[21536]: audit 2024-04-15T21:24:25.624550+0000 mon.a (mon.0) 624 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:26.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:26 smithi132 bash[21536]: audit 2024-04-15T21:24:25.635085+0000 mon.a (mon.0) 625 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:28.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:28 smithi187 bash[22200]: cluster 2024-04-15T21:24:27.106124+0000 mgr.a (mgr.14152) 216 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:28.419 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:28 smithi132 bash[21536]: cluster 2024-04-15T21:24:27.106124+0000 mgr.a (mgr.14152) 216 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:28.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:28 smithi133 bash[22165]: cluster 2024-04-15T21:24:27.106124+0000 mgr.a (mgr.14152) 216 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:29.388 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:24:30.163 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:30 smithi187 bash[22200]: cluster 2024-04-15T21:24:29.106639+0000 mgr.a (mgr.14152) 217 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:30.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:30 smithi132 bash[21536]: cluster 2024-04-15T21:24:29.106639+0000 mgr.a (mgr.14152) 217 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:30.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:30 smithi133 bash[22165]: cluster 2024-04-15T21:24:29.106639+0000 mgr.a (mgr.14152) 217 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:31.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:31 smithi132 bash[21536]: audit 2024-04-15T21:24:30.332583+0000 mon.a (mon.0) 626 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:31.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:31 smithi132 bash[21536]: audit 2024-04-15T21:24:30.337175+0000 mon.a (mon.0) 627 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:31.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:31 smithi132 bash[21536]: audit 2024-04-15T21:24:30.341807+0000 mon.a (mon.0) 628 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:31.643 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:31 smithi187 bash[22200]: audit 2024-04-15T21:24:30.332583+0000 mon.a (mon.0) 626 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:31.643 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:31 smithi187 bash[22200]: audit 2024-04-15T21:24:30.337175+0000 mon.a (mon.0) 627 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:31.643 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:31 smithi187 bash[22200]: audit 2024-04-15T21:24:30.341807+0000 mon.a (mon.0) 628 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:31.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:31 smithi133 bash[22165]: audit 2024-04-15T21:24:30.332583+0000 mon.a (mon.0) 626 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:31.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:31 smithi133 bash[22165]: audit 2024-04-15T21:24:30.337175+0000 mon.a (mon.0) 627 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:31.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:31 smithi133 bash[22165]: audit 2024-04-15T21:24:30.341807+0000 mon.a (mon.0) 628 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:31.891 INFO:teuthology.orchestra.run.smithi132.stdout:pg_num: 1 2024-04-15T21:24:32.505 INFO:tasks.cephadm:Setting up client nodes... 2024-04-15T21:24:32.506 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-04-15T21:24:32.506 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-04-15T21:24:32.506 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph mgr dump --format=json 2024-04-15T21:24:32.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:32 smithi132 bash[21536]: cluster 2024-04-15T21:24:31.107180+0000 mgr.a (mgr.14152) 218 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:32.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:32 smithi132 bash[21536]: audit 2024-04-15T21:24:31.892781+0000 mon.a (mon.0) 629 : audit [DBG] from='client.? 172.21.15.132:0/2571807789' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-15T21:24:32.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:32 smithi187 bash[22200]: cluster 2024-04-15T21:24:31.107180+0000 mgr.a (mgr.14152) 218 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:32.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:32 smithi187 bash[22200]: audit 2024-04-15T21:24:31.892781+0000 mon.a (mon.0) 629 : audit [DBG] from='client.? 172.21.15.132:0/2571807789' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-15T21:24:32.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:32 smithi133 bash[22165]: cluster 2024-04-15T21:24:31.107180+0000 mgr.a (mgr.14152) 218 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:32.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:32 smithi133 bash[22165]: audit 2024-04-15T21:24:31.892781+0000 mon.a (mon.0) 629 : audit [DBG] from='client.? 172.21.15.132:0/2571807789' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-15T21:24:34.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:34 smithi132 bash[21536]: cluster 2024-04-15T21:24:33.107737+0000 mgr.a (mgr.14152) 219 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:34.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:34 smithi187 bash[22200]: cluster 2024-04-15T21:24:33.107737+0000 mgr.a (mgr.14152) 219 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:34.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:34 smithi133 bash[22165]: cluster 2024-04-15T21:24:33.107737+0000 mgr.a (mgr.14152) 219 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:36.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:36 smithi132 bash[21536]: cluster 2024-04-15T21:24:35.108375+0000 mgr.a (mgr.14152) 220 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:36.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:36 smithi187 bash[22200]: cluster 2024-04-15T21:24:35.108375+0000 mgr.a (mgr.14152) 220 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:36.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:36 smithi133 bash[22165]: cluster 2024-04-15T21:24:35.108375+0000 mgr.a (mgr.14152) 220 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:37.226 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:24:38.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:38 smithi132 bash[21536]: cluster 2024-04-15T21:24:37.109068+0000 mgr.a (mgr.14152) 221 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:38.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:38 smithi132 bash[21536]: audit 2024-04-15T21:24:37.652284+0000 mon.a (mon.0) 630 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:38.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:38 smithi132 bash[21536]: audit 2024-04-15T21:24:37.660960+0000 mon.a (mon.0) 631 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:38.628 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:38 smithi132 bash[21536]: audit 2024-04-15T21:24:37.671615+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:38.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:38 smithi187 bash[22200]: cluster 2024-04-15T21:24:37.109068+0000 mgr.a (mgr.14152) 221 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:38.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:38 smithi187 bash[22200]: audit 2024-04-15T21:24:37.652284+0000 mon.a (mon.0) 630 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:38.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:38 smithi187 bash[22200]: audit 2024-04-15T21:24:37.660960+0000 mon.a (mon.0) 631 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:38.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:38 smithi187 bash[22200]: audit 2024-04-15T21:24:37.671615+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:38.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:38 smithi133 bash[22165]: cluster 2024-04-15T21:24:37.109068+0000 mgr.a (mgr.14152) 221 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:38.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:38 smithi133 bash[22165]: audit 2024-04-15T21:24:37.652284+0000 mon.a (mon.0) 630 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:38.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:38 smithi133 bash[22165]: audit 2024-04-15T21:24:37.660960+0000 mon.a (mon.0) 631 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:38.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:38 smithi133 bash[22165]: audit 2024-04-15T21:24:37.671615+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:39.924 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:24:40.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:40 smithi133 bash[22165]: cluster 2024-04-15T21:24:39.109686+0000 mgr.a (mgr.14152) 222 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:40.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:40 smithi133 bash[22165]: audit 2024-04-15T21:24:39.915485+0000 mon.a (mon.0) 633 : audit [DBG] from='client.? 172.21.15.132:0/1769455605' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-15T21:24:40.556 INFO:teuthology.orchestra.run.smithi132.stdout:{"epoch":15,"flags":0,"active_gid":14152,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.132:6800","nonce":2959894951},{"type":"v1","addr":"172.21.15.132:6801","nonce":2959894951}]},"active_addr":"172.21.15.132:6801/2959894951","active_change":"2024-04-15T21:19:27.520322+0000","active_mgr_features":4540701547738038271,"available":true,"standbys":[{"gid":24110,"name":"b","mgr_features":4540701547738038271,"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","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":[]}}},{"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":[]},"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.25.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:9.4.12","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:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Loki 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.5.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.1","min":"","max":"","enum_allowed":[],"desc":"Nvme-of 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.43.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:2.4.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_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":[]},"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":[]},"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":[]},"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":[]},"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":[]},"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":[]},"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":[]}}},{"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":[]},"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]},"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]},"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":[]}}},{"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":[]},"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":[]},"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":[]},"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":[]}}},{"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":[]}}},{"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":[]},"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":[]},"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":"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]},"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":[]}}},{"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":[]}}},{"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":[]},"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","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":[]}}},{"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":[]},"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.25.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:9.4.12","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:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Loki 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.5.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.1","min":"","max":"","enum_allowed":[],"desc":"Nvme-of 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.43.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:2.4.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_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":[]},"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":[]},"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":[]},"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":[]},"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":[]},"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":[]},"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":[]}}},{"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":[]},"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]},"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]},"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":[]}}},{"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":[]},"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":[]},"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":[]},"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":[]}}},{"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":[]}}},{"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":[]},"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":[]},"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":"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]},"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":[]}}},{"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":[]}}},{"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":[]},"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.132: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.132:0","nonce":3644602923}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.132:0","nonce":3605693349}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.132:0","nonce":938656625}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.132:0","nonce":888098432}]}]} 2024-04-15T21:24:40.563 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-04-15T21:24:40.563 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-04-15T21:24:40.563 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph osd dump --format=json 2024-04-15T21:24:40.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:40 smithi132 bash[21536]: cluster 2024-04-15T21:24:39.109686+0000 mgr.a (mgr.14152) 222 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:40.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:40 smithi132 bash[21536]: audit 2024-04-15T21:24:39.915485+0000 mon.a (mon.0) 633 : audit [DBG] from='client.? 172.21.15.132:0/1769455605' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-15T21:24:40.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:40 smithi187 bash[22200]: cluster 2024-04-15T21:24:39.109686+0000 mgr.a (mgr.14152) 222 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:40.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:40 smithi187 bash[22200]: audit 2024-04-15T21:24:39.915485+0000 mon.a (mon.0) 633 : audit [DBG] from='client.? 172.21.15.132:0/1769455605' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-15T21:24:42.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:42 smithi132 bash[21536]: cluster 2024-04-15T21:24:41.110249+0000 mgr.a (mgr.14152) 223 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:42.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:42 smithi187 bash[22200]: cluster 2024-04-15T21:24:41.110249+0000 mgr.a (mgr.14152) 223 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:42.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:42 smithi133 bash[22165]: cluster 2024-04-15T21:24:41.110249+0000 mgr.a (mgr.14152) 223 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:44.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:44 smithi132 bash[21536]: cluster 2024-04-15T21:24:43.110768+0000 mgr.a (mgr.14152) 224 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:44.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:44 smithi187 bash[22200]: cluster 2024-04-15T21:24:43.110768+0000 mgr.a (mgr.14152) 224 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:44.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:44 smithi133 bash[22165]: cluster 2024-04-15T21:24:43.110768+0000 mgr.a (mgr.14152) 224 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:45.785 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:24:46.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:46 smithi132 bash[21536]: cluster 2024-04-15T21:24:45.111286+0000 mgr.a (mgr.14152) 225 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:46.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:46 smithi132 bash[21536]: audit 2024-04-15T21:24:45.811498+0000 mon.a (mon.0) 634 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:46.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:46 smithi132 bash[21536]: audit 2024-04-15T21:24:45.816090+0000 mon.a (mon.0) 635 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:46.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:46 smithi132 bash[21536]: audit 2024-04-15T21:24:45.822149+0000 mon.a (mon.0) 636 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:46.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:46 smithi187 bash[22200]: cluster 2024-04-15T21:24:45.111286+0000 mgr.a (mgr.14152) 225 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:46.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:46 smithi187 bash[22200]: audit 2024-04-15T21:24:45.811498+0000 mon.a (mon.0) 634 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:46.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:46 smithi187 bash[22200]: audit 2024-04-15T21:24:45.816090+0000 mon.a (mon.0) 635 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:46.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:46 smithi187 bash[22200]: audit 2024-04-15T21:24:45.822149+0000 mon.a (mon.0) 636 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:46.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:46 smithi133 bash[22165]: cluster 2024-04-15T21:24:45.111286+0000 mgr.a (mgr.14152) 225 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:46.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:46 smithi133 bash[22165]: audit 2024-04-15T21:24:45.811498+0000 mon.a (mon.0) 634 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:46.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:46 smithi133 bash[22165]: audit 2024-04-15T21:24:45.816090+0000 mon.a (mon.0) 635 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:46.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:46 smithi133 bash[22165]: audit 2024-04-15T21:24:45.822149+0000 mon.a (mon.0) 636 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:48.402 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:24:48.402 INFO:teuthology.orchestra.run.smithi132.stdout:{"epoch":21,"fsid":"7ac1dc10-fb6d-11ee-bc8f-c7b262605968","created":"2024-04-15T21:18:21.414940+0000","modified":"2024-04-15T21:24:10.093569+0000","last_up_change":"2024-04-15T21:24:07.056769+0000","last_in_change":"2024-04-15T21:23:38.287479+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":8,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":3,"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-04-15T21:24:07.755158+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,"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":3,"score_stable":3,"optimal_score":1,"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":"89f3f965-2a55-4bf6-ba1b-7227ef0970ac","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.132:6802","nonce":1969507637},{"type":"v1","addr":"172.21.15.132:6803","nonce":1969507637}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.132:6804","nonce":1969507637},{"type":"v1","addr":"172.21.15.132:6805","nonce":1969507637}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.132:6808","nonce":1969507637},{"type":"v1","addr":"172.21.15.132:6809","nonce":1969507637}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.132:6806","nonce":1969507637},{"type":"v1","addr":"172.21.15.132:6807","nonce":1969507637}]},"public_addr":"172.21.15.132:6803/1969507637","cluster_addr":"172.21.15.132:6805/1969507637","heartbeat_back_addr":"172.21.15.132:6809/1969507637","heartbeat_front_addr":"172.21.15.132:6807/1969507637","state":["exists","up"]},{"osd":1,"uuid":"3b4948a3-764e-477d-9d6d-5e7b757c4bbe","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.133:6800","nonce":3183802104},{"type":"v1","addr":"172.21.15.133:6801","nonce":3183802104}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.133:6802","nonce":3183802104},{"type":"v1","addr":"172.21.15.133:6803","nonce":3183802104}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.133:6806","nonce":3183802104},{"type":"v1","addr":"172.21.15.133:6807","nonce":3183802104}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.133:6804","nonce":3183802104},{"type":"v1","addr":"172.21.15.133:6805","nonce":3183802104}]},"public_addr":"172.21.15.133:6801/3183802104","cluster_addr":"172.21.15.133:6803/3183802104","heartbeat_back_addr":"172.21.15.133:6807/3183802104","heartbeat_front_addr":"172.21.15.133:6805/3183802104","state":["exists","up"]},{"osd":2,"uuid":"b35bd764-3dd8-4e5b-87e7-3e713731b835","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6800","nonce":2835711690},{"type":"v1","addr":"172.21.15.187:6801","nonce":2835711690}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6802","nonce":2835711690},{"type":"v1","addr":"172.21.15.187:6803","nonce":2835711690}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6806","nonce":2835711690},{"type":"v1","addr":"172.21.15.187:6807","nonce":2835711690}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6804","nonce":2835711690},{"type":"v1","addr":"172.21.15.187:6805","nonce":2835711690}]},"public_addr":"172.21.15.187:6801/2835711690","cluster_addr":"172.21.15.187:6803/2835711690","heartbeat_back_addr":"172.21.15.187:6807/2835711690","heartbeat_front_addr":"172.21.15.187:6805/2835711690","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:22:21.294760+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:23:15.218974+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:24:05.563869+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.132:6800/2687140709":"2024-04-16T21:19:27.520096+0000","172.21.15.132:0/3577555026":"2024-04-16T21:18:53.007691+0000","172.21.15.132:6801/2687140709":"2024-04-16T21:19:27.520096+0000","172.21.15.132:0/3669192999":"2024-04-16T21:18:53.007691+0000","172.21.15.132:0/1434260312":"2024-04-16T21:18:53.007691+0000","172.21.15.132:0/1415220719":"2024-04-16T21:19:27.520096+0000","172.21.15.132:6800/3422350282":"2024-04-16T21:18:53.007691+0000","172.21.15.132:6801/3422350282":"2024-04-16T21:18:53.007691+0000","172.21.15.132:0/873655167":"2024-04-16T21:19:27.520096+0000","172.21.15.132:0/790670113":"2024-04-16T21:19:27.520096+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-04-15T21:24:48.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:48 smithi132 bash[21536]: cluster 2024-04-15T21:24:47.111948+0000 mgr.a (mgr.14152) 226 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:48.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:48 smithi187 bash[22200]: cluster 2024-04-15T21:24:47.111948+0000 mgr.a (mgr.14152) 226 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:48.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:48 smithi133 bash[22165]: cluster 2024-04-15T21:24:47.111948+0000 mgr.a (mgr.14152) 226 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:48.993 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-04-15T21:24:48.993 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph osd dump --format=json 2024-04-15T21:24:49.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:49 smithi132 bash[21536]: audit 2024-04-15T21:24:48.403700+0000 mon.a (mon.0) 637 : audit [DBG] from='client.? 172.21.15.132:0/1024306424' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T21:24:49.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:49 smithi187 bash[22200]: audit 2024-04-15T21:24:48.403700+0000 mon.a (mon.0) 637 : audit [DBG] from='client.? 172.21.15.132:0/1024306424' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T21:24:49.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:49 smithi133 bash[22165]: audit 2024-04-15T21:24:48.403700+0000 mon.a (mon.0) 637 : audit [DBG] from='client.? 172.21.15.132:0/1024306424' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T21:24:50.646 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:50 smithi187 bash[22200]: cluster 2024-04-15T21:24:49.112616+0000 mgr.a (mgr.14152) 227 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:50.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:50 smithi133 bash[22165]: cluster 2024-04-15T21:24:49.112616+0000 mgr.a (mgr.14152) 227 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:50.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:50 smithi132 bash[21536]: cluster 2024-04-15T21:24:49.112616+0000 mgr.a (mgr.14152) 227 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:51.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:51 smithi133 bash[22165]: audit 2024-04-15T21:24:50.474608+0000 mon.a (mon.0) 638 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:51.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:51 smithi133 bash[22165]: audit 2024-04-15T21:24:50.480194+0000 mon.a (mon.0) 639 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:51.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:51 smithi133 bash[22165]: audit 2024-04-15T21:24:50.486532+0000 mon.a (mon.0) 640 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:51.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:51 smithi133 bash[22165]: cluster 2024-04-15T21:24:51.113184+0000 mgr.a (mgr.14152) 228 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:51.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:51 smithi132 bash[21536]: audit 2024-04-15T21:24:50.474608+0000 mon.a (mon.0) 638 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:51.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:51 smithi132 bash[21536]: audit 2024-04-15T21:24:50.480194+0000 mon.a (mon.0) 639 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:51.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:51 smithi132 bash[21536]: audit 2024-04-15T21:24:50.486532+0000 mon.a (mon.0) 640 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:51.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:51 smithi132 bash[21536]: cluster 2024-04-15T21:24:51.113184+0000 mgr.a (mgr.14152) 228 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:51.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:51 smithi187 bash[22200]: audit 2024-04-15T21:24:50.474608+0000 mon.a (mon.0) 638 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:51.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:51 smithi187 bash[22200]: audit 2024-04-15T21:24:50.480194+0000 mon.a (mon.0) 639 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:51.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:51 smithi187 bash[22200]: audit 2024-04-15T21:24:50.486532+0000 mon.a (mon.0) 640 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:51.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:51 smithi187 bash[22200]: cluster 2024-04-15T21:24:51.113184+0000 mgr.a (mgr.14152) 228 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:53.491 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:24:54.439 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:54 smithi132 bash[21536]: cluster 2024-04-15T21:24:53.113683+0000 mgr.a (mgr.14152) 229 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:54.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:54 smithi133 bash[22165]: cluster 2024-04-15T21:24:53.113683+0000 mgr.a (mgr.14152) 229 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:54.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:54 smithi187 bash[22200]: cluster 2024-04-15T21:24:53.113683+0000 mgr.a (mgr.14152) 229 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:56.158 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:24:56.158 INFO:teuthology.orchestra.run.smithi132.stdout:{"epoch":21,"fsid":"7ac1dc10-fb6d-11ee-bc8f-c7b262605968","created":"2024-04-15T21:18:21.414940+0000","modified":"2024-04-15T21:24:10.093569+0000","last_up_change":"2024-04-15T21:24:07.056769+0000","last_in_change":"2024-04-15T21:23:38.287479+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":8,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":3,"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-04-15T21:24:07.755158+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,"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":3,"score_stable":3,"optimal_score":1,"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":"89f3f965-2a55-4bf6-ba1b-7227ef0970ac","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.132:6802","nonce":1969507637},{"type":"v1","addr":"172.21.15.132:6803","nonce":1969507637}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.132:6804","nonce":1969507637},{"type":"v1","addr":"172.21.15.132:6805","nonce":1969507637}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.132:6808","nonce":1969507637},{"type":"v1","addr":"172.21.15.132:6809","nonce":1969507637}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.132:6806","nonce":1969507637},{"type":"v1","addr":"172.21.15.132:6807","nonce":1969507637}]},"public_addr":"172.21.15.132:6803/1969507637","cluster_addr":"172.21.15.132:6805/1969507637","heartbeat_back_addr":"172.21.15.132:6809/1969507637","heartbeat_front_addr":"172.21.15.132:6807/1969507637","state":["exists","up"]},{"osd":1,"uuid":"3b4948a3-764e-477d-9d6d-5e7b757c4bbe","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.133:6800","nonce":3183802104},{"type":"v1","addr":"172.21.15.133:6801","nonce":3183802104}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.133:6802","nonce":3183802104},{"type":"v1","addr":"172.21.15.133:6803","nonce":3183802104}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.133:6806","nonce":3183802104},{"type":"v1","addr":"172.21.15.133:6807","nonce":3183802104}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.133:6804","nonce":3183802104},{"type":"v1","addr":"172.21.15.133:6805","nonce":3183802104}]},"public_addr":"172.21.15.133:6801/3183802104","cluster_addr":"172.21.15.133:6803/3183802104","heartbeat_back_addr":"172.21.15.133:6807/3183802104","heartbeat_front_addr":"172.21.15.133:6805/3183802104","state":["exists","up"]},{"osd":2,"uuid":"b35bd764-3dd8-4e5b-87e7-3e713731b835","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6800","nonce":2835711690},{"type":"v1","addr":"172.21.15.187:6801","nonce":2835711690}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6802","nonce":2835711690},{"type":"v1","addr":"172.21.15.187:6803","nonce":2835711690}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6806","nonce":2835711690},{"type":"v1","addr":"172.21.15.187:6807","nonce":2835711690}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:6804","nonce":2835711690},{"type":"v1","addr":"172.21.15.187:6805","nonce":2835711690}]},"public_addr":"172.21.15.187:6801/2835711690","cluster_addr":"172.21.15.187:6803/2835711690","heartbeat_back_addr":"172.21.15.187:6807/2835711690","heartbeat_front_addr":"172.21.15.187:6805/2835711690","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:22:21.294760+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:23:15.218974+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:24:05.563869+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.132:6800/2687140709":"2024-04-16T21:19:27.520096+0000","172.21.15.132:0/3577555026":"2024-04-16T21:18:53.007691+0000","172.21.15.132:6801/2687140709":"2024-04-16T21:19:27.520096+0000","172.21.15.132:0/3669192999":"2024-04-16T21:18:53.007691+0000","172.21.15.132:0/1434260312":"2024-04-16T21:18:53.007691+0000","172.21.15.132:0/1415220719":"2024-04-16T21:19:27.520096+0000","172.21.15.132:6800/3422350282":"2024-04-16T21:18:53.007691+0000","172.21.15.132:6801/3422350282":"2024-04-16T21:18:53.007691+0000","172.21.15.132:0/873655167":"2024-04-16T21:19:27.520096+0000","172.21.15.132:0/790670113":"2024-04-16T21:19:27.520096+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-04-15T21:24:56.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:56 smithi187 bash[22200]: cluster 2024-04-15T21:24:55.114102+0000 mgr.a (mgr.14152) 230 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:56.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:56 smithi187 bash[22200]: audit 2024-04-15T21:24:56.159599+0000 mon.a (mon.0) 641 : audit [DBG] from='client.? 172.21.15.132:0/3984163590' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T21:24:56.499 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:56 smithi133 bash[22165]: cluster 2024-04-15T21:24:55.114102+0000 mgr.a (mgr.14152) 230 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:56.499 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:56 smithi133 bash[22165]: audit 2024-04-15T21:24:56.159599+0000 mon.a (mon.0) 641 : audit [DBG] from='client.? 172.21.15.132:0/3984163590' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T21:24:56.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:56 smithi132 bash[21536]: cluster 2024-04-15T21:24:55.114102+0000 mgr.a (mgr.14152) 230 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:56.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:56 smithi132 bash[21536]: audit 2024-04-15T21:24:56.159599+0000 mon.a (mon.0) 641 : audit [DBG] from='client.? 172.21.15.132:0/3984163590' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T21:24:56.806 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-04-15T21:24:56.806 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-04-15T21:24:56.807 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-04-15T21:24:58.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:58 smithi133 bash[22165]: cluster 2024-04-15T21:24:57.114584+0000 mgr.a (mgr.14152) 231 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:58.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:58 smithi133 bash[22165]: audit 2024-04-15T21:24:57.875385+0000 mon.a (mon.0) 642 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:58.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:58 smithi133 bash[22165]: audit 2024-04-15T21:24:57.883497+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:58.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:24:58 smithi133 bash[22165]: audit 2024-04-15T21:24:57.893751+0000 mon.a (mon.0) 644 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:58.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:58 smithi132 bash[21536]: cluster 2024-04-15T21:24:57.114584+0000 mgr.a (mgr.14152) 231 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:58.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:58 smithi132 bash[21536]: audit 2024-04-15T21:24:57.875385+0000 mon.a (mon.0) 642 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:58.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:58 smithi132 bash[21536]: audit 2024-04-15T21:24:57.883497+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:58.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:24:58 smithi132 bash[21536]: audit 2024-04-15T21:24:57.893751+0000 mon.a (mon.0) 644 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:58.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:58 smithi187 bash[22200]: cluster 2024-04-15T21:24:57.114584+0000 mgr.a (mgr.14152) 231 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:24:58.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:58 smithi187 bash[22200]: audit 2024-04-15T21:24:57.875385+0000 mon.a (mon.0) 642 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:58.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:58 smithi187 bash[22200]: audit 2024-04-15T21:24:57.883497+0000 mon.a (mon.0) 643 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:24:58.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:24:58 smithi187 bash[22200]: audit 2024-04-15T21:24:57.893751+0000 mon.a (mon.0) 644 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:00.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:00 smithi133 bash[22165]: cluster 2024-04-15T21:24:59.115140+0000 mgr.a (mgr.14152) 232 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:00.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:00 smithi132 bash[21536]: cluster 2024-04-15T21:24:59.115140+0000 mgr.a (mgr.14152) 232 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:00.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:00 smithi187 bash[22200]: cluster 2024-04-15T21:24:59.115140+0000 mgr.a (mgr.14152) 232 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:01.526 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:25:01.527 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:25:01.527 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:25:02.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:02 smithi133 bash[22165]: cluster 2024-04-15T21:25:01.115683+0000 mgr.a (mgr.14152) 233 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:02.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:02 smithi132 bash[21536]: cluster 2024-04-15T21:25:01.115683+0000 mgr.a (mgr.14152) 233 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:02.708 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:02 smithi187 bash[22200]: cluster 2024-04-15T21:25:01.115683+0000 mgr.a (mgr.14152) 233 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:04.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:04 smithi132 bash[21536]: cluster 2024-04-15T21:25:03.116208+0000 mgr.a (mgr.14152) 234 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:04.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:04 smithi133 bash[22165]: cluster 2024-04-15T21:25:03.116208+0000 mgr.a (mgr.14152) 234 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:04.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:04 smithi187 bash[22200]: cluster 2024-04-15T21:25:03.116208+0000 mgr.a (mgr.14152) 234 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:06.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:06 smithi133 bash[22165]: cluster 2024-04-15T21:25:05.116768+0000 mgr.a (mgr.14152) 235 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:06.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:06 smithi133 bash[22165]: audit 2024-04-15T21:25:05.996823+0000 mon.a (mon.0) 645 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:06.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:06 smithi133 bash[22165]: audit 2024-04-15T21:25:06.007395+0000 mon.a (mon.0) 646 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:06.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:06 smithi133 bash[22165]: audit 2024-04-15T21:25:06.019138+0000 mon.a (mon.0) 647 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:06.544 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:06 smithi132 bash[21536]: cluster 2024-04-15T21:25:05.116768+0000 mgr.a (mgr.14152) 235 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:06.544 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:06 smithi132 bash[21536]: audit 2024-04-15T21:25:05.996823+0000 mon.a (mon.0) 645 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:06.544 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:06 smithi132 bash[21536]: audit 2024-04-15T21:25:06.007395+0000 mon.a (mon.0) 646 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:06.544 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:06 smithi132 bash[21536]: audit 2024-04-15T21:25:06.019138+0000 mon.a (mon.0) 647 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:06.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:06 smithi187 bash[22200]: cluster 2024-04-15T21:25:05.116768+0000 mgr.a (mgr.14152) 235 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:06.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:06 smithi187 bash[22200]: audit 2024-04-15T21:25:05.996823+0000 mon.a (mon.0) 645 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:06.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:06 smithi187 bash[22200]: audit 2024-04-15T21:25:06.007395+0000 mon.a (mon.0) 646 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:06.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:06 smithi187 bash[22200]: audit 2024-04-15T21:25:06.019138+0000 mon.a (mon.0) 647 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:08.582 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:08 smithi132 bash[21536]: cluster 2024-04-15T21:25:07.117188+0000 mgr.a (mgr.14152) 236 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:08.583 INFO:teuthology.orchestra.run.smithi132.stdout:55834574873 2024-04-15T21:25:08.584 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-04-15T21:25:08.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:08 smithi187 bash[22200]: cluster 2024-04-15T21:25:07.117188+0000 mgr.a (mgr.14152) 236 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:08.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:08 smithi133 bash[22165]: cluster 2024-04-15T21:25:07.117188+0000 mgr.a (mgr.14152) 236 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:09.541 INFO:teuthology.orchestra.run.smithi132.stdout:77309411343 2024-04-15T21:25:09.542 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-04-15T21:25:09.587 INFO:teuthology.orchestra.run.smithi132.stdout:34359738403 2024-04-15T21:25:09.588 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-04-15T21:25:10.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:10 smithi132 bash[21536]: cluster 2024-04-15T21:25:09.117915+0000 mgr.a (mgr.14152) 237 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:10.638 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:10 smithi187 bash[22200]: cluster 2024-04-15T21:25:09.117915+0000 mgr.a (mgr.14152) 237 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:10.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:10 smithi133 bash[22165]: cluster 2024-04-15T21:25:09.117915+0000 mgr.a (mgr.14152) 237 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:11.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:11 smithi187 bash[22200]: audit 2024-04-15T21:25:10.654707+0000 mon.a (mon.0) 648 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:11.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:11 smithi187 bash[22200]: audit 2024-04-15T21:25:10.660576+0000 mon.a (mon.0) 649 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:11.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:11 smithi187 bash[22200]: audit 2024-04-15T21:25:10.676438+0000 mon.a (mon.0) 650 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:11.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:11 smithi187 bash[22200]: cluster 2024-04-15T21:25:11.118370+0000 mgr.a (mgr.14152) 238 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:11.995 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:11 smithi133 bash[22165]: audit 2024-04-15T21:25:10.654707+0000 mon.a (mon.0) 648 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:11.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:11 smithi133 bash[22165]: audit 2024-04-15T21:25:10.660576+0000 mon.a (mon.0) 649 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:11.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:11 smithi133 bash[22165]: audit 2024-04-15T21:25:10.676438+0000 mon.a (mon.0) 650 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:11.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:11 smithi133 bash[22165]: cluster 2024-04-15T21:25:11.118370+0000 mgr.a (mgr.14152) 238 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:12.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:11 smithi132 bash[21536]: audit 2024-04-15T21:25:10.654707+0000 mon.a (mon.0) 648 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:12.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:11 smithi132 bash[21536]: audit 2024-04-15T21:25:10.660576+0000 mon.a (mon.0) 649 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:12.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:11 smithi132 bash[21536]: audit 2024-04-15T21:25:10.676438+0000 mon.a (mon.0) 650 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:12.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:11 smithi132 bash[21536]: cluster 2024-04-15T21:25:11.118370+0000 mgr.a (mgr.14152) 238 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:13.079 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:25:14.086 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:25:14.086 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:25:14.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:14 smithi132 bash[21536]: cluster 2024-04-15T21:25:13.118869+0000 mgr.a (mgr.14152) 239 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:14.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:14 smithi133 bash[22165]: cluster 2024-04-15T21:25:13.118869+0000 mgr.a (mgr.14152) 239 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:14.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:14 smithi187 bash[22200]: cluster 2024-04-15T21:25:13.118869+0000 mgr.a (mgr.14152) 239 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:16.136 INFO:teuthology.orchestra.run.smithi132.stdout:55834574875 2024-04-15T21:25:16.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:16 smithi133 bash[22165]: cluster 2024-04-15T21:25:15.119476+0000 mgr.a (mgr.14152) 240 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:16.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:16 smithi133 bash[22165]: audit 2024-04-15T21:25:16.138828+0000 mon.a (mon.0) 651 : audit [DBG] from='client.? 172.21.15.132:0/228474755' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-15T21:25:16.560 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:16 smithi132 bash[21536]: cluster 2024-04-15T21:25:15.119476+0000 mgr.a (mgr.14152) 240 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:16.560 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:16 smithi132 bash[21536]: audit 2024-04-15T21:25:16.138828+0000 mon.a (mon.0) 651 : audit [DBG] from='client.? 172.21.15.132:0/228474755' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-15T21:25:16.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:16 smithi187 bash[22200]: cluster 2024-04-15T21:25:15.119476+0000 mgr.a (mgr.14152) 240 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:16.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:16 smithi187 bash[22200]: audit 2024-04-15T21:25:16.138828+0000 mon.a (mon.0) 651 : audit [DBG] from='client.? 172.21.15.132:0/228474755' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-15T21:25:17.566 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574873 got 55834574875 for osd.1 2024-04-15T21:25:17.566 DEBUG:teuthology.parallel:result is None 2024-04-15T21:25:18.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:18 smithi187 bash[22200]: cluster 2024-04-15T21:25:17.119920+0000 mgr.a (mgr.14152) 241 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:18.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:18 smithi187 bash[22200]: audit 2024-04-15T21:25:18.096587+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:18.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:18 smithi187 bash[22200]: audit 2024-04-15T21:25:18.105784+0000 mon.a (mon.0) 653 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:18.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:18 smithi187 bash[22200]: audit 2024-04-15T21:25:18.116208+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:18.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:18 smithi133 bash[22165]: cluster 2024-04-15T21:25:17.119920+0000 mgr.a (mgr.14152) 241 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:18.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:18 smithi133 bash[22165]: audit 2024-04-15T21:25:18.096587+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:18.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:18 smithi133 bash[22165]: audit 2024-04-15T21:25:18.105784+0000 mon.a (mon.0) 653 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:18.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:18 smithi133 bash[22165]: audit 2024-04-15T21:25:18.116208+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:18.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:18 smithi132 bash[21536]: cluster 2024-04-15T21:25:17.119920+0000 mgr.a (mgr.14152) 241 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:18.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:18 smithi132 bash[21536]: audit 2024-04-15T21:25:18.096587+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:18.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:18 smithi132 bash[21536]: audit 2024-04-15T21:25:18.105784+0000 mon.a (mon.0) 653 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:18.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:18 smithi132 bash[21536]: audit 2024-04-15T21:25:18.116208+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:18.643 INFO:teuthology.orchestra.run.smithi132.stdout:34359738405 2024-04-15T21:25:18.668 INFO:teuthology.orchestra.run.smithi132.stdout:77309411345 2024-04-15T21:25:19.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:19 smithi133 bash[22165]: audit 2024-04-15T21:25:18.645772+0000 mon.a (mon.0) 655 : audit [DBG] from='client.? 172.21.15.132:0/83733692' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-15T21:25:19.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:19 smithi133 bash[22165]: audit 2024-04-15T21:25:18.670577+0000 mon.a (mon.0) 656 : audit [DBG] from='client.? 172.21.15.132:0/3335686467' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-15T21:25:19.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:19 smithi132 bash[21536]: audit 2024-04-15T21:25:18.645772+0000 mon.a (mon.0) 655 : audit [DBG] from='client.? 172.21.15.132:0/83733692' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-15T21:25:19.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:19 smithi132 bash[21536]: audit 2024-04-15T21:25:18.670577+0000 mon.a (mon.0) 656 : audit [DBG] from='client.? 172.21.15.132:0/3335686467' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-15T21:25:19.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:19 smithi187 bash[22200]: audit 2024-04-15T21:25:18.645772+0000 mon.a (mon.0) 655 : audit [DBG] from='client.? 172.21.15.132:0/83733692' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-15T21:25:19.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:19 smithi187 bash[22200]: audit 2024-04-15T21:25:18.670577+0000 mon.a (mon.0) 656 : audit [DBG] from='client.? 172.21.15.132:0/3335686467' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-15T21:25:19.811 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411343 got 77309411345 for osd.2 2024-04-15T21:25:19.811 DEBUG:teuthology.parallel:result is None 2024-04-15T21:25:19.838 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738403 got 34359738405 for osd.0 2024-04-15T21:25:19.838 DEBUG:teuthology.parallel:result is None 2024-04-15T21:25:19.838 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-04-15T21:25:19.841 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph pg dump --format=json 2024-04-15T21:25:20.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:20 smithi133 bash[22165]: cluster 2024-04-15T21:25:19.120540+0000 mgr.a (mgr.14152) 242 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:20.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:20 smithi133 bash[22165]: audit 2024-04-15T21:25:19.214678+0000 mon.a (mon.0) 657 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:25:20.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:20 smithi133 bash[22165]: audit 2024-04-15T21:25:19.220347+0000 mon.a (mon.0) 658 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:25:20.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:20 smithi133 bash[22165]: audit 2024-04-15T21:25:19.222066+0000 mon.a (mon.0) 659 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:25:20.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:20 smithi133 bash[22165]: audit 2024-04-15T21:25:19.233807+0000 mon.a (mon.0) 660 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:20.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:20 smithi132 bash[21536]: cluster 2024-04-15T21:25:19.120540+0000 mgr.a (mgr.14152) 242 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:20.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:20 smithi132 bash[21536]: audit 2024-04-15T21:25:19.214678+0000 mon.a (mon.0) 657 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:25:20.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:20 smithi132 bash[21536]: audit 2024-04-15T21:25:19.220347+0000 mon.a (mon.0) 658 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:25:20.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:20 smithi132 bash[21536]: audit 2024-04-15T21:25:19.222066+0000 mon.a (mon.0) 659 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:25:20.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:20 smithi132 bash[21536]: audit 2024-04-15T21:25:19.233807+0000 mon.a (mon.0) 660 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:20.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:20 smithi187 bash[22200]: cluster 2024-04-15T21:25:19.120540+0000 mgr.a (mgr.14152) 242 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:20.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:20 smithi187 bash[22200]: audit 2024-04-15T21:25:19.214678+0000 mon.a (mon.0) 657 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:25:20.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:20 smithi187 bash[22200]: audit 2024-04-15T21:25:19.220347+0000 mon.a (mon.0) 658 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:25:20.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:20 smithi187 bash[22200]: audit 2024-04-15T21:25:19.222066+0000 mon.a (mon.0) 659 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:25:20.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:20 smithi187 bash[22200]: audit 2024-04-15T21:25:19.233807+0000 mon.a (mon.0) 660 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:22.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:22 smithi133 bash[22165]: cluster 2024-04-15T21:25:21.121189+0000 mgr.a (mgr.14152) 243 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:22.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:22 smithi132 bash[21536]: cluster 2024-04-15T21:25:21.121189+0000 mgr.a (mgr.14152) 243 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:22.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:22 smithi187 bash[22200]: cluster 2024-04-15T21:25:21.121189+0000 mgr.a (mgr.14152) 243 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:24.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:24 smithi133 bash[22165]: cluster 2024-04-15T21:25:23.121860+0000 mgr.a (mgr.14152) 244 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:24.588 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:25:24.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:24 smithi132 bash[21536]: cluster 2024-04-15T21:25:23.121860+0000 mgr.a (mgr.14152) 244 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:24.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:24 smithi187 bash[22200]: cluster 2024-04-15T21:25:23.121860+0000 mgr.a (mgr.14152) 244 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:26.417 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:26 smithi132 bash[21536]: cluster 2024-04-15T21:25:25.122394+0000 mgr.a (mgr.14152) 245 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:26.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:26 smithi133 bash[22165]: cluster 2024-04-15T21:25:25.122394+0000 mgr.a (mgr.14152) 245 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:26.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:26 smithi187 bash[22200]: cluster 2024-04-15T21:25:25.122394+0000 mgr.a (mgr.14152) 245 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:27.463 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:27 smithi132 bash[21536]: audit 2024-04-15T21:25:26.204287+0000 mon.a (mon.0) 661 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:27.464 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:27 smithi132 bash[21536]: audit 2024-04-15T21:25:26.219116+0000 mon.a (mon.0) 662 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:27.464 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:27 smithi132 bash[21536]: audit 2024-04-15T21:25:26.229799+0000 mon.a (mon.0) 663 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:27.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:27 smithi133 bash[22165]: audit 2024-04-15T21:25:26.204287+0000 mon.a (mon.0) 661 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:27.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:27 smithi133 bash[22165]: audit 2024-04-15T21:25:26.219116+0000 mon.a (mon.0) 662 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:27.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:27 smithi133 bash[22165]: audit 2024-04-15T21:25:26.229799+0000 mon.a (mon.0) 663 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:27.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:27 smithi187 bash[22200]: audit 2024-04-15T21:25:26.204287+0000 mon.a (mon.0) 661 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:27.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:27 smithi187 bash[22200]: audit 2024-04-15T21:25:26.219116+0000 mon.a (mon.0) 662 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:27.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:27 smithi187 bash[22200]: audit 2024-04-15T21:25:26.229799+0000 mon.a (mon.0) 663 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:27.894 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:25:27.897 INFO:teuthology.orchestra.run.smithi132.stderr:dumped all 2024-04-15T21:25:28.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:28 smithi133 bash[22165]: cluster 2024-04-15T21:25:27.122959+0000 mgr.a (mgr.14152) 246 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:28.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:28 smithi132 bash[21536]: cluster 2024-04-15T21:25:27.122959+0000 mgr.a (mgr.14152) 246 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:28.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:28 smithi187 bash[22200]: cluster 2024-04-15T21:25:27.122959+0000 mgr.a (mgr.14152) 246 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:28.741 INFO:teuthology.orchestra.run.smithi132.stdout:{"pg_ready":true,"pg_map":{"version":193,"stamp":"2024-04-15T21:25:27.122717+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":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"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":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":3,"num_per_pool_osds":3,"num_per_pool_omap_osds":3,"kb":281235456,"kb_used":89360,"kb_used_data":2268,"kb_used_omap":4,"kb_used_meta":85179,"kb_avail":281146096,"statfs":{"total":287985106944,"available":287893602304,"internally_reserved":0,"allocated":2322432,"data_stored":1935606,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":4785,"internal_metadata":87223631},"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.003519"},"pg_stats":[{"pgid":"1.0","version":"20'137","reported_seq":186,"reported_epoch":21,"state":"active+clean","last_fresh":"2024-04-15T21:24:10.107835+0000","last_change":"2024-04-15T21:24:09.091864+0000","last_active":"2024-04-15T21:24:10.107835+0000","last_peered":"2024-04-15T21:24:10.107835+0000","last_clean":"2024-04-15T21:24:10.107835+0000","last_became_active":"2024-04-15T21:24:09.091285+0000","last_became_peered":"2024-04-15T21:24:09.091285+0000","last_unstale":"2024-04-15T21:24:10.107835+0000","last_undegraded":"2024-04-15T21:24:10.107835+0000","last_fullsized":"2024-04-15T21:24:10.107835+0000","mapping_epoch":19,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":20,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-04-15T21:24:08.070477+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-04-15T21:24:08.070477+0000","last_clean_scrub_stamp":"2024-04-15T21:24:08.070477+0000","objects_scrubbed":0,"log_size":137,"log_dups_size":0,"ondisk_log_size":137,"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-04-17T02:30:16.639472+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":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"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},"up":[1,2,0],"acting":[1,2,0],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":1,"acting_primary":1,"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":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"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":1781760,"data_stored":1771104,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":3}],"osd_stats":[{"osd":2,"up_from":18,"seq":77309411347,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28400,"kb_used_data":756,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93716752,"statfs":{"total":95995035648,"available":95965954048,"internally_reserved":0,"allocated":774144,"data_stored":645202,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1],"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":34359738407,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32560,"kb_used_data":756,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93712592,"statfs":{"total":95995035648,"available":95961694208,"internally_reserved":0,"allocated":774144,"data_stored":645202,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2],"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":55834574877,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28400,"kb_used_data":756,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93716752,"statfs":{"total":95995035648,"available":95965954048,"internally_reserved":0,"allocated":774144,"data_stored":645202,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,2],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-04-15T21:25:28.742 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph pg dump --format=json 2024-04-15T21:25:29.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:29 smithi133 bash[22165]: audit 2024-04-15T21:25:27.895979+0000 mgr.a (mgr.14152) 247 : audit [DBG] from='client.14343 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:25:29.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:29 smithi132 bash[21536]: audit 2024-04-15T21:25:27.895979+0000 mgr.a (mgr.14152) 247 : audit [DBG] from='client.14343 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:25:29.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:29 smithi187 bash[22200]: audit 2024-04-15T21:25:27.895979+0000 mgr.a (mgr.14152) 247 : audit [DBG] from='client.14343 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:25:30.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:30 smithi133 bash[22165]: cluster 2024-04-15T21:25:29.123519+0000 mgr.a (mgr.14152) 248 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:30.558 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:30 smithi187 bash[22200]: cluster 2024-04-15T21:25:29.123519+0000 mgr.a (mgr.14152) 248 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:30.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:30 smithi132 bash[21536]: cluster 2024-04-15T21:25:29.123519+0000 mgr.a (mgr.14152) 248 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:32.129 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:31 smithi132 bash[21536]: audit 2024-04-15T21:25:30.807117+0000 mon.a (mon.0) 664 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:32.130 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:31 smithi132 bash[21536]: audit 2024-04-15T21:25:30.812737+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:32.130 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:31 smithi132 bash[21536]: audit 2024-04-15T21:25:30.818031+0000 mon.a (mon.0) 666 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:32.130 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:31 smithi132 bash[21536]: cluster 2024-04-15T21:25:31.124033+0000 mgr.a (mgr.14152) 249 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:32.163 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:31 smithi187 bash[22200]: audit 2024-04-15T21:25:30.807117+0000 mon.a (mon.0) 664 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:32.163 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:31 smithi187 bash[22200]: audit 2024-04-15T21:25:30.812737+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:32.163 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:31 smithi187 bash[22200]: audit 2024-04-15T21:25:30.818031+0000 mon.a (mon.0) 666 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:32.163 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:31 smithi187 bash[22200]: cluster 2024-04-15T21:25:31.124033+0000 mgr.a (mgr.14152) 249 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:32.245 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:31 smithi133 bash[22165]: audit 2024-04-15T21:25:30.807117+0000 mon.a (mon.0) 664 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:32.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:31 smithi133 bash[22165]: audit 2024-04-15T21:25:30.812737+0000 mon.a (mon.0) 665 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:32.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:31 smithi133 bash[22165]: audit 2024-04-15T21:25:30.818031+0000 mon.a (mon.0) 666 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:32.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:31 smithi133 bash[22165]: cluster 2024-04-15T21:25:31.124033+0000 mgr.a (mgr.14152) 249 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:32.662 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:25:34.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:34 smithi133 bash[22165]: cluster 2024-04-15T21:25:33.124568+0000 mgr.a (mgr.14152) 250 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:34.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:34 smithi132 bash[21536]: cluster 2024-04-15T21:25:33.124568+0000 mgr.a (mgr.14152) 250 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:34.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:34 smithi187 bash[22200]: cluster 2024-04-15T21:25:33.124568+0000 mgr.a (mgr.14152) 250 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:35.214 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:25:35.217 INFO:teuthology.orchestra.run.smithi132.stderr:dumped all 2024-04-15T21:25:35.887 INFO:teuthology.orchestra.run.smithi132.stdout:{"pg_ready":true,"pg_map":{"version":197,"stamp":"2024-04-15T21:25:35.124845+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":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"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":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":3,"num_per_pool_osds":3,"num_per_pool_omap_osds":3,"kb":281235456,"kb_used":89360,"kb_used_data":2268,"kb_used_omap":4,"kb_used_meta":85179,"kb_avail":281146096,"statfs":{"total":287985106944,"available":287893602304,"internally_reserved":0,"allocated":2322432,"data_stored":1935606,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":4785,"internal_metadata":87223631},"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.003310"},"pg_stats":[{"pgid":"1.0","version":"20'137","reported_seq":186,"reported_epoch":21,"state":"active+clean","last_fresh":"2024-04-15T21:24:10.107835+0000","last_change":"2024-04-15T21:24:09.091864+0000","last_active":"2024-04-15T21:24:10.107835+0000","last_peered":"2024-04-15T21:24:10.107835+0000","last_clean":"2024-04-15T21:24:10.107835+0000","last_became_active":"2024-04-15T21:24:09.091285+0000","last_became_peered":"2024-04-15T21:24:09.091285+0000","last_unstale":"2024-04-15T21:24:10.107835+0000","last_undegraded":"2024-04-15T21:24:10.107835+0000","last_fullsized":"2024-04-15T21:24:10.107835+0000","mapping_epoch":19,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":20,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-04-15T21:24:08.070477+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-04-15T21:24:08.070477+0000","last_clean_scrub_stamp":"2024-04-15T21:24:08.070477+0000","objects_scrubbed":0,"log_size":137,"log_dups_size":0,"ondisk_log_size":137,"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-04-17T02:30:16.639472+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":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"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},"up":[1,2,0],"acting":[1,2,0],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":1,"acting_primary":1,"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":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"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":1781760,"data_stored":1771104,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":3}],"osd_stats":[{"osd":2,"up_from":18,"seq":77309411349,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28400,"kb_used_data":756,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93716752,"statfs":{"total":95995035648,"available":95965954048,"internally_reserved":0,"allocated":774144,"data_stored":645202,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1],"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":34359738409,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32560,"kb_used_data":756,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93712592,"statfs":{"total":95995035648,"available":95961694208,"internally_reserved":0,"allocated":774144,"data_stored":645202,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2],"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":55834574879,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28400,"kb_used_data":756,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93716752,"statfs":{"total":95995035648,"available":95965954048,"internally_reserved":0,"allocated":774144,"data_stored":645202,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,2],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-04-15T21:25:35.887 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-04-15T21:25:35.887 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-04-15T21:25:35.887 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-04-15T21:25:35.888 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph health --format=json 2024-04-15T21:25:36.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:36 smithi133 bash[22165]: cluster 2024-04-15T21:25:35.125086+0000 mgr.a (mgr.14152) 251 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:36.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:36 smithi133 bash[22165]: audit 2024-04-15T21:25:35.215106+0000 mgr.a (mgr.14152) 252 : audit [DBG] from='client.14349 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:25:36.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:36 smithi132 bash[21536]: cluster 2024-04-15T21:25:35.125086+0000 mgr.a (mgr.14152) 251 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:36.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:36 smithi132 bash[21536]: audit 2024-04-15T21:25:35.215106+0000 mgr.a (mgr.14152) 252 : audit [DBG] from='client.14349 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:25:36.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:36 smithi187 bash[22200]: cluster 2024-04-15T21:25:35.125086+0000 mgr.a (mgr.14152) 251 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:36.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:36 smithi187 bash[22200]: audit 2024-04-15T21:25:35.215106+0000 mgr.a (mgr.14152) 252 : audit [DBG] from='client.14349 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:25:38.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:38 smithi133 bash[22165]: cluster 2024-04-15T21:25:37.125647+0000 mgr.a (mgr.14152) 253 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:38.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:38 smithi132 bash[21536]: cluster 2024-04-15T21:25:37.125647+0000 mgr.a (mgr.14152) 253 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:38.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:38 smithi187 bash[22200]: cluster 2024-04-15T21:25:37.125647+0000 mgr.a (mgr.14152) 253 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:39.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:39 smithi132 bash[21536]: audit 2024-04-15T21:25:38.329637+0000 mon.a (mon.0) 667 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:39.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:39 smithi132 bash[21536]: audit 2024-04-15T21:25:38.338288+0000 mon.a (mon.0) 668 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:39.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:39 smithi132 bash[21536]: audit 2024-04-15T21:25:38.348701+0000 mon.a (mon.0) 669 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:39.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:39 smithi187 bash[22200]: audit 2024-04-15T21:25:38.329637+0000 mon.a (mon.0) 667 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:39.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:39 smithi187 bash[22200]: audit 2024-04-15T21:25:38.338288+0000 mon.a (mon.0) 668 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:39.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:39 smithi187 bash[22200]: audit 2024-04-15T21:25:38.348701+0000 mon.a (mon.0) 669 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:39.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:39 smithi133 bash[22165]: audit 2024-04-15T21:25:38.329637+0000 mon.a (mon.0) 667 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:39.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:39 smithi133 bash[22165]: audit 2024-04-15T21:25:38.338288+0000 mon.a (mon.0) 668 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:39.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:39 smithi133 bash[22165]: audit 2024-04-15T21:25:38.348701+0000 mon.a (mon.0) 669 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:40.608 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:25:40.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:40 smithi132 bash[21536]: cluster 2024-04-15T21:25:39.126142+0000 mgr.a (mgr.14152) 254 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:40.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:40 smithi187 bash[22200]: cluster 2024-04-15T21:25:39.126142+0000 mgr.a (mgr.14152) 254 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:40.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:40 smithi133 bash[22165]: cluster 2024-04-15T21:25:39.126142+0000 mgr.a (mgr.14152) 254 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:42.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:42 smithi132 bash[21536]: cluster 2024-04-15T21:25:41.126653+0000 mgr.a (mgr.14152) 255 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:42.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:42 smithi187 bash[22200]: cluster 2024-04-15T21:25:41.126653+0000 mgr.a (mgr.14152) 255 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:42.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:42 smithi133 bash[22165]: cluster 2024-04-15T21:25:41.126653+0000 mgr.a (mgr.14152) 255 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:43.232 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:25:43.232 INFO:teuthology.orchestra.run.smithi132.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-04-15T21:25:43.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:43 smithi132 bash[21536]: audit 2024-04-15T21:25:43.234139+0000 mon.a (mon.0) 670 : audit [DBG] from='client.? 172.21.15.132:0/2298694302' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-15T21:25:43.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:43 smithi187 bash[22200]: audit 2024-04-15T21:25:43.234139+0000 mon.a (mon.0) 670 : audit [DBG] from='client.? 172.21.15.132:0/2298694302' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-15T21:25:43.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:43 smithi133 bash[22165]: audit 2024-04-15T21:25:43.234139+0000 mon.a (mon.0) 670 : audit [DBG] from='client.? 172.21.15.132:0/2298694302' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-15T21:25:43.934 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-04-15T21:25:43.935 INFO:tasks.cephadm:Setup complete, yielding 2024-04-15T21:25:43.935 INFO:teuthology.run_tasks:Running task cephadm.apply... 2024-04-15T21:25:43.945 INFO:tasks.cephadm:Applying spec(s): placement: count: 3 service_id: foo service_type: mon spec: crush_locations: host.a: - datacenter=a host.b: - datacenter=b - rack=2 host.c: - datacenter=a - rack=3 2024-04-15T21:25:43.946 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- ceph orch apply -i - 2024-04-15T21:25:44.630 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:44 smithi132 bash[21536]: cluster 2024-04-15T21:25:43.127139+0000 mgr.a (mgr.14152) 256 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:44.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:44 smithi187 bash[22200]: cluster 2024-04-15T21:25:43.127139+0000 mgr.a (mgr.14152) 256 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:44.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:44 smithi133 bash[22165]: cluster 2024-04-15T21:25:43.127139+0000 mgr.a (mgr.14152) 256 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:46.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:46 smithi132 bash[21536]: cluster 2024-04-15T21:25:45.127686+0000 mgr.a (mgr.14152) 257 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:46.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:46 smithi187 bash[22200]: cluster 2024-04-15T21:25:45.127686+0000 mgr.a (mgr.14152) 257 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:46.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:46 smithi133 bash[22165]: cluster 2024-04-15T21:25:45.127686+0000 mgr.a (mgr.14152) 257 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:47.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:47 smithi133 bash[22165]: audit 2024-04-15T21:25:46.423063+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:47.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:47 smithi133 bash[22165]: audit 2024-04-15T21:25:46.430460+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:47.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:47 smithi133 bash[22165]: audit 2024-04-15T21:25:46.436749+0000 mon.a (mon.0) 673 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:47.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:47 smithi133 bash[22165]: cluster 2024-04-15T21:25:47.128292+0000 mgr.a (mgr.14152) 258 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:47.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:47 smithi132 bash[21536]: audit 2024-04-15T21:25:46.423063+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:47.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:47 smithi132 bash[21536]: audit 2024-04-15T21:25:46.430460+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:47.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:47 smithi132 bash[21536]: audit 2024-04-15T21:25:46.436749+0000 mon.a (mon.0) 673 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:47.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:47 smithi132 bash[21536]: cluster 2024-04-15T21:25:47.128292+0000 mgr.a (mgr.14152) 258 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:47.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:47 smithi187 bash[22200]: audit 2024-04-15T21:25:46.423063+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:47.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:47 smithi187 bash[22200]: audit 2024-04-15T21:25:46.430460+0000 mon.a (mon.0) 672 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:47.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:47 smithi187 bash[22200]: audit 2024-04-15T21:25:46.436749+0000 mon.a (mon.0) 673 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:47.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:47 smithi187 bash[22200]: cluster 2024-04-15T21:25:47.128292+0000 mgr.a (mgr.14152) 258 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:49.018 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:25:50.377 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:50 smithi132 bash[21536]: cluster 2024-04-15T21:25:49.128866+0000 mgr.a (mgr.14152) 259 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:50.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:50 smithi133 bash[22165]: cluster 2024-04-15T21:25:49.128866+0000 mgr.a (mgr.14152) 259 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:50.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:50 smithi187 bash[22200]: cluster 2024-04-15T21:25:49.128866+0000 mgr.a (mgr.14152) 259 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:51.568 INFO:teuthology.orchestra.run.smithi132.stdout:Scheduled mon update... 2024-04-15T21:25:52.225 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-04-15T21:25:52.236 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi132.front.sepia.ceph.com 2024-04-15T21:25:52.236 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 -- bash -c 'set -ex 2024-04-15T21:25:52.236 DEBUG:teuthology.orchestra.run.smithi132:> # since we don'"'"'t know the real hostnames before the test, the next 2024-04-15T21:25:52.236 DEBUG:teuthology.orchestra.run.smithi132:> # bit is in order to replace the fake hostnames "host.a/b/c" with 2024-04-15T21:25:52.236 DEBUG:teuthology.orchestra.run.smithi132:> # the actual names cephadm knows the host by within the mon spec 2024-04-15T21:25:52.236 DEBUG:teuthology.orchestra.run.smithi132:> ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"' > realnames 2024-04-15T21:25:52.236 DEBUG:teuthology.orchestra.run.smithi132:> echo $'"'"'host.a\nhost.b\nhost.c'"'"' > fakenames 2024-04-15T21:25:52.236 DEBUG:teuthology.orchestra.run.smithi132:> echo $'"'"'a\nb\nc'"'"' > mon_ids 2024-04-15T21:25:52.236 DEBUG:teuthology.orchestra.run.smithi132:> echo $'"'"'{datacenter=a}\n{datacenter=b,rack=2}\n{datacenter=a,rack=3}'"'"' > crush_locs 2024-04-15T21:25:52.237 DEBUG:teuthology.orchestra.run.smithi132:> ceph orch ls --service-name mon --export > mon.yaml 2024-04-15T21:25:52.237 DEBUG:teuthology.orchestra.run.smithi132:> MONSPEC=`cat mon.yaml` 2024-04-15T21:25:52.237 DEBUG:teuthology.orchestra.run.smithi132:> echo "$MONSPEC" 2024-04-15T21:25:52.237 DEBUG:teuthology.orchestra.run.smithi132:> while read realname <&3 && read fakename <&4; do 2024-04-15T21:25:52.237 DEBUG:teuthology.orchestra.run.smithi132:> MONSPEC="${MONSPEC//$fakename/$realname}" 2024-04-15T21:25:52.237 DEBUG:teuthology.orchestra.run.smithi132:> done 3 echo "$MONSPEC" > mon.yaml 2024-04-15T21:25:52.237 DEBUG:teuthology.orchestra.run.smithi132:> cat mon.yaml 2024-04-15T21:25:52.237 DEBUG:teuthology.orchestra.run.smithi132:> # now the spec should have the real hostnames, so let'"'"'s re-apply 2024-04-15T21:25:52.237 DEBUG:teuthology.orchestra.run.smithi132:> ceph orch apply -i mon.yaml 2024-04-15T21:25:52.237 DEBUG:teuthology.orchestra.run.smithi132:> sleep 90 2024-04-15T21:25:52.237 DEBUG:teuthology.orchestra.run.smithi132:> ceph orch ps --refresh 2024-04-15T21:25:52.237 DEBUG:teuthology.orchestra.run.smithi132:> ceph orch ls --service-name mon --export > mon.yaml; ceph orch apply -i mon.yaml 2024-04-15T21:25:52.237 DEBUG:teuthology.orchestra.run.smithi132:> sleep 90 2024-04-15T21:25:52.238 DEBUG:teuthology.orchestra.run.smithi132:> ceph mon dump 2024-04-15T21:25:52.238 DEBUG:teuthology.orchestra.run.smithi132:> ceph mon dump --format json 2024-04-15T21:25:52.238 DEBUG:teuthology.orchestra.run.smithi132:> # verify all the crush locations got set from "ceph mon dump" output 2024-04-15T21:25:52.238 DEBUG:teuthology.orchestra.run.smithi132:> while read monid <&3 && read crushloc <&4; do 2024-04-15T21:25:52.238 DEBUG:teuthology.orchestra.run.smithi132:> ceph mon dump --format json | jq --arg monid "$monid" --arg crushloc "$crushloc" -e '"'"'.mons | .[] | select(.name == $monid) | .crush_location == $crushloc'"'"' 2024-04-15T21:25:52.238 DEBUG:teuthology.orchestra.run.smithi132:> done 3 ' 2024-04-15T21:25:52.239 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:51 smithi187 bash[22200]: audit 2024-04-15T21:25:50.976750+0000 mon.a (mon.0) 674 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:52.239 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:51 smithi187 bash[22200]: audit 2024-04-15T21:25:50.985706+0000 mon.a (mon.0) 675 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:52.239 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:51 smithi187 bash[22200]: audit 2024-04-15T21:25:50.995887+0000 mon.a (mon.0) 676 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:52.239 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:51 smithi187 bash[22200]: cluster 2024-04-15T21:25:51.129276+0000 mgr.a (mgr.14152) 260 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:52.239 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:51 smithi187 bash[22200]: audit 2024-04-15T21:25:51.570394+0000 mon.a (mon.0) 677 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:52.239 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:51 smithi187 bash[22200]: audit 2024-04-15T21:25:51.584227+0000 mon.a (mon.0) 678 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:25:52.239 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:51 smithi187 bash[22200]: audit 2024-04-15T21:25:51.587981+0000 mon.a (mon.0) 679 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:25:52.239 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:51 smithi187 bash[22200]: audit 2024-04-15T21:25:51.589011+0000 mon.a (mon.0) 680 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:25:52.239 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:51 smithi187 bash[22200]: audit 2024-04-15T21:25:51.596229+0000 mon.a (mon.0) 681 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:52.239 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:51 smithi187 bash[22200]: audit 2024-04-15T21:25:51.598726+0000 mon.a (mon.0) 682 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "quorum_status"}]: dispatch 2024-04-15T21:25:52.239 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:51 smithi187 bash[22200]: audit 2024-04-15T21:25:51.604477+0000 mon.a (mon.0) 683 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:52.245 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:51 smithi133 bash[22165]: audit 2024-04-15T21:25:50.976750+0000 mon.a (mon.0) 674 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:52.245 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:51 smithi133 bash[22165]: audit 2024-04-15T21:25:50.985706+0000 mon.a (mon.0) 675 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:52.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:51 smithi133 bash[22165]: audit 2024-04-15T21:25:50.995887+0000 mon.a (mon.0) 676 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:52.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:51 smithi133 bash[22165]: cluster 2024-04-15T21:25:51.129276+0000 mgr.a (mgr.14152) 260 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:52.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:51 smithi133 bash[22165]: audit 2024-04-15T21:25:51.570394+0000 mon.a (mon.0) 677 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:52.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:51 smithi133 bash[22165]: audit 2024-04-15T21:25:51.584227+0000 mon.a (mon.0) 678 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:25:52.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:51 smithi133 bash[22165]: audit 2024-04-15T21:25:51.587981+0000 mon.a (mon.0) 679 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:25:52.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:51 smithi133 bash[22165]: audit 2024-04-15T21:25:51.589011+0000 mon.a (mon.0) 680 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:25:52.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:51 smithi133 bash[22165]: audit 2024-04-15T21:25:51.596229+0000 mon.a (mon.0) 681 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:52.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:51 smithi133 bash[22165]: audit 2024-04-15T21:25:51.598726+0000 mon.a (mon.0) 682 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "quorum_status"}]: dispatch 2024-04-15T21:25:52.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:51 smithi133 bash[22165]: audit 2024-04-15T21:25:51.604477+0000 mon.a (mon.0) 683 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:52.250 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:51 smithi132 bash[21536]: audit 2024-04-15T21:25:50.976750+0000 mon.a (mon.0) 674 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:52.250 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:51 smithi132 bash[21536]: audit 2024-04-15T21:25:50.985706+0000 mon.a (mon.0) 675 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:52.250 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:51 smithi132 bash[21536]: audit 2024-04-15T21:25:50.995887+0000 mon.a (mon.0) 676 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:52.250 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:51 smithi132 bash[21536]: cluster 2024-04-15T21:25:51.129276+0000 mgr.a (mgr.14152) 260 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:52.251 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:51 smithi132 bash[21536]: audit 2024-04-15T21:25:51.570394+0000 mon.a (mon.0) 677 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:52.251 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:51 smithi132 bash[21536]: audit 2024-04-15T21:25:51.584227+0000 mon.a (mon.0) 678 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:25:52.251 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:51 smithi132 bash[21536]: audit 2024-04-15T21:25:51.587981+0000 mon.a (mon.0) 679 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:25:52.251 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:51 smithi132 bash[21536]: audit 2024-04-15T21:25:51.589011+0000 mon.a (mon.0) 680 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:25:52.251 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:51 smithi132 bash[21536]: audit 2024-04-15T21:25:51.596229+0000 mon.a (mon.0) 681 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:52.251 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:51 smithi132 bash[21536]: audit 2024-04-15T21:25:51.598726+0000 mon.a (mon.0) 682 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "quorum_status"}]: dispatch 2024-04-15T21:25:52.251 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:51 smithi132 bash[21536]: audit 2024-04-15T21:25:51.604477+0000 mon.a (mon.0) 683 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:53.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:52 smithi132 bash[21536]: audit 2024-04-15T21:25:51.560099+0000 mgr.a (mgr.14152) 261 : audit [DBG] from='client.14361 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:25:53.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:52 smithi132 bash[21536]: cephadm 2024-04-15T21:25:51.563837+0000 mgr.a (mgr.14152) 262 : cephadm [INF] Saving service mon spec with placement count:3 2024-04-15T21:25:53.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:52 smithi187 bash[22200]: audit 2024-04-15T21:25:51.560099+0000 mgr.a (mgr.14152) 261 : audit [DBG] from='client.14361 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:25:53.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:52 smithi187 bash[22200]: cephadm 2024-04-15T21:25:51.563837+0000 mgr.a (mgr.14152) 262 : cephadm [INF] Saving service mon spec with placement count:3 2024-04-15T21:25:53.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:52 smithi133 bash[22165]: audit 2024-04-15T21:25:51.560099+0000 mgr.a (mgr.14152) 261 : audit [DBG] from='client.14361 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:25:53.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:52 smithi133 bash[22165]: cephadm 2024-04-15T21:25:51.563837+0000 mgr.a (mgr.14152) 262 : cephadm [INF] Saving service mon spec with placement count:3 2024-04-15T21:25:54.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:54 smithi132 bash[21536]: cluster 2024-04-15T21:25:53.129786+0000 mgr.a (mgr.14152) 263 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:54.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:54 smithi187 bash[22200]: cluster 2024-04-15T21:25:53.129786+0000 mgr.a (mgr.14152) 263 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:54.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:54 smithi133 bash[22165]: cluster 2024-04-15T21:25:53.129786+0000 mgr.a (mgr.14152) 263 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:56.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:56 smithi133 bash[22165]: cluster 2024-04-15T21:25:55.130338+0000 mgr.a (mgr.14152) 264 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:56.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:56 smithi132 bash[21536]: cluster 2024-04-15T21:25:55.130338+0000 mgr.a (mgr.14152) 264 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:56.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:56 smithi187 bash[22200]: cluster 2024-04-15T21:25:55.130338+0000 mgr.a (mgr.14152) 264 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:56.963 INFO:teuthology.orchestra.run.smithi132.stderr:Inferring config /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:25:58.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:58 smithi132 bash[21536]: cluster 2024-04-15T21:25:57.130878+0000 mgr.a (mgr.14152) 265 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:58.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:58 smithi133 bash[22165]: cluster 2024-04-15T21:25:57.130878+0000 mgr.a (mgr.14152) 265 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:58.553 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:58 smithi187 bash[22200]: cluster 2024-04-15T21:25:57.130878+0000 mgr.a (mgr.14152) 265 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:59.342 INFO:teuthology.orchestra.run.smithi132.stderr:+ ceph orch host ls --format json 2024-04-15T21:25:59.343 INFO:teuthology.orchestra.run.smithi132.stderr:+ jq -r '.[] | .hostname' 2024-04-15T21:25:59.692 INFO:teuthology.orchestra.run.smithi132.stderr:+ echo 'host.a 2024-04-15T21:25:59.693 INFO:teuthology.orchestra.run.smithi132.stderr:host.b 2024-04-15T21:25:59.693 INFO:teuthology.orchestra.run.smithi132.stderr:host.c' 2024-04-15T21:25:59.693 INFO:teuthology.orchestra.run.smithi132.stderr:+ echo 'a 2024-04-15T21:25:59.693 INFO:teuthology.orchestra.run.smithi132.stderr:b 2024-04-15T21:25:59.693 INFO:teuthology.orchestra.run.smithi132.stderr:c' 2024-04-15T21:25:59.693 INFO:teuthology.orchestra.run.smithi132.stderr:+ echo '{datacenter=a} 2024-04-15T21:25:59.693 INFO:teuthology.orchestra.run.smithi132.stderr:{datacenter=b,rack=2} 2024-04-15T21:25:59.693 INFO:teuthology.orchestra.run.smithi132.stderr:{datacenter=a,rack=3}' 2024-04-15T21:25:59.693 INFO:teuthology.orchestra.run.smithi132.stderr:+ ceph orch ls --service-name mon --export 2024-04-15T21:25:59.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:59 smithi132 bash[21536]: audit 2024-04-15T21:25:58.542760+0000 mon.a (mon.0) 684 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:59.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:59 smithi132 bash[21536]: audit 2024-04-15T21:25:58.549035+0000 mon.a (mon.0) 685 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:59.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:59 smithi132 bash[21536]: audit 2024-04-15T21:25:58.554573+0000 mon.a (mon.0) 686 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:59.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:25:59 smithi132 bash[21536]: cluster 2024-04-15T21:25:59.131426+0000 mgr.a (mgr.14152) 266 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:59.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:59 smithi187 bash[22200]: audit 2024-04-15T21:25:58.542760+0000 mon.a (mon.0) 684 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:59.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:59 smithi187 bash[22200]: audit 2024-04-15T21:25:58.549035+0000 mon.a (mon.0) 685 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:59.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:59 smithi187 bash[22200]: audit 2024-04-15T21:25:58.554573+0000 mon.a (mon.0) 686 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:59.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:25:59 smithi187 bash[22200]: cluster 2024-04-15T21:25:59.131426+0000 mgr.a (mgr.14152) 266 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:25:59.995 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:59 smithi133 bash[22165]: audit 2024-04-15T21:25:58.542760+0000 mon.a (mon.0) 684 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:59.995 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:59 smithi133 bash[22165]: audit 2024-04-15T21:25:58.549035+0000 mon.a (mon.0) 685 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:59.995 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:59 smithi133 bash[22165]: audit 2024-04-15T21:25:58.554573+0000 mon.a (mon.0) 686 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:25:59.995 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:25:59 smithi133 bash[22165]: cluster 2024-04-15T21:25:59.131426+0000 mgr.a (mgr.14152) 266 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:00.050 INFO:teuthology.orchestra.run.smithi132.stderr:++ cat mon.yaml 2024-04-15T21:26:00.052 INFO:teuthology.orchestra.run.smithi132.stderr:+ MONSPEC='service_type: mon 2024-04-15T21:26:00.052 INFO:teuthology.orchestra.run.smithi132.stderr:service_name: mon 2024-04-15T21:26:00.052 INFO:teuthology.orchestra.run.smithi132.stderr:placement: 2024-04-15T21:26:00.052 INFO:teuthology.orchestra.run.smithi132.stderr: count: 3 2024-04-15T21:26:00.052 INFO:teuthology.orchestra.run.smithi132.stderr:spec: 2024-04-15T21:26:00.052 INFO:teuthology.orchestra.run.smithi132.stderr: crush_locations: 2024-04-15T21:26:00.052 INFO:teuthology.orchestra.run.smithi132.stderr: host.a: 2024-04-15T21:26:00.052 INFO:teuthology.orchestra.run.smithi132.stderr: - datacenter=a 2024-04-15T21:26:00.052 INFO:teuthology.orchestra.run.smithi132.stderr: host.b: 2024-04-15T21:26:00.052 INFO:teuthology.orchestra.run.smithi132.stderr: - datacenter=b 2024-04-15T21:26:00.052 INFO:teuthology.orchestra.run.smithi132.stderr: - rack=2 2024-04-15T21:26:00.053 INFO:teuthology.orchestra.run.smithi132.stderr: host.c: 2024-04-15T21:26:00.053 INFO:teuthology.orchestra.run.smithi132.stderr: - datacenter=a 2024-04-15T21:26:00.053 INFO:teuthology.orchestra.run.smithi132.stderr: - rack=3' 2024-04-15T21:26:00.053 INFO:teuthology.orchestra.run.smithi132.stderr:+ echo 'service_type: mon 2024-04-15T21:26:00.053 INFO:teuthology.orchestra.run.smithi132.stderr:service_name: mon 2024-04-15T21:26:00.053 INFO:teuthology.orchestra.run.smithi132.stderr:placement: 2024-04-15T21:26:00.053 INFO:teuthology.orchestra.run.smithi132.stderr: count: 3 2024-04-15T21:26:00.053 INFO:teuthology.orchestra.run.smithi132.stderr:spec: 2024-04-15T21:26:00.053 INFO:teuthology.orchestra.run.smithi132.stderr: crush_locations: 2024-04-15T21:26:00.053 INFO:teuthology.orchestra.run.smithi132.stderr: host.a: 2024-04-15T21:26:00.053 INFO:teuthology.orchestra.run.smithi132.stderr: - datacenter=a 2024-04-15T21:26:00.053 INFO:teuthology.orchestra.run.smithi132.stderr: host.b: 2024-04-15T21:26:00.053 INFO:teuthology.orchestra.run.smithi132.stderr: - datacenter=b 2024-04-15T21:26:00.054 INFO:teuthology.orchestra.run.smithi132.stderr: - rack=2 2024-04-15T21:26:00.054 INFO:teuthology.orchestra.run.smithi132.stderr: host.c: 2024-04-15T21:26:00.054 INFO:teuthology.orchestra.run.smithi132.stderr: - datacenter=a 2024-04-15T21:26:00.054 INFO:teuthology.orchestra.run.smithi132.stderr: - rack=3' 2024-04-15T21:26:00.054 INFO:teuthology.orchestra.run.smithi132.stdout:service_type: mon 2024-04-15T21:26:00.054 INFO:teuthology.orchestra.run.smithi132.stdout:service_name: mon 2024-04-15T21:26:00.054 INFO:teuthology.orchestra.run.smithi132.stdout:placement: 2024-04-15T21:26:00.054 INFO:teuthology.orchestra.run.smithi132.stdout: count: 3 2024-04-15T21:26:00.054 INFO:teuthology.orchestra.run.smithi132.stdout:spec: 2024-04-15T21:26:00.054 INFO:teuthology.orchestra.run.smithi132.stdout: crush_locations: 2024-04-15T21:26:00.055 INFO:teuthology.orchestra.run.smithi132.stdout: host.a: 2024-04-15T21:26:00.055 INFO:teuthology.orchestra.run.smithi132.stdout: - datacenter=a 2024-04-15T21:26:00.055 INFO:teuthology.orchestra.run.smithi132.stdout: host.b: 2024-04-15T21:26:00.055 INFO:teuthology.orchestra.run.smithi132.stdout: - datacenter=b 2024-04-15T21:26:00.055 INFO:teuthology.orchestra.run.smithi132.stdout: - rack=2 2024-04-15T21:26:00.055 INFO:teuthology.orchestra.run.smithi132.stdout: host.c: 2024-04-15T21:26:00.055 INFO:teuthology.orchestra.run.smithi132.stdout: - datacenter=a 2024-04-15T21:26:00.055 INFO:teuthology.orchestra.run.smithi132.stdout: - rack=3 2024-04-15T21:26:00.056 INFO:teuthology.orchestra.run.smithi132.stderr:+ read realname 2024-04-15T21:26:00.056 INFO:teuthology.orchestra.run.smithi132.stderr:+ read fakename 2024-04-15T21:26:00.056 INFO:teuthology.orchestra.run.smithi132.stderr:+ MONSPEC='service_type: mon 2024-04-15T21:26:00.056 INFO:teuthology.orchestra.run.smithi132.stderr:service_name: mon 2024-04-15T21:26:00.056 INFO:teuthology.orchestra.run.smithi132.stderr:placement: 2024-04-15T21:26:00.056 INFO:teuthology.orchestra.run.smithi132.stderr: count: 3 2024-04-15T21:26:00.056 INFO:teuthology.orchestra.run.smithi132.stderr:spec: 2024-04-15T21:26:00.056 INFO:teuthology.orchestra.run.smithi132.stderr: crush_locations: 2024-04-15T21:26:00.057 INFO:teuthology.orchestra.run.smithi132.stderr: smithi132: 2024-04-15T21:26:00.057 INFO:teuthology.orchestra.run.smithi132.stderr: - datacenter=a 2024-04-15T21:26:00.057 INFO:teuthology.orchestra.run.smithi132.stderr: host.b: 2024-04-15T21:26:00.057 INFO:teuthology.orchestra.run.smithi132.stderr: - datacenter=b 2024-04-15T21:26:00.057 INFO:teuthology.orchestra.run.smithi132.stderr: - rack=2 2024-04-15T21:26:00.057 INFO:teuthology.orchestra.run.smithi132.stderr: host.c: 2024-04-15T21:26:00.057 INFO:teuthology.orchestra.run.smithi132.stderr: - datacenter=a 2024-04-15T21:26:00.057 INFO:teuthology.orchestra.run.smithi132.stderr: - rack=3' 2024-04-15T21:26:00.057 INFO:teuthology.orchestra.run.smithi132.stderr:+ read realname 2024-04-15T21:26:00.057 INFO:teuthology.orchestra.run.smithi132.stderr:+ read fakename 2024-04-15T21:26:00.057 INFO:teuthology.orchestra.run.smithi132.stderr:+ MONSPEC='service_type: mon 2024-04-15T21:26:00.057 INFO:teuthology.orchestra.run.smithi132.stderr:service_name: mon 2024-04-15T21:26:00.057 INFO:teuthology.orchestra.run.smithi132.stderr:placement: 2024-04-15T21:26:00.057 INFO:teuthology.orchestra.run.smithi132.stderr: count: 3 2024-04-15T21:26:00.057 INFO:teuthology.orchestra.run.smithi132.stderr:spec: 2024-04-15T21:26:00.058 INFO:teuthology.orchestra.run.smithi132.stderr: crush_locations: 2024-04-15T21:26:00.058 INFO:teuthology.orchestra.run.smithi132.stderr: smithi132: 2024-04-15T21:26:00.058 INFO:teuthology.orchestra.run.smithi132.stderr: - datacenter=a 2024-04-15T21:26:00.058 INFO:teuthology.orchestra.run.smithi132.stderr: smithi133: 2024-04-15T21:26:00.058 INFO:teuthology.orchestra.run.smithi132.stderr: - datacenter=b 2024-04-15T21:26:00.058 INFO:teuthology.orchestra.run.smithi132.stderr: - rack=2 2024-04-15T21:26:00.058 INFO:teuthology.orchestra.run.smithi132.stderr: host.c: 2024-04-15T21:26:00.058 INFO:teuthology.orchestra.run.smithi132.stderr: - datacenter=a 2024-04-15T21:26:00.058 INFO:teuthology.orchestra.run.smithi132.stderr: - rack=3' 2024-04-15T21:26:00.058 INFO:teuthology.orchestra.run.smithi132.stderr:+ read realname 2024-04-15T21:26:00.058 INFO:teuthology.orchestra.run.smithi132.stderr:+ read fakename 2024-04-15T21:26:00.058 INFO:teuthology.orchestra.run.smithi132.stderr:+ MONSPEC='service_type: mon 2024-04-15T21:26:00.058 INFO:teuthology.orchestra.run.smithi132.stderr:service_name: mon 2024-04-15T21:26:00.058 INFO:teuthology.orchestra.run.smithi132.stderr:placement: 2024-04-15T21:26:00.059 INFO:teuthology.orchestra.run.smithi132.stderr: count: 3 2024-04-15T21:26:00.059 INFO:teuthology.orchestra.run.smithi132.stderr:spec: 2024-04-15T21:26:00.059 INFO:teuthology.orchestra.run.smithi132.stderr: crush_locations: 2024-04-15T21:26:00.059 INFO:teuthology.orchestra.run.smithi132.stderr: smithi132: 2024-04-15T21:26:00.059 INFO:teuthology.orchestra.run.smithi132.stderr: - datacenter=a 2024-04-15T21:26:00.059 INFO:teuthology.orchestra.run.smithi132.stderr: smithi133: 2024-04-15T21:26:00.059 INFO:teuthology.orchestra.run.smithi132.stderr: - datacenter=b 2024-04-15T21:26:00.059 INFO:teuthology.orchestra.run.smithi132.stderr: - rack=2 2024-04-15T21:26:00.059 INFO:teuthology.orchestra.run.smithi132.stderr: smithi187: 2024-04-15T21:26:00.059 INFO:teuthology.orchestra.run.smithi132.stderr: - datacenter=a 2024-04-15T21:26:00.059 INFO:teuthology.orchestra.run.smithi132.stderr: - rack=3' 2024-04-15T21:26:00.059 INFO:teuthology.orchestra.run.smithi132.stderr:+ read realname 2024-04-15T21:26:00.059 INFO:teuthology.orchestra.run.smithi132.stderr:+ echo 'service_type: mon 2024-04-15T21:26:00.059 INFO:teuthology.orchestra.run.smithi132.stderr:service_name: mon 2024-04-15T21:26:00.059 INFO:teuthology.orchestra.run.smithi132.stderr:placement: 2024-04-15T21:26:00.060 INFO:teuthology.orchestra.run.smithi132.stderr: count: 3 2024-04-15T21:26:00.060 INFO:teuthology.orchestra.run.smithi132.stderr:spec: 2024-04-15T21:26:00.060 INFO:teuthology.orchestra.run.smithi132.stderr: crush_locations: 2024-04-15T21:26:00.060 INFO:teuthology.orchestra.run.smithi132.stderr: smithi132: 2024-04-15T21:26:00.060 INFO:teuthology.orchestra.run.smithi132.stderr: - datacenter=a 2024-04-15T21:26:00.060 INFO:teuthology.orchestra.run.smithi132.stderr: smithi133: 2024-04-15T21:26:00.060 INFO:teuthology.orchestra.run.smithi132.stderr: - datacenter=b 2024-04-15T21:26:00.060 INFO:teuthology.orchestra.run.smithi132.stderr: - rack=2 2024-04-15T21:26:00.060 INFO:teuthology.orchestra.run.smithi132.stderr: smithi187: 2024-04-15T21:26:00.060 INFO:teuthology.orchestra.run.smithi132.stderr: - datacenter=a 2024-04-15T21:26:00.060 INFO:teuthology.orchestra.run.smithi132.stderr: - rack=3' 2024-04-15T21:26:00.060 INFO:teuthology.orchestra.run.smithi132.stderr:+ cat mon.yaml 2024-04-15T21:26:00.061 INFO:teuthology.orchestra.run.smithi132.stdout:service_type: mon 2024-04-15T21:26:00.061 INFO:teuthology.orchestra.run.smithi132.stdout:service_name: mon 2024-04-15T21:26:00.061 INFO:teuthology.orchestra.run.smithi132.stdout:placement: 2024-04-15T21:26:00.061 INFO:teuthology.orchestra.run.smithi132.stdout: count: 3 2024-04-15T21:26:00.061 INFO:teuthology.orchestra.run.smithi132.stdout:spec: 2024-04-15T21:26:00.061 INFO:teuthology.orchestra.run.smithi132.stdout: crush_locations: 2024-04-15T21:26:00.061 INFO:teuthology.orchestra.run.smithi132.stdout: smithi132: 2024-04-15T21:26:00.061 INFO:teuthology.orchestra.run.smithi132.stdout: - datacenter=a 2024-04-15T21:26:00.061 INFO:teuthology.orchestra.run.smithi132.stdout: smithi133: 2024-04-15T21:26:00.061 INFO:teuthology.orchestra.run.smithi132.stdout: - datacenter=b 2024-04-15T21:26:00.061 INFO:teuthology.orchestra.run.smithi132.stdout: - rack=2 2024-04-15T21:26:00.061 INFO:teuthology.orchestra.run.smithi132.stdout: smithi187: 2024-04-15T21:26:00.061 INFO:teuthology.orchestra.run.smithi132.stdout: - datacenter=a 2024-04-15T21:26:00.061 INFO:teuthology.orchestra.run.smithi132.stdout: - rack=3 2024-04-15T21:26:00.062 INFO:teuthology.orchestra.run.smithi132.stderr:+ ceph orch apply -i mon.yaml 2024-04-15T21:26:00.412 INFO:teuthology.orchestra.run.smithi132.stdout:Scheduled mon update... 2024-04-15T21:26:00.426 INFO:teuthology.orchestra.run.smithi132.stderr:+ sleep 90 2024-04-15T21:26:06.749 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cephadm 2024-04-15T21:26:05.492617+0000 mgr.a (mgr.14152) 275 : cephadm [INF] Setting crush location for mon b to {datacenter=b,rack=2} 2024-04-15T21:26:06.750 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cephadm 2024-04-15T21:26:05.568228+0000 mgr.a (mgr.14152) 276 : cephadm [INF] Setting crush location for mon c to {datacenter=a,rack=3} 2024-04-15T21:26:06.750 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: audit 2024-04-15T21:26:05.578602+0000 mon.a (mon.0) 752 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd='[{"prefix": "mon set_location", "name": "c", "args": ["datacenter=a", "rack=3"]}]': finished 2024-04-15T21:26:06.750 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cluster 2024-04-15T21:26:05.582228+0000 mon.b (mon.2) 14 : cluster [INF] mon.b calling monitor election 2024-04-15T21:26:06.750 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cluster 2024-04-15T21:26:05.583320+0000 mon.c (mon.1) 12 : cluster [INF] mon.c calling monitor election 2024-04-15T21:26:06.750 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: audit 2024-04-15T21:26:05.584721+0000 mon.a (mon.0) 753 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:26:06.750 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: audit 2024-04-15T21:26:05.585027+0000 mon.a (mon.0) 754 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:26:06.750 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cluster 2024-04-15T21:26:05.585412+0000 mon.a (mon.0) 755 : cluster [INF] mon.a calling monitor election 2024-04-15T21:26:06.750 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: audit 2024-04-15T21:26:05.586864+0000 mon.a (mon.0) 756 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:26:06.750 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cluster 2024-04-15T21:26:05.605638+0000 mon.a (mon.0) 757 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-15T21:26:06.750 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cluster 2024-04-15T21:26:05.613170+0000 mon.a (mon.0) 758 : cluster [DBG] monmap epoch 6 2024-04-15T21:26:06.751 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cluster 2024-04-15T21:26:05.613199+0000 mon.a (mon.0) 759 : cluster [DBG] fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:26:06.751 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cluster 2024-04-15T21:26:05.613223+0000 mon.a (mon.0) 760 : cluster [DBG] last_changed 2024-04-15T21:26:05.570016+0000 2024-04-15T21:26:06.751 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cluster 2024-04-15T21:26:05.613241+0000 mon.a (mon.0) 761 : cluster [DBG] created 2024-04-15T21:18:17.192210+0000 2024-04-15T21:26:06.751 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cluster 2024-04-15T21:26:05.613264+0000 mon.a (mon.0) 762 : cluster [DBG] min_mon_release 19 (squid) 2024-04-15T21:26:06.751 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cluster 2024-04-15T21:26:05.613287+0000 mon.a (mon.0) 763 : cluster [DBG] election_strategy: 1 2024-04-15T21:26:06.751 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cluster 2024-04-15T21:26:05.613306+0000 mon.a (mon.0) 764 : cluster [DBG] 0: [v2:172.21.15.132:3300/0,v1:172.21.15.132:6789/0] mon.a; crush_location {datacenter=a} 2024-04-15T21:26:06.751 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cluster 2024-04-15T21:26:05.613325+0000 mon.a (mon.0) 765 : cluster [DBG] 1: [v2:172.21.15.187:3300/0,v1:172.21.15.187:6789/0] mon.c; crush_location {datacenter=a,rack=3} 2024-04-15T21:26:06.751 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cluster 2024-04-15T21:26:05.613345+0000 mon.a (mon.0) 766 : cluster [DBG] 2: [v2:172.21.15.133:3300/0,v1:172.21.15.133:6789/0] mon.b; crush_location {datacenter=b,rack=2} 2024-04-15T21:26:06.751 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cluster 2024-04-15T21:26:05.614193+0000 mon.a (mon.0) 767 : cluster [DBG] fsmap 2024-04-15T21:26:06.751 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cluster 2024-04-15T21:26:05.614242+0000 mon.a (mon.0) 768 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-04-15T21:26:06.751 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cluster 2024-04-15T21:26:05.614731+0000 mon.a (mon.0) 769 : cluster [DBG] mgrmap e15: a(active, since 6m), standbys: b 2024-04-15T21:26:06.751 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cluster 2024-04-15T21:26:05.614926+0000 mon.a (mon.0) 770 : cluster [INF] overall HEALTH_OK 2024-04-15T21:26:06.751 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: audit 2024-04-15T21:26:05.629826+0000 mon.a (mon.0) 771 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:06.751 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cephadm 2024-04-15T21:26:05.727368+0000 mgr.a (mgr.14152) 277 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-04-15T21:26:06.752 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: audit 2024-04-15T21:26:05.727952+0000 mon.a (mon.0) 772 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:26:06.752 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: audit 2024-04-15T21:26:05.729294+0000 mon.a (mon.0) 773 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:26:06.752 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: audit 2024-04-15T21:26:05.730531+0000 mon.a (mon.0) 774 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:06.752 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: cephadm 2024-04-15T21:26:05.732183+0000 mgr.a (mgr.14152) 278 : cephadm [INF] Reconfiguring daemon mon.a on smithi132 2024-04-15T21:26:06.752 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:06 smithi133 bash[22165]: audit 2024-04-15T21:26:06.577750+0000 mon.a (mon.0) 775 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:06.832 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cephadm 2024-04-15T21:26:05.492617+0000 mgr.a (mgr.14152) 275 : cephadm [INF] Setting crush location for mon b to {datacenter=b,rack=2} 2024-04-15T21:26:06.832 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cephadm 2024-04-15T21:26:05.568228+0000 mgr.a (mgr.14152) 276 : cephadm [INF] Setting crush location for mon c to {datacenter=a,rack=3} 2024-04-15T21:26:06.833 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: audit 2024-04-15T21:26:05.578602+0000 mon.a (mon.0) 752 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd='[{"prefix": "mon set_location", "name": "c", "args": ["datacenter=a", "rack=3"]}]': finished 2024-04-15T21:26:06.833 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cluster 2024-04-15T21:26:05.582228+0000 mon.b (mon.2) 14 : cluster [INF] mon.b calling monitor election 2024-04-15T21:26:06.833 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cluster 2024-04-15T21:26:05.583320+0000 mon.c (mon.1) 12 : cluster [INF] mon.c calling monitor election 2024-04-15T21:26:06.833 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: audit 2024-04-15T21:26:05.584721+0000 mon.a (mon.0) 753 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:26:06.833 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: audit 2024-04-15T21:26:05.585027+0000 mon.a (mon.0) 754 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:26:06.833 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cluster 2024-04-15T21:26:05.585412+0000 mon.a (mon.0) 755 : cluster [INF] mon.a calling monitor election 2024-04-15T21:26:06.833 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: audit 2024-04-15T21:26:05.586864+0000 mon.a (mon.0) 756 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:26:06.833 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cluster 2024-04-15T21:26:05.605638+0000 mon.a (mon.0) 757 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-15T21:26:06.833 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cluster 2024-04-15T21:26:05.613170+0000 mon.a (mon.0) 758 : cluster [DBG] monmap epoch 6 2024-04-15T21:26:06.833 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cluster 2024-04-15T21:26:05.613199+0000 mon.a (mon.0) 759 : cluster [DBG] fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:26:06.833 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cluster 2024-04-15T21:26:05.613223+0000 mon.a (mon.0) 760 : cluster [DBG] last_changed 2024-04-15T21:26:05.570016+0000 2024-04-15T21:26:06.833 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cluster 2024-04-15T21:26:05.613241+0000 mon.a (mon.0) 761 : cluster [DBG] created 2024-04-15T21:18:17.192210+0000 2024-04-15T21:26:06.833 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cluster 2024-04-15T21:26:05.613264+0000 mon.a (mon.0) 762 : cluster [DBG] min_mon_release 19 (squid) 2024-04-15T21:26:06.834 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cluster 2024-04-15T21:26:05.613287+0000 mon.a (mon.0) 763 : cluster [DBG] election_strategy: 1 2024-04-15T21:26:06.834 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cluster 2024-04-15T21:26:05.613306+0000 mon.a (mon.0) 764 : cluster [DBG] 0: [v2:172.21.15.132:3300/0,v1:172.21.15.132:6789/0] mon.a; crush_location {datacenter=a} 2024-04-15T21:26:06.834 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cluster 2024-04-15T21:26:05.613325+0000 mon.a (mon.0) 765 : cluster [DBG] 1: [v2:172.21.15.187:3300/0,v1:172.21.15.187:6789/0] mon.c; crush_location {datacenter=a,rack=3} 2024-04-15T21:26:06.834 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cluster 2024-04-15T21:26:05.613345+0000 mon.a (mon.0) 766 : cluster [DBG] 2: [v2:172.21.15.133:3300/0,v1:172.21.15.133:6789/0] mon.b; crush_location {datacenter=b,rack=2} 2024-04-15T21:26:06.834 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cluster 2024-04-15T21:26:05.614193+0000 mon.a (mon.0) 767 : cluster [DBG] fsmap 2024-04-15T21:26:06.834 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cluster 2024-04-15T21:26:05.614242+0000 mon.a (mon.0) 768 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-04-15T21:26:06.834 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cluster 2024-04-15T21:26:05.614731+0000 mon.a (mon.0) 769 : cluster [DBG] mgrmap e15: a(active, since 6m), standbys: b 2024-04-15T21:26:06.834 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cluster 2024-04-15T21:26:05.614926+0000 mon.a (mon.0) 770 : cluster [INF] overall HEALTH_OK 2024-04-15T21:26:06.834 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: audit 2024-04-15T21:26:05.629826+0000 mon.a (mon.0) 771 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:06.834 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cephadm 2024-04-15T21:26:05.727368+0000 mgr.a (mgr.14152) 277 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-04-15T21:26:06.834 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: audit 2024-04-15T21:26:05.727952+0000 mon.a (mon.0) 772 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:26:06.834 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: audit 2024-04-15T21:26:05.729294+0000 mon.a (mon.0) 773 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:26:06.834 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: audit 2024-04-15T21:26:05.730531+0000 mon.a (mon.0) 774 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:06.834 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: cephadm 2024-04-15T21:26:05.732183+0000 mgr.a (mgr.14152) 278 : cephadm [INF] Reconfiguring daemon mon.a on smithi132 2024-04-15T21:26:06.835 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:06 smithi132 bash[21536]: audit 2024-04-15T21:26:06.577750+0000 mon.a (mon.0) 775 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:06.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cephadm 2024-04-15T21:26:05.492617+0000 mgr.a (mgr.14152) 275 : cephadm [INF] Setting crush location for mon b to {datacenter=b,rack=2} 2024-04-15T21:26:06.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cephadm 2024-04-15T21:26:05.568228+0000 mgr.a (mgr.14152) 276 : cephadm [INF] Setting crush location for mon c to {datacenter=a,rack=3} 2024-04-15T21:26:06.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: audit 2024-04-15T21:26:05.578602+0000 mon.a (mon.0) 752 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd='[{"prefix": "mon set_location", "name": "c", "args": ["datacenter=a", "rack=3"]}]': finished 2024-04-15T21:26:06.915 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cluster 2024-04-15T21:26:05.582228+0000 mon.b (mon.2) 14 : cluster [INF] mon.b calling monitor election 2024-04-15T21:26:06.915 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cluster 2024-04-15T21:26:05.583320+0000 mon.c (mon.1) 12 : cluster [INF] mon.c calling monitor election 2024-04-15T21:26:06.915 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: audit 2024-04-15T21:26:05.584721+0000 mon.a (mon.0) 753 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:26:06.915 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: audit 2024-04-15T21:26:05.585027+0000 mon.a (mon.0) 754 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:26:06.915 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cluster 2024-04-15T21:26:05.585412+0000 mon.a (mon.0) 755 : cluster [INF] mon.a calling monitor election 2024-04-15T21:26:06.915 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: audit 2024-04-15T21:26:05.586864+0000 mon.a (mon.0) 756 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:26:06.915 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cluster 2024-04-15T21:26:05.605638+0000 mon.a (mon.0) 757 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-15T21:26:06.915 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cluster 2024-04-15T21:26:05.613170+0000 mon.a (mon.0) 758 : cluster [DBG] monmap epoch 6 2024-04-15T21:26:06.915 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cluster 2024-04-15T21:26:05.613199+0000 mon.a (mon.0) 759 : cluster [DBG] fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:26:06.915 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cluster 2024-04-15T21:26:05.613223+0000 mon.a (mon.0) 760 : cluster [DBG] last_changed 2024-04-15T21:26:05.570016+0000 2024-04-15T21:26:06.915 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cluster 2024-04-15T21:26:05.613241+0000 mon.a (mon.0) 761 : cluster [DBG] created 2024-04-15T21:18:17.192210+0000 2024-04-15T21:26:06.915 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cluster 2024-04-15T21:26:05.613264+0000 mon.a (mon.0) 762 : cluster [DBG] min_mon_release 19 (squid) 2024-04-15T21:26:06.915 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cluster 2024-04-15T21:26:05.613287+0000 mon.a (mon.0) 763 : cluster [DBG] election_strategy: 1 2024-04-15T21:26:06.915 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cluster 2024-04-15T21:26:05.613306+0000 mon.a (mon.0) 764 : cluster [DBG] 0: [v2:172.21.15.132:3300/0,v1:172.21.15.132:6789/0] mon.a; crush_location {datacenter=a} 2024-04-15T21:26:06.916 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cluster 2024-04-15T21:26:05.613325+0000 mon.a (mon.0) 765 : cluster [DBG] 1: [v2:172.21.15.187:3300/0,v1:172.21.15.187:6789/0] mon.c; crush_location {datacenter=a,rack=3} 2024-04-15T21:26:06.916 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cluster 2024-04-15T21:26:05.613345+0000 mon.a (mon.0) 766 : cluster [DBG] 2: [v2:172.21.15.133:3300/0,v1:172.21.15.133:6789/0] mon.b; crush_location {datacenter=b,rack=2} 2024-04-15T21:26:06.916 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cluster 2024-04-15T21:26:05.614193+0000 mon.a (mon.0) 767 : cluster [DBG] fsmap 2024-04-15T21:26:06.916 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cluster 2024-04-15T21:26:05.614242+0000 mon.a (mon.0) 768 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-04-15T21:26:06.916 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cluster 2024-04-15T21:26:05.614731+0000 mon.a (mon.0) 769 : cluster [DBG] mgrmap e15: a(active, since 6m), standbys: b 2024-04-15T21:26:06.916 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cluster 2024-04-15T21:26:05.614926+0000 mon.a (mon.0) 770 : cluster [INF] overall HEALTH_OK 2024-04-15T21:26:06.916 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: audit 2024-04-15T21:26:05.629826+0000 mon.a (mon.0) 771 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:06.916 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cephadm 2024-04-15T21:26:05.727368+0000 mgr.a (mgr.14152) 277 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-04-15T21:26:06.916 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: audit 2024-04-15T21:26:05.727952+0000 mon.a (mon.0) 772 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:26:06.916 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: audit 2024-04-15T21:26:05.729294+0000 mon.a (mon.0) 773 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:26:06.916 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: audit 2024-04-15T21:26:05.730531+0000 mon.a (mon.0) 774 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:06.916 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: cephadm 2024-04-15T21:26:05.732183+0000 mgr.a (mgr.14152) 278 : cephadm [INF] Reconfiguring daemon mon.a on smithi132 2024-04-15T21:26:06.916 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:06 smithi187 bash[22200]: audit 2024-04-15T21:26:06.577750+0000 mon.a (mon.0) 775 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:07.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:07 smithi132 bash[21536]: audit 2024-04-15T21:26:06.597624+0000 mon.a (mon.0) 776 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:07.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:07 smithi132 bash[21536]: audit 2024-04-15T21:26:06.607167+0000 mon.a (mon.0) 777 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:07.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:07 smithi132 bash[21536]: cluster 2024-04-15T21:26:07.133500+0000 mgr.a (mgr.14152) 279 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:07.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:07 smithi132 bash[21536]: audit 2024-04-15T21:26:07.550360+0000 mon.a (mon.0) 778 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:07.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:07 smithi132 bash[21536]: audit 2024-04-15T21:26:07.556434+0000 mon.a (mon.0) 779 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:07.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:07 smithi187 bash[22200]: audit 2024-04-15T21:26:06.597624+0000 mon.a (mon.0) 776 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:07.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:07 smithi187 bash[22200]: audit 2024-04-15T21:26:06.607167+0000 mon.a (mon.0) 777 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:07.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:07 smithi187 bash[22200]: cluster 2024-04-15T21:26:07.133500+0000 mgr.a (mgr.14152) 279 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:07.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:07 smithi187 bash[22200]: audit 2024-04-15T21:26:07.550360+0000 mon.a (mon.0) 778 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:07.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:07 smithi187 bash[22200]: audit 2024-04-15T21:26:07.556434+0000 mon.a (mon.0) 779 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:07.995 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:07 smithi133 bash[22165]: audit 2024-04-15T21:26:06.597624+0000 mon.a (mon.0) 776 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:07.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:07 smithi133 bash[22165]: audit 2024-04-15T21:26:06.607167+0000 mon.a (mon.0) 777 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:07.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:07 smithi133 bash[22165]: cluster 2024-04-15T21:26:07.133500+0000 mgr.a (mgr.14152) 279 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:07.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:07 smithi133 bash[22165]: audit 2024-04-15T21:26:07.550360+0000 mon.a (mon.0) 778 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:07.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:07 smithi133 bash[22165]: audit 2024-04-15T21:26:07.556434+0000 mon.a (mon.0) 779 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:08.867 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:08 smithi132 bash[21536]: cephadm 2024-04-15T21:26:07.602998+0000 mgr.a (mgr.14152) 280 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-04-15T21:26:08.867 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:08 smithi132 bash[21536]: audit 2024-04-15T21:26:07.603680+0000 mon.a (mon.0) 780 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:26:08.867 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:08 smithi132 bash[21536]: audit 2024-04-15T21:26:07.606179+0000 mon.a (mon.0) 781 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:26:08.867 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:08 smithi132 bash[21536]: audit 2024-04-15T21:26:07.612100+0000 mon.a (mon.0) 782 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:08.867 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:08 smithi132 bash[21536]: cephadm 2024-04-15T21:26:07.614070+0000 mgr.a (mgr.14152) 281 : cephadm [INF] Reconfiguring daemon mgr.a on smithi132 2024-04-15T21:26:08.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:08 smithi187 bash[22200]: cephadm 2024-04-15T21:26:07.602998+0000 mgr.a (mgr.14152) 280 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-04-15T21:26:08.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:08 smithi187 bash[22200]: audit 2024-04-15T21:26:07.603680+0000 mon.a (mon.0) 780 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:26:08.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:08 smithi187 bash[22200]: audit 2024-04-15T21:26:07.606179+0000 mon.a (mon.0) 781 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:26:08.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:08 smithi187 bash[22200]: audit 2024-04-15T21:26:07.612100+0000 mon.a (mon.0) 782 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:08.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:08 smithi187 bash[22200]: cephadm 2024-04-15T21:26:07.614070+0000 mgr.a (mgr.14152) 281 : cephadm [INF] Reconfiguring daemon mgr.a on smithi132 2024-04-15T21:26:08.995 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:08 smithi133 bash[22165]: cephadm 2024-04-15T21:26:07.602998+0000 mgr.a (mgr.14152) 280 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-04-15T21:26:08.995 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:08 smithi133 bash[22165]: audit 2024-04-15T21:26:07.603680+0000 mon.a (mon.0) 780 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:26:08.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:08 smithi133 bash[22165]: audit 2024-04-15T21:26:07.606179+0000 mon.a (mon.0) 781 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:26:08.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:08 smithi133 bash[22165]: audit 2024-04-15T21:26:07.612100+0000 mon.a (mon.0) 782 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:08.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:08 smithi133 bash[22165]: cephadm 2024-04-15T21:26:07.614070+0000 mgr.a (mgr.14152) 281 : cephadm [INF] Reconfiguring daemon mgr.a on smithi132 2024-04-15T21:26:09.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:09 smithi132 bash[21536]: cluster 2024-04-15T21:26:09.133935+0000 mgr.a (mgr.14152) 282 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:09.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:09 smithi132 bash[21536]: audit 2024-04-15T21:26:09.521557+0000 mon.a (mon.0) 783 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:09.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:09 smithi132 bash[21536]: audit 2024-04-15T21:26:09.529616+0000 mon.a (mon.0) 784 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:09.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:09 smithi132 bash[21536]: audit 2024-04-15T21:26:09.536816+0000 mon.a (mon.0) 785 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-15T21:26:09.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:09 smithi132 bash[21536]: audit 2024-04-15T21:26:09.538462+0000 mon.a (mon.0) 786 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:09.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:09 smithi187 bash[22200]: cluster 2024-04-15T21:26:09.133935+0000 mgr.a (mgr.14152) 282 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:09.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:09 smithi187 bash[22200]: audit 2024-04-15T21:26:09.521557+0000 mon.a (mon.0) 783 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:09.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:09 smithi187 bash[22200]: audit 2024-04-15T21:26:09.529616+0000 mon.a (mon.0) 784 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:09.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:09 smithi187 bash[22200]: audit 2024-04-15T21:26:09.536816+0000 mon.a (mon.0) 785 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-15T21:26:09.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:09 smithi187 bash[22200]: audit 2024-04-15T21:26:09.538462+0000 mon.a (mon.0) 786 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:09.995 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:09 smithi133 bash[22165]: cluster 2024-04-15T21:26:09.133935+0000 mgr.a (mgr.14152) 282 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:09.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:09 smithi133 bash[22165]: audit 2024-04-15T21:26:09.521557+0000 mon.a (mon.0) 783 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:09.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:09 smithi133 bash[22165]: audit 2024-04-15T21:26:09.529616+0000 mon.a (mon.0) 784 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:09.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:09 smithi133 bash[22165]: audit 2024-04-15T21:26:09.536816+0000 mon.a (mon.0) 785 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-15T21:26:09.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:09 smithi133 bash[22165]: audit 2024-04-15T21:26:09.538462+0000 mon.a (mon.0) 786 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:10.863 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:10 smithi132 bash[21536]: cephadm 2024-04-15T21:26:09.536197+0000 mgr.a (mgr.14152) 283 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-04-15T21:26:10.863 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:10 smithi132 bash[21536]: cephadm 2024-04-15T21:26:09.541047+0000 mgr.a (mgr.14152) 284 : cephadm [INF] Reconfiguring daemon osd.0 on smithi132 2024-04-15T21:26:10.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:10 smithi187 bash[22200]: cephadm 2024-04-15T21:26:09.536197+0000 mgr.a (mgr.14152) 283 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-04-15T21:26:10.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:10 smithi187 bash[22200]: cephadm 2024-04-15T21:26:09.541047+0000 mgr.a (mgr.14152) 284 : cephadm [INF] Reconfiguring daemon osd.0 on smithi132 2024-04-15T21:26:10.995 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:10 smithi133 bash[22165]: cephadm 2024-04-15T21:26:09.536197+0000 mgr.a (mgr.14152) 283 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-04-15T21:26:10.995 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:10 smithi133 bash[22165]: cephadm 2024-04-15T21:26:09.541047+0000 mgr.a (mgr.14152) 284 : cephadm [INF] Reconfiguring daemon osd.0 on smithi132 2024-04-15T21:26:12.462 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:12 smithi187 bash[22200]: cluster 2024-04-15T21:26:11.134293+0000 mgr.a (mgr.14152) 285 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:12.462 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:12 smithi187 bash[22200]: audit 2024-04-15T21:26:11.203228+0000 mon.a (mon.0) 787 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:12.462 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:12 smithi187 bash[22200]: audit 2024-04-15T21:26:11.210556+0000 mon.a (mon.0) 788 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:12.462 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:12 smithi187 bash[22200]: audit 2024-04-15T21:26:11.218681+0000 mon.a (mon.0) 789 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:12.462 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:12 smithi187 bash[22200]: audit 2024-04-15T21:26:11.467352+0000 mon.a (mon.0) 790 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:12.462 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:12 smithi187 bash[22200]: audit 2024-04-15T21:26:11.473434+0000 mon.a (mon.0) 791 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:12.462 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:12 smithi187 bash[22200]: audit 2024-04-15T21:26:11.509747+0000 mon.a (mon.0) 792 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:26:12.462 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:12 smithi187 bash[22200]: audit 2024-04-15T21:26:11.511707+0000 mon.a (mon.0) 793 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:26:12.462 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:12 smithi187 bash[22200]: audit 2024-04-15T21:26:11.513421+0000 mon.a (mon.0) 794 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:12.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:12 smithi133 bash[22165]: cluster 2024-04-15T21:26:11.134293+0000 mgr.a (mgr.14152) 285 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:12.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:12 smithi133 bash[22165]: audit 2024-04-15T21:26:11.203228+0000 mon.a (mon.0) 787 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:12.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:12 smithi133 bash[22165]: audit 2024-04-15T21:26:11.210556+0000 mon.a (mon.0) 788 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:12.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:12 smithi133 bash[22165]: audit 2024-04-15T21:26:11.218681+0000 mon.a (mon.0) 789 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:12.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:12 smithi133 bash[22165]: audit 2024-04-15T21:26:11.467352+0000 mon.a (mon.0) 790 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:12.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:12 smithi133 bash[22165]: audit 2024-04-15T21:26:11.473434+0000 mon.a (mon.0) 791 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:12.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:12 smithi133 bash[22165]: audit 2024-04-15T21:26:11.509747+0000 mon.a (mon.0) 792 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:26:12.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:12 smithi133 bash[22165]: audit 2024-04-15T21:26:11.511707+0000 mon.a (mon.0) 793 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:26:12.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:12 smithi133 bash[22165]: audit 2024-04-15T21:26:11.513421+0000 mon.a (mon.0) 794 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:12.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:12 smithi132 bash[21536]: cluster 2024-04-15T21:26:11.134293+0000 mgr.a (mgr.14152) 285 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:12.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:12 smithi132 bash[21536]: audit 2024-04-15T21:26:11.203228+0000 mon.a (mon.0) 787 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:12.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:12 smithi132 bash[21536]: audit 2024-04-15T21:26:11.210556+0000 mon.a (mon.0) 788 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:12.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:12 smithi132 bash[21536]: audit 2024-04-15T21:26:11.218681+0000 mon.a (mon.0) 789 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:12.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:12 smithi132 bash[21536]: audit 2024-04-15T21:26:11.467352+0000 mon.a (mon.0) 790 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:12.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:12 smithi132 bash[21536]: audit 2024-04-15T21:26:11.473434+0000 mon.a (mon.0) 791 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:12.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:12 smithi132 bash[21536]: audit 2024-04-15T21:26:11.509747+0000 mon.a (mon.0) 792 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:26:12.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:12 smithi132 bash[21536]: audit 2024-04-15T21:26:11.511707+0000 mon.a (mon.0) 793 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:26:12.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:12 smithi132 bash[21536]: audit 2024-04-15T21:26:11.513421+0000 mon.a (mon.0) 794 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:13.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:13 smithi133 bash[22165]: cephadm 2024-04-15T21:26:11.508972+0000 mgr.a (mgr.14152) 286 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-04-15T21:26:13.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:13 smithi133 bash[22165]: cephadm 2024-04-15T21:26:11.515398+0000 mgr.a (mgr.14152) 287 : cephadm [INF] Reconfiguring daemon mon.b on smithi133 2024-04-15T21:26:13.557 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:13 smithi187 bash[22200]: cephadm 2024-04-15T21:26:11.508972+0000 mgr.a (mgr.14152) 286 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-04-15T21:26:13.557 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:13 smithi187 bash[22200]: cephadm 2024-04-15T21:26:11.515398+0000 mgr.a (mgr.14152) 287 : cephadm [INF] Reconfiguring daemon mon.b on smithi133 2024-04-15T21:26:13.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:13 smithi132 bash[21536]: cephadm 2024-04-15T21:26:11.508972+0000 mgr.a (mgr.14152) 286 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-04-15T21:26:13.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:13 smithi132 bash[21536]: cephadm 2024-04-15T21:26:11.515398+0000 mgr.a (mgr.14152) 287 : cephadm [INF] Reconfiguring daemon mon.b on smithi133 2024-04-15T21:26:14.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:14 smithi187 bash[22200]: cluster 2024-04-15T21:26:13.134775+0000 mgr.a (mgr.14152) 288 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:14.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:14 smithi187 bash[22200]: audit 2024-04-15T21:26:13.594134+0000 mon.a (mon.0) 795 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:14.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:14 smithi187 bash[22200]: audit 2024-04-15T21:26:13.602846+0000 mon.a (mon.0) 796 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:14.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:14 smithi187 bash[22200]: audit 2024-04-15T21:26:13.637777+0000 mon.a (mon.0) 797 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:26:14.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:14 smithi187 bash[22200]: audit 2024-04-15T21:26:13.639786+0000 mon.a (mon.0) 798 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:26:14.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:14 smithi187 bash[22200]: audit 2024-04-15T21:26:13.641509+0000 mon.a (mon.0) 799 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:14.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:14 smithi133 bash[22165]: cluster 2024-04-15T21:26:13.134775+0000 mgr.a (mgr.14152) 288 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:14.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:14 smithi133 bash[22165]: audit 2024-04-15T21:26:13.594134+0000 mon.a (mon.0) 795 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:14.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:14 smithi133 bash[22165]: audit 2024-04-15T21:26:13.602846+0000 mon.a (mon.0) 796 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:14.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:14 smithi133 bash[22165]: audit 2024-04-15T21:26:13.637777+0000 mon.a (mon.0) 797 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:26:14.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:14 smithi133 bash[22165]: audit 2024-04-15T21:26:13.639786+0000 mon.a (mon.0) 798 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:26:14.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:14 smithi133 bash[22165]: audit 2024-04-15T21:26:13.641509+0000 mon.a (mon.0) 799 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:14.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:14 smithi132 bash[21536]: cluster 2024-04-15T21:26:13.134775+0000 mgr.a (mgr.14152) 288 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:14.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:14 smithi132 bash[21536]: audit 2024-04-15T21:26:13.594134+0000 mon.a (mon.0) 795 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:14.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:14 smithi132 bash[21536]: audit 2024-04-15T21:26:13.602846+0000 mon.a (mon.0) 796 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:14.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:14 smithi132 bash[21536]: audit 2024-04-15T21:26:13.637777+0000 mon.a (mon.0) 797 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:26:14.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:14 smithi132 bash[21536]: audit 2024-04-15T21:26:13.639786+0000 mon.a (mon.0) 798 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:26:14.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:14 smithi132 bash[21536]: audit 2024-04-15T21:26:13.641509+0000 mon.a (mon.0) 799 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:15.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:15 smithi133 bash[22165]: cephadm 2024-04-15T21:26:13.637063+0000 mgr.a (mgr.14152) 289 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-04-15T21:26:15.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:15 smithi133 bash[22165]: cephadm 2024-04-15T21:26:13.643430+0000 mgr.a (mgr.14152) 290 : cephadm [INF] Reconfiguring daemon mgr.b on smithi133 2024-04-15T21:26:15.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:15 smithi132 bash[21536]: cephadm 2024-04-15T21:26:13.637063+0000 mgr.a (mgr.14152) 289 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-04-15T21:26:15.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:15 smithi132 bash[21536]: cephadm 2024-04-15T21:26:13.643430+0000 mgr.a (mgr.14152) 290 : cephadm [INF] Reconfiguring daemon mgr.b on smithi133 2024-04-15T21:26:15.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:15 smithi187 bash[22200]: cephadm 2024-04-15T21:26:13.637063+0000 mgr.a (mgr.14152) 289 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-04-15T21:26:15.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:15 smithi187 bash[22200]: cephadm 2024-04-15T21:26:13.643430+0000 mgr.a (mgr.14152) 290 : cephadm [INF] Reconfiguring daemon mgr.b on smithi133 2024-04-15T21:26:16.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:16 smithi133 bash[22165]: cluster 2024-04-15T21:26:15.135254+0000 mgr.a (mgr.14152) 291 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:16.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:16 smithi133 bash[22165]: audit 2024-04-15T21:26:15.521881+0000 mon.a (mon.0) 800 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:16.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:16 smithi133 bash[22165]: audit 2024-04-15T21:26:15.530922+0000 mon.a (mon.0) 801 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:16.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:16 smithi133 bash[22165]: audit 2024-04-15T21:26:15.564117+0000 mon.a (mon.0) 802 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-15T21:26:16.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:16 smithi133 bash[22165]: audit 2024-04-15T21:26:15.565951+0000 mon.a (mon.0) 803 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:16.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:16 smithi132 bash[21536]: cluster 2024-04-15T21:26:15.135254+0000 mgr.a (mgr.14152) 291 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:16.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:16 smithi132 bash[21536]: audit 2024-04-15T21:26:15.521881+0000 mon.a (mon.0) 800 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:16.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:16 smithi132 bash[21536]: audit 2024-04-15T21:26:15.530922+0000 mon.a (mon.0) 801 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:16.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:16 smithi132 bash[21536]: audit 2024-04-15T21:26:15.564117+0000 mon.a (mon.0) 802 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-15T21:26:16.627 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:16 smithi132 bash[21536]: audit 2024-04-15T21:26:15.565951+0000 mon.a (mon.0) 803 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:16.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:16 smithi187 bash[22200]: cluster 2024-04-15T21:26:15.135254+0000 mgr.a (mgr.14152) 291 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:16.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:16 smithi187 bash[22200]: audit 2024-04-15T21:26:15.521881+0000 mon.a (mon.0) 800 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:16.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:16 smithi187 bash[22200]: audit 2024-04-15T21:26:15.530922+0000 mon.a (mon.0) 801 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:16.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:16 smithi187 bash[22200]: audit 2024-04-15T21:26:15.564117+0000 mon.a (mon.0) 802 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-15T21:26:16.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:16 smithi187 bash[22200]: audit 2024-04-15T21:26:15.565951+0000 mon.a (mon.0) 803 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:17.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:17 smithi133 bash[22165]: cephadm 2024-04-15T21:26:15.563409+0000 mgr.a (mgr.14152) 292 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-04-15T21:26:17.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:17 smithi133 bash[22165]: cephadm 2024-04-15T21:26:15.568786+0000 mgr.a (mgr.14152) 293 : cephadm [INF] Reconfiguring daemon osd.1 on smithi133 2024-04-15T21:26:17.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:17 smithi132 bash[21536]: cephadm 2024-04-15T21:26:15.563409+0000 mgr.a (mgr.14152) 292 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-04-15T21:26:17.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:17 smithi132 bash[21536]: cephadm 2024-04-15T21:26:15.568786+0000 mgr.a (mgr.14152) 293 : cephadm [INF] Reconfiguring daemon osd.1 on smithi133 2024-04-15T21:26:17.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:17 smithi187 bash[22200]: cephadm 2024-04-15T21:26:15.563409+0000 mgr.a (mgr.14152) 292 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-04-15T21:26:17.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:17 smithi187 bash[22200]: cephadm 2024-04-15T21:26:15.568786+0000 mgr.a (mgr.14152) 293 : cephadm [INF] Reconfiguring daemon osd.1 on smithi133 2024-04-15T21:26:18.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:18 smithi132 bash[21536]: cluster 2024-04-15T21:26:17.135766+0000 mgr.a (mgr.14152) 294 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:18.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:18 smithi132 bash[21536]: audit 2024-04-15T21:26:17.328700+0000 mon.a (mon.0) 804 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:18.629 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:18 smithi132 bash[21536]: audit 2024-04-15T21:26:17.337481+0000 mon.a (mon.0) 805 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:18.630 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:18 smithi132 bash[21536]: cephadm 2024-04-15T21:26:17.387062+0000 mgr.a (mgr.14152) 295 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-04-15T21:26:18.630 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:18 smithi132 bash[21536]: audit 2024-04-15T21:26:17.387700+0000 mon.a (mon.0) 806 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:26:18.630 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:18 smithi132 bash[21536]: audit 2024-04-15T21:26:17.389587+0000 mon.a (mon.0) 807 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:26:18.630 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:18 smithi132 bash[21536]: audit 2024-04-15T21:26:17.391385+0000 mon.a (mon.0) 808 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:18.630 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:18 smithi132 bash[21536]: cephadm 2024-04-15T21:26:17.393458+0000 mgr.a (mgr.14152) 296 : cephadm [INF] Reconfiguring daemon mon.c on smithi187 2024-04-15T21:26:18.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:18 smithi187 bash[22200]: cluster 2024-04-15T21:26:17.135766+0000 mgr.a (mgr.14152) 294 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:18.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:18 smithi187 bash[22200]: audit 2024-04-15T21:26:17.328700+0000 mon.a (mon.0) 804 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:18.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:18 smithi187 bash[22200]: audit 2024-04-15T21:26:17.337481+0000 mon.a (mon.0) 805 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:18.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:18 smithi187 bash[22200]: cephadm 2024-04-15T21:26:17.387062+0000 mgr.a (mgr.14152) 295 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-04-15T21:26:18.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:18 smithi187 bash[22200]: audit 2024-04-15T21:26:17.387700+0000 mon.a (mon.0) 806 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:26:18.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:18 smithi187 bash[22200]: audit 2024-04-15T21:26:17.389587+0000 mon.a (mon.0) 807 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:26:18.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:18 smithi187 bash[22200]: audit 2024-04-15T21:26:17.391385+0000 mon.a (mon.0) 808 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:18.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:18 smithi187 bash[22200]: cephadm 2024-04-15T21:26:17.393458+0000 mgr.a (mgr.14152) 296 : cephadm [INF] Reconfiguring daemon mon.c on smithi187 2024-04-15T21:26:18.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:18 smithi133 bash[22165]: cluster 2024-04-15T21:26:17.135766+0000 mgr.a (mgr.14152) 294 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:18.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:18 smithi133 bash[22165]: audit 2024-04-15T21:26:17.328700+0000 mon.a (mon.0) 804 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:18.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:18 smithi133 bash[22165]: audit 2024-04-15T21:26:17.337481+0000 mon.a (mon.0) 805 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:18.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:18 smithi133 bash[22165]: cephadm 2024-04-15T21:26:17.387062+0000 mgr.a (mgr.14152) 295 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-04-15T21:26:18.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:18 smithi133 bash[22165]: audit 2024-04-15T21:26:17.387700+0000 mon.a (mon.0) 806 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:26:18.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:18 smithi133 bash[22165]: audit 2024-04-15T21:26:17.389587+0000 mon.a (mon.0) 807 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:26:18.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:18 smithi133 bash[22165]: audit 2024-04-15T21:26:17.391385+0000 mon.a (mon.0) 808 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:18.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:18 smithi133 bash[22165]: cephadm 2024-04-15T21:26:17.393458+0000 mgr.a (mgr.14152) 296 : cephadm [INF] Reconfiguring daemon mon.c on smithi187 2024-04-15T21:26:19.995 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:19 smithi133 bash[22165]: audit 2024-04-15T21:26:18.719114+0000 mon.a (mon.0) 809 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:19.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:19 smithi133 bash[22165]: audit 2024-04-15T21:26:18.727900+0000 mon.a (mon.0) 810 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:19.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:19 smithi133 bash[22165]: audit 2024-04-15T21:26:18.738489+0000 mon.a (mon.0) 811 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:19.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:19 smithi133 bash[22165]: cluster 2024-04-15T21:26:19.136300+0000 mgr.a (mgr.14152) 297 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:19.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:19 smithi133 bash[22165]: audit 2024-04-15T21:26:19.487189+0000 mon.a (mon.0) 812 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:19.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:19 smithi133 bash[22165]: audit 2024-04-15T21:26:19.495650+0000 mon.a (mon.0) 813 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:19.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:19 smithi133 bash[22165]: audit 2024-04-15T21:26:19.515363+0000 mon.a (mon.0) 814 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-15T21:26:19.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:19 smithi133 bash[22165]: audit 2024-04-15T21:26:19.517163+0000 mon.a (mon.0) 815 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:20.126 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:19 smithi132 bash[21536]: audit 2024-04-15T21:26:18.719114+0000 mon.a (mon.0) 809 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:20.126 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:19 smithi132 bash[21536]: audit 2024-04-15T21:26:18.727900+0000 mon.a (mon.0) 810 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:20.126 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:19 smithi132 bash[21536]: audit 2024-04-15T21:26:18.738489+0000 mon.a (mon.0) 811 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:20.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:19 smithi132 bash[21536]: cluster 2024-04-15T21:26:19.136300+0000 mgr.a (mgr.14152) 297 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:20.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:19 smithi132 bash[21536]: audit 2024-04-15T21:26:19.487189+0000 mon.a (mon.0) 812 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:20.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:19 smithi132 bash[21536]: audit 2024-04-15T21:26:19.495650+0000 mon.a (mon.0) 813 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:20.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:19 smithi132 bash[21536]: audit 2024-04-15T21:26:19.515363+0000 mon.a (mon.0) 814 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-15T21:26:20.127 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:19 smithi132 bash[21536]: audit 2024-04-15T21:26:19.517163+0000 mon.a (mon.0) 815 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:20.163 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:19 smithi187 bash[22200]: audit 2024-04-15T21:26:18.719114+0000 mon.a (mon.0) 809 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:20.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:19 smithi187 bash[22200]: audit 2024-04-15T21:26:18.727900+0000 mon.a (mon.0) 810 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:20.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:19 smithi187 bash[22200]: audit 2024-04-15T21:26:18.738489+0000 mon.a (mon.0) 811 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:20.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:19 smithi187 bash[22200]: cluster 2024-04-15T21:26:19.136300+0000 mgr.a (mgr.14152) 297 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:20.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:19 smithi187 bash[22200]: audit 2024-04-15T21:26:19.487189+0000 mon.a (mon.0) 812 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:20.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:19 smithi187 bash[22200]: audit 2024-04-15T21:26:19.495650+0000 mon.a (mon.0) 813 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:20.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:19 smithi187 bash[22200]: audit 2024-04-15T21:26:19.515363+0000 mon.a (mon.0) 814 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-15T21:26:20.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:19 smithi187 bash[22200]: audit 2024-04-15T21:26:19.517163+0000 mon.a (mon.0) 815 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:26:20.995 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:20 smithi133 bash[22165]: cephadm 2024-04-15T21:26:19.514734+0000 mgr.a (mgr.14152) 298 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-04-15T21:26:20.995 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:20 smithi133 bash[22165]: cephadm 2024-04-15T21:26:19.520017+0000 mgr.a (mgr.14152) 299 : cephadm [INF] Reconfiguring daemon osd.2 on smithi187 2024-04-15T21:26:21.055 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:20 smithi187 bash[22200]: cephadm 2024-04-15T21:26:19.514734+0000 mgr.a (mgr.14152) 298 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-04-15T21:26:21.055 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:20 smithi187 bash[22200]: cephadm 2024-04-15T21:26:19.520017+0000 mgr.a (mgr.14152) 299 : cephadm [INF] Reconfiguring daemon osd.2 on smithi187 2024-04-15T21:26:21.126 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:20 smithi132 bash[21536]: cephadm 2024-04-15T21:26:19.514734+0000 mgr.a (mgr.14152) 298 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-04-15T21:26:21.126 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:20 smithi132 bash[21536]: cephadm 2024-04-15T21:26:19.520017+0000 mgr.a (mgr.14152) 299 : cephadm [INF] Reconfiguring daemon osd.2 on smithi187 2024-04-15T21:26:21.995 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:21 smithi133 bash[22165]: cluster 2024-04-15T21:26:21.136834+0000 mgr.a (mgr.14152) 300 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:21.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:21 smithi133 bash[22165]: audit 2024-04-15T21:26:21.611553+0000 mon.a (mon.0) 816 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:21.996 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:21 smithi133 bash[22165]: audit 2024-04-15T21:26:21.620020+0000 mon.a (mon.0) 817 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:22.126 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:21 smithi132 bash[21536]: cluster 2024-04-15T21:26:21.136834+0000 mgr.a (mgr.14152) 300 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:22.126 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:21 smithi132 bash[21536]: audit 2024-04-15T21:26:21.611553+0000 mon.a (mon.0) 816 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:22.126 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:21 smithi132 bash[21536]: audit 2024-04-15T21:26:21.620020+0000 mon.a (mon.0) 817 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:22.163 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:21 smithi187 bash[22200]: cluster 2024-04-15T21:26:21.136834+0000 mgr.a (mgr.14152) 300 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:22.163 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:21 smithi187 bash[22200]: audit 2024-04-15T21:26:21.611553+0000 mon.a (mon.0) 816 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:22.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:21 smithi187 bash[22200]: audit 2024-04-15T21:26:21.620020+0000 mon.a (mon.0) 817 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:24.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:24 smithi132 bash[21536]: cluster 2024-04-15T21:26:23.137309+0000 mgr.a (mgr.14152) 301 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:24.658 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:24 smithi133 bash[22165]: cluster 2024-04-15T21:26:23.137309+0000 mgr.a (mgr.14152) 301 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:24.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:24 smithi187 bash[22200]: cluster 2024-04-15T21:26:23.137309+0000 mgr.a (mgr.14152) 301 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:26.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:26 smithi132 bash[21536]: cluster 2024-04-15T21:26:25.137812+0000 mgr.a (mgr.14152) 302 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:26.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:26 smithi187 bash[22200]: cluster 2024-04-15T21:26:25.137812+0000 mgr.a (mgr.14152) 302 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:26.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:26 smithi133 bash[22165]: cluster 2024-04-15T21:26:25.137812+0000 mgr.a (mgr.14152) 302 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:28.126 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:27 smithi132 bash[21536]: audit 2024-04-15T21:26:26.789755+0000 mon.a (mon.0) 818 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:28.126 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:27 smithi132 bash[21536]: audit 2024-04-15T21:26:26.800541+0000 mon.a (mon.0) 819 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:28.126 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:27 smithi132 bash[21536]: audit 2024-04-15T21:26:26.812670+0000 mon.a (mon.0) 820 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:28.126 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:27 smithi132 bash[21536]: cluster 2024-04-15T21:26:27.138265+0000 mgr.a (mgr.14152) 303 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:28.163 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:27 smithi187 bash[22200]: audit 2024-04-15T21:26:26.789755+0000 mon.a (mon.0) 818 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:28.163 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:27 smithi187 bash[22200]: audit 2024-04-15T21:26:26.800541+0000 mon.a (mon.0) 819 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:28.163 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:27 smithi187 bash[22200]: audit 2024-04-15T21:26:26.812670+0000 mon.a (mon.0) 820 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:28.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:27 smithi187 bash[22200]: cluster 2024-04-15T21:26:27.138265+0000 mgr.a (mgr.14152) 303 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:28.245 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:27 smithi133 bash[22165]: audit 2024-04-15T21:26:26.789755+0000 mon.a (mon.0) 818 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:28.245 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:27 smithi133 bash[22165]: audit 2024-04-15T21:26:26.800541+0000 mon.a (mon.0) 819 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:28.245 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:27 smithi133 bash[22165]: audit 2024-04-15T21:26:26.812670+0000 mon.a (mon.0) 820 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:28.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:27 smithi133 bash[22165]: cluster 2024-04-15T21:26:27.138265+0000 mgr.a (mgr.14152) 303 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:30.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:30 smithi133 bash[22165]: cluster 2024-04-15T21:26:29.138781+0000 mgr.a (mgr.14152) 304 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:30.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:30 smithi132 bash[21536]: cluster 2024-04-15T21:26:29.138781+0000 mgr.a (mgr.14152) 304 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:30.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:30 smithi187 bash[22200]: cluster 2024-04-15T21:26:29.138781+0000 mgr.a (mgr.14152) 304 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:32.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:32 smithi132 bash[21536]: cluster 2024-04-15T21:26:31.139293+0000 mgr.a (mgr.14152) 305 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:32.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:32 smithi132 bash[21536]: audit 2024-04-15T21:26:31.380985+0000 mon.a (mon.0) 821 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:32.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:32 smithi132 bash[21536]: audit 2024-04-15T21:26:31.391028+0000 mon.a (mon.0) 822 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:32.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:32 smithi132 bash[21536]: audit 2024-04-15T21:26:31.402519+0000 mon.a (mon.0) 823 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:32.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:32 smithi187 bash[22200]: cluster 2024-04-15T21:26:31.139293+0000 mgr.a (mgr.14152) 305 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:32.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:32 smithi187 bash[22200]: audit 2024-04-15T21:26:31.380985+0000 mon.a (mon.0) 821 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:32.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:32 smithi187 bash[22200]: audit 2024-04-15T21:26:31.391028+0000 mon.a (mon.0) 822 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:32.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:32 smithi187 bash[22200]: audit 2024-04-15T21:26:31.402519+0000 mon.a (mon.0) 823 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:32.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:32 smithi133 bash[22165]: cluster 2024-04-15T21:26:31.139293+0000 mgr.a (mgr.14152) 305 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:32.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:32 smithi133 bash[22165]: audit 2024-04-15T21:26:31.380985+0000 mon.a (mon.0) 821 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:32.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:32 smithi133 bash[22165]: audit 2024-04-15T21:26:31.391028+0000 mon.a (mon.0) 822 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:32.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:32 smithi133 bash[22165]: audit 2024-04-15T21:26:31.402519+0000 mon.a (mon.0) 823 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:34.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:34 smithi187 bash[22200]: cluster 2024-04-15T21:26:33.139833+0000 mgr.a (mgr.14152) 306 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:34.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:34 smithi133 bash[22165]: cluster 2024-04-15T21:26:33.139833+0000 mgr.a (mgr.14152) 306 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:34.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:34 smithi132 bash[21536]: cluster 2024-04-15T21:26:33.139833+0000 mgr.a (mgr.14152) 306 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:36.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:36 smithi187 bash[22200]: cluster 2024-04-15T21:26:35.140319+0000 mgr.a (mgr.14152) 307 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:36.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:36 smithi133 bash[22165]: cluster 2024-04-15T21:26:35.140319+0000 mgr.a (mgr.14152) 307 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:36.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:36 smithi132 bash[21536]: cluster 2024-04-15T21:26:35.140319+0000 mgr.a (mgr.14152) 307 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:38.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:38 smithi187 bash[22200]: cluster 2024-04-15T21:26:37.140856+0000 mgr.a (mgr.14152) 308 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:38.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:38 smithi133 bash[22165]: cluster 2024-04-15T21:26:37.140856+0000 mgr.a (mgr.14152) 308 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:38.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:38 smithi132 bash[21536]: cluster 2024-04-15T21:26:37.140856+0000 mgr.a (mgr.14152) 308 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:40.245 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:39 smithi133 bash[22165]: audit 2024-04-15T21:26:38.931124+0000 mon.a (mon.0) 824 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:40.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:39 smithi133 bash[22165]: audit 2024-04-15T21:26:38.939927+0000 mon.a (mon.0) 825 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:40.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:39 smithi133 bash[22165]: audit 2024-04-15T21:26:38.949995+0000 mon.a (mon.0) 826 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:40.246 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:39 smithi133 bash[22165]: cluster 2024-04-15T21:26:39.141385+0000 mgr.a (mgr.14152) 309 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:40.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:39 smithi132 bash[21536]: audit 2024-04-15T21:26:38.931124+0000 mon.a (mon.0) 824 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:40.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:39 smithi132 bash[21536]: audit 2024-04-15T21:26:38.939927+0000 mon.a (mon.0) 825 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:40.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:39 smithi132 bash[21536]: audit 2024-04-15T21:26:38.949995+0000 mon.a (mon.0) 826 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:40.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:39 smithi132 bash[21536]: cluster 2024-04-15T21:26:39.141385+0000 mgr.a (mgr.14152) 309 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:40.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:39 smithi187 bash[22200]: audit 2024-04-15T21:26:38.931124+0000 mon.a (mon.0) 824 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:40.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:39 smithi187 bash[22200]: audit 2024-04-15T21:26:38.939927+0000 mon.a (mon.0) 825 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:40.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:39 smithi187 bash[22200]: audit 2024-04-15T21:26:38.949995+0000 mon.a (mon.0) 826 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:40.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:39 smithi187 bash[22200]: cluster 2024-04-15T21:26:39.141385+0000 mgr.a (mgr.14152) 309 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:42.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:42 smithi133 bash[22165]: cluster 2024-04-15T21:26:41.141835+0000 mgr.a (mgr.14152) 310 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:42.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:42 smithi132 bash[21536]: cluster 2024-04-15T21:26:41.141835+0000 mgr.a (mgr.14152) 310 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:42.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:42 smithi187 bash[22200]: cluster 2024-04-15T21:26:41.141835+0000 mgr.a (mgr.14152) 310 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:44.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:44 smithi133 bash[22165]: cluster 2024-04-15T21:26:43.142380+0000 mgr.a (mgr.14152) 311 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:44.547 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:44 smithi132 bash[21536]: cluster 2024-04-15T21:26:43.142380+0000 mgr.a (mgr.14152) 311 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:44.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:44 smithi187 bash[22200]: cluster 2024-04-15T21:26:43.142380+0000 mgr.a (mgr.14152) 311 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:46.463 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:46 smithi132 bash[21536]: cluster 2024-04-15T21:26:45.142891+0000 mgr.a (mgr.14152) 312 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:46.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:46 smithi133 bash[22165]: cluster 2024-04-15T21:26:45.142891+0000 mgr.a (mgr.14152) 312 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:46.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:46 smithi187 bash[22200]: cluster 2024-04-15T21:26:45.142891+0000 mgr.a (mgr.14152) 312 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:48.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:48 smithi132 bash[21536]: audit 2024-04-15T21:26:47.016347+0000 mon.a (mon.0) 827 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:48.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:48 smithi132 bash[21536]: audit 2024-04-15T21:26:47.027278+0000 mon.a (mon.0) 828 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:48.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:48 smithi132 bash[21536]: audit 2024-04-15T21:26:47.039631+0000 mon.a (mon.0) 829 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:48.376 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:48 smithi132 bash[21536]: cluster 2024-04-15T21:26:47.143422+0000 mgr.a (mgr.14152) 313 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:48.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:48 smithi187 bash[22200]: audit 2024-04-15T21:26:47.016347+0000 mon.a (mon.0) 827 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:48.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:48 smithi187 bash[22200]: audit 2024-04-15T21:26:47.027278+0000 mon.a (mon.0) 828 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:48.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:48 smithi187 bash[22200]: audit 2024-04-15T21:26:47.039631+0000 mon.a (mon.0) 829 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:48.414 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:48 smithi187 bash[22200]: cluster 2024-04-15T21:26:47.143422+0000 mgr.a (mgr.14152) 313 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:48.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:48 smithi133 bash[22165]: audit 2024-04-15T21:26:47.016347+0000 mon.a (mon.0) 827 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:48.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:48 smithi133 bash[22165]: audit 2024-04-15T21:26:47.027278+0000 mon.a (mon.0) 828 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:48.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:48 smithi133 bash[22165]: audit 2024-04-15T21:26:47.039631+0000 mon.a (mon.0) 829 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:48.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:48 smithi133 bash[22165]: cluster 2024-04-15T21:26:47.143422+0000 mgr.a (mgr.14152) 313 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:50.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:50 smithi133 bash[22165]: cluster 2024-04-15T21:26:49.143987+0000 mgr.a (mgr.14152) 314 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:50.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:50 smithi132 bash[21536]: cluster 2024-04-15T21:26:49.143987+0000 mgr.a (mgr.14152) 314 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:50.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:50 smithi187 bash[22200]: cluster 2024-04-15T21:26:49.143987+0000 mgr.a (mgr.14152) 314 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:52.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:52 smithi133 bash[22165]: cluster 2024-04-15T21:26:51.144504+0000 mgr.a (mgr.14152) 315 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:52.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:52 smithi133 bash[22165]: audit 2024-04-15T21:26:51.597354+0000 mon.a (mon.0) 830 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:52.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:52 smithi133 bash[22165]: audit 2024-04-15T21:26:51.604933+0000 mon.a (mon.0) 831 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:52.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:52 smithi133 bash[22165]: audit 2024-04-15T21:26:51.612247+0000 mon.a (mon.0) 832 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:52.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:52 smithi132 bash[21536]: cluster 2024-04-15T21:26:51.144504+0000 mgr.a (mgr.14152) 315 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:52.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:52 smithi132 bash[21536]: audit 2024-04-15T21:26:51.597354+0000 mon.a (mon.0) 830 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:52.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:52 smithi132 bash[21536]: audit 2024-04-15T21:26:51.604933+0000 mon.a (mon.0) 831 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:52.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:52 smithi132 bash[21536]: audit 2024-04-15T21:26:51.612247+0000 mon.a (mon.0) 832 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:52.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:52 smithi187 bash[22200]: cluster 2024-04-15T21:26:51.144504+0000 mgr.a (mgr.14152) 315 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:52.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:52 smithi187 bash[22200]: audit 2024-04-15T21:26:51.597354+0000 mon.a (mon.0) 830 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:52.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:52 smithi187 bash[22200]: audit 2024-04-15T21:26:51.604933+0000 mon.a (mon.0) 831 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:52.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:52 smithi187 bash[22200]: audit 2024-04-15T21:26:51.612247+0000 mon.a (mon.0) 832 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:26:54.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:54 smithi133 bash[22165]: cluster 2024-04-15T21:26:53.145034+0000 mgr.a (mgr.14152) 316 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:54.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:54 smithi132 bash[21536]: cluster 2024-04-15T21:26:53.145034+0000 mgr.a (mgr.14152) 316 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:54.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:54 smithi187 bash[22200]: cluster 2024-04-15T21:26:53.145034+0000 mgr.a (mgr.14152) 316 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:56.475 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:56 smithi187 bash[22200]: cluster 2024-04-15T21:26:55.145606+0000 mgr.a (mgr.14152) 317 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:56.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:56 smithi133 bash[22165]: cluster 2024-04-15T21:26:55.145606+0000 mgr.a (mgr.14152) 317 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:56.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:56 smithi132 bash[21536]: cluster 2024-04-15T21:26:55.145606+0000 mgr.a (mgr.14152) 317 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:58.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:26:58 smithi133 bash[22165]: cluster 2024-04-15T21:26:57.146059+0000 mgr.a (mgr.14152) 318 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:58.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:26:58 smithi132 bash[21536]: cluster 2024-04-15T21:26:57.146059+0000 mgr.a (mgr.14152) 318 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:26:58.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:26:58 smithi187 bash[22200]: cluster 2024-04-15T21:26:57.146059+0000 mgr.a (mgr.14152) 318 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:00.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:00 smithi187 bash[22200]: cluster 2024-04-15T21:26:59.146533+0000 mgr.a (mgr.14152) 319 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:00.512 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:00 smithi187 bash[22200]: audit 2024-04-15T21:26:59.153219+0000 mon.a (mon.0) 833 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:00.512 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:00 smithi187 bash[22200]: audit 2024-04-15T21:26:59.162117+0000 mon.a (mon.0) 834 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:00.512 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:00 smithi187 bash[22200]: audit 2024-04-15T21:26:59.174126+0000 mon.a (mon.0) 835 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:00.513 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:00 smithi133 bash[22165]: cluster 2024-04-15T21:26:59.146533+0000 mgr.a (mgr.14152) 319 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:00.513 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:00 smithi133 bash[22165]: audit 2024-04-15T21:26:59.153219+0000 mon.a (mon.0) 833 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:00.513 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:00 smithi133 bash[22165]: audit 2024-04-15T21:26:59.162117+0000 mon.a (mon.0) 834 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:00.513 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:00 smithi133 bash[22165]: audit 2024-04-15T21:26:59.174126+0000 mon.a (mon.0) 835 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:00.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:00 smithi132 bash[21536]: cluster 2024-04-15T21:26:59.146533+0000 mgr.a (mgr.14152) 319 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:00.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:00 smithi132 bash[21536]: audit 2024-04-15T21:26:59.153219+0000 mon.a (mon.0) 833 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:00.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:00 smithi132 bash[21536]: audit 2024-04-15T21:26:59.162117+0000 mon.a (mon.0) 834 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:00.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:00 smithi132 bash[21536]: audit 2024-04-15T21:26:59.174126+0000 mon.a (mon.0) 835 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:02.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:02 smithi187 bash[22200]: cluster 2024-04-15T21:27:01.147048+0000 mgr.a (mgr.14152) 320 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:02.446 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:02 smithi133 bash[22165]: cluster 2024-04-15T21:27:01.147048+0000 mgr.a (mgr.14152) 320 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:02.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:02 smithi132 bash[21536]: cluster 2024-04-15T21:27:01.147048+0000 mgr.a (mgr.14152) 320 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:04.375 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:04 smithi132 bash[21536]: cluster 2024-04-15T21:27:03.147574+0000 mgr.a (mgr.14152) 321 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:04.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:04 smithi187 bash[22200]: cluster 2024-04-15T21:27:03.147574+0000 mgr.a (mgr.14152) 321 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:04.460 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:04 smithi133 bash[22165]: cluster 2024-04-15T21:27:03.147574+0000 mgr.a (mgr.14152) 321 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:06.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:06 smithi187 bash[22200]: cluster 2024-04-15T21:27:05.148120+0000 mgr.a (mgr.14152) 322 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:06.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:06 smithi133 bash[22165]: cluster 2024-04-15T21:27:05.148120+0000 mgr.a (mgr.14152) 322 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:06.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:06 smithi132 bash[21536]: cluster 2024-04-15T21:27:05.148120+0000 mgr.a (mgr.14152) 322 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:08.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:08 smithi133 bash[22165]: cluster 2024-04-15T21:27:07.148686+0000 mgr.a (mgr.14152) 323 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:08.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:08 smithi133 bash[22165]: audit 2024-04-15T21:27:07.246868+0000 mon.a (mon.0) 836 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:08.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:08 smithi133 bash[22165]: audit 2024-04-15T21:27:07.257382+0000 mon.a (mon.0) 837 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:08.496 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:08 smithi133 bash[22165]: audit 2024-04-15T21:27:07.268125+0000 mon.a (mon.0) 838 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:08.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:08 smithi132 bash[21536]: cluster 2024-04-15T21:27:07.148686+0000 mgr.a (mgr.14152) 323 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:08.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:08 smithi132 bash[21536]: audit 2024-04-15T21:27:07.246868+0000 mon.a (mon.0) 836 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:08.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:08 smithi132 bash[21536]: audit 2024-04-15T21:27:07.257382+0000 mon.a (mon.0) 837 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:08.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:08 smithi132 bash[21536]: audit 2024-04-15T21:27:07.268125+0000 mon.a (mon.0) 838 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:08.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:08 smithi187 bash[22200]: cluster 2024-04-15T21:27:07.148686+0000 mgr.a (mgr.14152) 323 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:08.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:08 smithi187 bash[22200]: audit 2024-04-15T21:27:07.246868+0000 mon.a (mon.0) 836 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:08.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:08 smithi187 bash[22200]: audit 2024-04-15T21:27:07.257382+0000 mon.a (mon.0) 837 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:08.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:08 smithi187 bash[22200]: audit 2024-04-15T21:27:07.268125+0000 mon.a (mon.0) 838 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:10.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:10 smithi132 bash[21536]: cluster 2024-04-15T21:27:09.149226+0000 mgr.a (mgr.14152) 324 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:10.666 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:10 smithi187 bash[22200]: cluster 2024-04-15T21:27:09.149226+0000 mgr.a (mgr.14152) 324 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:10.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:10 smithi133 bash[22165]: cluster 2024-04-15T21:27:09.149226+0000 mgr.a (mgr.14152) 324 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:12.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:12 smithi132 bash[21536]: cluster 2024-04-15T21:27:11.149644+0000 mgr.a (mgr.14152) 325 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:12.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:12 smithi132 bash[21536]: audit 2024-04-15T21:27:11.814855+0000 mon.a (mon.0) 839 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:12.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:12 smithi132 bash[21536]: audit 2024-04-15T21:27:11.822206+0000 mon.a (mon.0) 840 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:12.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:12 smithi132 bash[21536]: audit 2024-04-15T21:27:11.831232+0000 mon.a (mon.0) 841 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:12.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:12 smithi187 bash[22200]: cluster 2024-04-15T21:27:11.149644+0000 mgr.a (mgr.14152) 325 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:12.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:12 smithi187 bash[22200]: audit 2024-04-15T21:27:11.814855+0000 mon.a (mon.0) 839 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:12.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:12 smithi187 bash[22200]: audit 2024-04-15T21:27:11.822206+0000 mon.a (mon.0) 840 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:12.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:12 smithi187 bash[22200]: audit 2024-04-15T21:27:11.831232+0000 mon.a (mon.0) 841 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:12.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:12 smithi133 bash[22165]: cluster 2024-04-15T21:27:11.149644+0000 mgr.a (mgr.14152) 325 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:12.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:12 smithi133 bash[22165]: audit 2024-04-15T21:27:11.814855+0000 mon.a (mon.0) 839 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:12.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:12 smithi133 bash[22165]: audit 2024-04-15T21:27:11.822206+0000 mon.a (mon.0) 840 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:12.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:12 smithi133 bash[22165]: audit 2024-04-15T21:27:11.831232+0000 mon.a (mon.0) 841 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:14.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:14 smithi132 bash[21536]: cluster 2024-04-15T21:27:13.150125+0000 mgr.a (mgr.14152) 326 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:14.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:14 smithi187 bash[22200]: cluster 2024-04-15T21:27:13.150125+0000 mgr.a (mgr.14152) 326 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:14.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:14 smithi133 bash[22165]: cluster 2024-04-15T21:27:13.150125+0000 mgr.a (mgr.14152) 326 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:16.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:16 smithi187 bash[22200]: cluster 2024-04-15T21:27:15.150680+0000 mgr.a (mgr.14152) 327 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:16.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:16 smithi132 bash[21536]: cluster 2024-04-15T21:27:15.150680+0000 mgr.a (mgr.14152) 327 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:16.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:16 smithi133 bash[22165]: cluster 2024-04-15T21:27:15.150680+0000 mgr.a (mgr.14152) 327 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:18.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:18 smithi187 bash[22200]: cluster 2024-04-15T21:27:17.151198+0000 mgr.a (mgr.14152) 328 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:18.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:18 smithi132 bash[21536]: cluster 2024-04-15T21:27:17.151198+0000 mgr.a (mgr.14152) 328 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:18.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:18 smithi133 bash[22165]: cluster 2024-04-15T21:27:17.151198+0000 mgr.a (mgr.14152) 328 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:20.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:20 smithi132 bash[21536]: cluster 2024-04-15T21:27:19.151790+0000 mgr.a (mgr.14152) 329 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:20.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:20 smithi132 bash[21536]: audit 2024-04-15T21:27:19.357222+0000 mon.a (mon.0) 842 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:20.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:20 smithi132 bash[21536]: audit 2024-04-15T21:27:19.366146+0000 mon.a (mon.0) 843 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:20.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:20 smithi132 bash[21536]: audit 2024-04-15T21:27:19.376741+0000 mon.a (mon.0) 844 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:20.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:20 smithi187 bash[22200]: cluster 2024-04-15T21:27:19.151790+0000 mgr.a (mgr.14152) 329 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:20.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:20 smithi187 bash[22200]: audit 2024-04-15T21:27:19.357222+0000 mon.a (mon.0) 842 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:20.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:20 smithi187 bash[22200]: audit 2024-04-15T21:27:19.366146+0000 mon.a (mon.0) 843 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:20.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:20 smithi187 bash[22200]: audit 2024-04-15T21:27:19.376741+0000 mon.a (mon.0) 844 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:20.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:20 smithi133 bash[22165]: cluster 2024-04-15T21:27:19.151790+0000 mgr.a (mgr.14152) 329 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:20.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:20 smithi133 bash[22165]: audit 2024-04-15T21:27:19.357222+0000 mon.a (mon.0) 842 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:20.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:20 smithi133 bash[22165]: audit 2024-04-15T21:27:19.366146+0000 mon.a (mon.0) 843 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:20.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:20 smithi133 bash[22165]: audit 2024-04-15T21:27:19.376741+0000 mon.a (mon.0) 844 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:22.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:22 smithi132 bash[21536]: cluster 2024-04-15T21:27:21.152294+0000 mgr.a (mgr.14152) 330 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:22.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:22 smithi132 bash[21536]: audit 2024-04-15T21:27:21.641135+0000 mon.a (mon.0) 845 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:27:22.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:22 smithi132 bash[21536]: audit 2024-04-15T21:27:21.646635+0000 mon.a (mon.0) 846 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:27:22.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:22 smithi132 bash[21536]: audit 2024-04-15T21:27:21.648324+0000 mon.a (mon.0) 847 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:27:22.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:22 smithi132 bash[21536]: audit 2024-04-15T21:27:21.658817+0000 mon.a (mon.0) 848 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:22.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:22 smithi187 bash[22200]: cluster 2024-04-15T21:27:21.152294+0000 mgr.a (mgr.14152) 330 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:22.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:22 smithi187 bash[22200]: audit 2024-04-15T21:27:21.641135+0000 mon.a (mon.0) 845 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:27:22.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:22 smithi187 bash[22200]: audit 2024-04-15T21:27:21.646635+0000 mon.a (mon.0) 846 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:27:22.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:22 smithi187 bash[22200]: audit 2024-04-15T21:27:21.648324+0000 mon.a (mon.0) 847 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:27:22.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:22 smithi187 bash[22200]: audit 2024-04-15T21:27:21.658817+0000 mon.a (mon.0) 848 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:22.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:22 smithi133 bash[22165]: cluster 2024-04-15T21:27:21.152294+0000 mgr.a (mgr.14152) 330 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:22.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:22 smithi133 bash[22165]: audit 2024-04-15T21:27:21.641135+0000 mon.a (mon.0) 845 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:27:22.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:22 smithi133 bash[22165]: audit 2024-04-15T21:27:21.646635+0000 mon.a (mon.0) 846 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:27:22.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:22 smithi133 bash[22165]: audit 2024-04-15T21:27:21.648324+0000 mon.a (mon.0) 847 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:27:22.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:22 smithi133 bash[22165]: audit 2024-04-15T21:27:21.658817+0000 mon.a (mon.0) 848 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:24.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:24 smithi133 bash[22165]: cluster 2024-04-15T21:27:23.152806+0000 mgr.a (mgr.14152) 331 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:24.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:24 smithi132 bash[21536]: cluster 2024-04-15T21:27:23.152806+0000 mgr.a (mgr.14152) 331 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:24.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:24 smithi187 bash[22200]: cluster 2024-04-15T21:27:23.152806+0000 mgr.a (mgr.14152) 331 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:26.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:26 smithi132 bash[21536]: cluster 2024-04-15T21:27:25.153372+0000 mgr.a (mgr.14152) 332 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:26.666 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:26 smithi187 bash[22200]: cluster 2024-04-15T21:27:25.153372+0000 mgr.a (mgr.14152) 332 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:26.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:26 smithi133 bash[22165]: cluster 2024-04-15T21:27:25.153372+0000 mgr.a (mgr.14152) 332 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:28.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:28 smithi132 bash[21536]: cluster 2024-04-15T21:27:27.153917+0000 mgr.a (mgr.14152) 333 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:28.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:28 smithi132 bash[21536]: audit 2024-04-15T21:27:27.472046+0000 mon.a (mon.0) 849 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:28.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:28 smithi132 bash[21536]: audit 2024-04-15T21:27:27.477958+0000 mon.a (mon.0) 850 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:28.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:28 smithi132 bash[21536]: audit 2024-04-15T21:27:27.484598+0000 mon.a (mon.0) 851 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:28.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:28 smithi187 bash[22200]: cluster 2024-04-15T21:27:27.153917+0000 mgr.a (mgr.14152) 333 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:28.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:28 smithi187 bash[22200]: audit 2024-04-15T21:27:27.472046+0000 mon.a (mon.0) 849 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:28.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:28 smithi187 bash[22200]: audit 2024-04-15T21:27:27.477958+0000 mon.a (mon.0) 850 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:28.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:28 smithi187 bash[22200]: audit 2024-04-15T21:27:27.484598+0000 mon.a (mon.0) 851 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:28.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:28 smithi133 bash[22165]: cluster 2024-04-15T21:27:27.153917+0000 mgr.a (mgr.14152) 333 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:28.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:28 smithi133 bash[22165]: audit 2024-04-15T21:27:27.472046+0000 mon.a (mon.0) 849 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:28.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:28 smithi133 bash[22165]: audit 2024-04-15T21:27:27.477958+0000 mon.a (mon.0) 850 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:28.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:28 smithi133 bash[22165]: audit 2024-04-15T21:27:27.484598+0000 mon.a (mon.0) 851 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:30.428 INFO:teuthology.orchestra.run.smithi132.stderr:+ ceph orch ps --refresh 2024-04-15T21:27:30.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:30 smithi132 bash[21536]: cluster 2024-04-15T21:27:29.154422+0000 mgr.a (mgr.14152) 334 : cluster [DBG] pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:30.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:30 smithi187 bash[22200]: cluster 2024-04-15T21:27:29.154422+0000 mgr.a (mgr.14152) 334 : cluster [DBG] pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:30.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:30 smithi133 bash[22165]: cluster 2024-04-15T21:27:29.154422+0000 mgr.a (mgr.14152) 334 : cluster [DBG] pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:30.791 INFO:teuthology.orchestra.run.smithi132.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-15T21:27:30.791 INFO:teuthology.orchestra.run.smithi132.stdout:agent.smithi132 smithi132 running 18s ago 7m - - 2024-04-15T21:27:30.792 INFO:teuthology.orchestra.run.smithi132.stdout:agent.smithi133 smithi133 running 3s ago 7m - - 2024-04-15T21:27:30.792 INFO:teuthology.orchestra.run.smithi132.stdout:agent.smithi187 smithi187 running 11s ago 6m - - 2024-04-15T21:27:30.792 INFO:teuthology.orchestra.run.smithi132.stdout:mgr.a smithi132 *:9283,8765 running (9m) 18s ago 9m 501M - 19.0.0-3084-g87dbfb63 a452a57266c7 bbe51630be7e 2024-04-15T21:27:30.792 INFO:teuthology.orchestra.run.smithi132.stdout:mgr.b smithi133 *:8443,8765 running (5m) 3s ago 5m 435M - 19.0.0-3084-g87dbfb63 a452a57266c7 b5171a061519 2024-04-15T21:27:30.792 INFO:teuthology.orchestra.run.smithi132.stdout:mon.a smithi132 running (9m) 18s ago 9m 41.7M 2048M 19.0.0-3084-g87dbfb63 a452a57266c7 1838cc4b98e6 2024-04-15T21:27:30.792 INFO:teuthology.orchestra.run.smithi132.stdout:mon.b smithi133 running (6m) 3s ago 6m 35.8M 2048M 19.0.0-3084-g87dbfb63 a452a57266c7 b4e78a8956a1 2024-04-15T21:27:30.792 INFO:teuthology.orchestra.run.smithi132.stdout:mon.c smithi187 running (6m) 11s ago 6m 34.0M 2048M 19.0.0-3084-g87dbfb63 a452a57266c7 bc6177abdec2 2024-04-15T21:27:30.792 INFO:teuthology.orchestra.run.smithi132.stdout:osd.0 smithi132 running (5m) 18s ago 5m 45.0M 4096M 19.0.0-3084-g87dbfb63 a452a57266c7 91fe7e674548 2024-04-15T21:27:30.792 INFO:teuthology.orchestra.run.smithi132.stdout:osd.1 smithi133 running (4m) 3s ago 4m 37.2M 15.8G 19.0.0-3084-g87dbfb63 a452a57266c7 c6c231c82f22 2024-04-15T21:27:30.792 INFO:teuthology.orchestra.run.smithi132.stdout:osd.2 smithi187 running (3m) 11s ago 3m 36.5M 19.8G 19.0.0-3084-g87dbfb63 a452a57266c7 2109b439a8bb 2024-04-15T21:27:30.806 INFO:teuthology.orchestra.run.smithi132.stderr:+ ceph orch ls --service-name mon --export 2024-04-15T21:27:31.167 INFO:teuthology.orchestra.run.smithi132.stderr:+ ceph orch apply -i mon.yaml 2024-04-15T21:27:31.538 INFO:teuthology.orchestra.run.smithi132.stdout:Scheduled mon update... 2024-04-15T21:27:31.552 INFO:teuthology.orchestra.run.smithi132.stderr:+ sleep 90 2024-04-15T21:27:31.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:31 smithi132 bash[21536]: audit 2024-04-15T21:27:30.802985+0000 mon.a (mon.0) 852 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:27:31.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:31 smithi132 bash[21536]: audit 2024-04-15T21:27:30.806969+0000 mon.a (mon.0) 853 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:27:31.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:31 smithi132 bash[21536]: audit 2024-04-15T21:27:30.808135+0000 mon.a (mon.0) 854 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:27:31.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:31 smithi132 bash[21536]: audit 2024-04-15T21:27:30.814622+0000 mon.a (mon.0) 855 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:31.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:31 smithi187 bash[22200]: audit 2024-04-15T21:27:30.802985+0000 mon.a (mon.0) 852 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:27:31.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:31 smithi187 bash[22200]: audit 2024-04-15T21:27:30.806969+0000 mon.a (mon.0) 853 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:27:31.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:31 smithi187 bash[22200]: audit 2024-04-15T21:27:30.808135+0000 mon.a (mon.0) 854 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:27:31.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:31 smithi187 bash[22200]: audit 2024-04-15T21:27:30.814622+0000 mon.a (mon.0) 855 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:31.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:31 smithi133 bash[22165]: audit 2024-04-15T21:27:30.802985+0000 mon.a (mon.0) 852 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:27:31.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:31 smithi133 bash[22165]: audit 2024-04-15T21:27:30.806969+0000 mon.a (mon.0) 853 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:27:31.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:31 smithi133 bash[22165]: audit 2024-04-15T21:27:30.808135+0000 mon.a (mon.0) 854 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:27:31.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:31 smithi133 bash[22165]: audit 2024-04-15T21:27:30.814622+0000 mon.a (mon.0) 855 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:32.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:32 smithi187 bash[22200]: audit 2024-04-15T21:27:30.786495+0000 mgr.a (mgr.14152) 335 : audit [DBG] from='client.14385 -' entity='client.admin' cmd=[{"prefix": "orch ps", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:27:32.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:32 smithi187 bash[22200]: audit 2024-04-15T21:27:31.150540+0000 mgr.a (mgr.14152) 336 : audit [DBG] from='client.14391 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_name": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:27:32.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:32 smithi187 bash[22200]: cluster 2024-04-15T21:27:31.154934+0000 mgr.a (mgr.14152) 337 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:32.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:32 smithi187 bash[22200]: audit 2024-04-15T21:27:31.541338+0000 mon.a (mon.0) 856 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:32.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:32 smithi187 bash[22200]: audit 2024-04-15T21:27:31.584159+0000 mon.a (mon.0) 857 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:27:32.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:32 smithi187 bash[22200]: audit 2024-04-15T21:27:31.587174+0000 mon.a (mon.0) 858 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:27:32.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:32 smithi187 bash[22200]: audit 2024-04-15T21:27:31.588101+0000 mon.a (mon.0) 859 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:27:32.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:32 smithi187 bash[22200]: audit 2024-04-15T21:27:31.595892+0000 mon.a (mon.0) 860 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:32.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:32 smithi187 bash[22200]: audit 2024-04-15T21:27:31.598397+0000 mon.a (mon.0) 861 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "quorum_status"}]: dispatch 2024-04-15T21:27:32.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:32 smithi187 bash[22200]: audit 2024-04-15T21:27:31.604392+0000 mon.a (mon.0) 862 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:32.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:32 smithi187 bash[22200]: audit 2024-04-15T21:27:32.017608+0000 mon.a (mon.0) 863 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:32.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:32 smithi187 bash[22200]: audit 2024-04-15T21:27:32.025740+0000 mon.a (mon.0) 864 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:32.665 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:32 smithi187 bash[22200]: audit 2024-04-15T21:27:32.033836+0000 mon.a (mon.0) 865 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:32.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:32 smithi133 bash[22165]: audit 2024-04-15T21:27:30.786495+0000 mgr.a (mgr.14152) 335 : audit [DBG] from='client.14385 -' entity='client.admin' cmd=[{"prefix": "orch ps", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:27:32.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:32 smithi133 bash[22165]: audit 2024-04-15T21:27:31.150540+0000 mgr.a (mgr.14152) 336 : audit [DBG] from='client.14391 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_name": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:27:32.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:32 smithi133 bash[22165]: cluster 2024-04-15T21:27:31.154934+0000 mgr.a (mgr.14152) 337 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:32.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:32 smithi133 bash[22165]: audit 2024-04-15T21:27:31.541338+0000 mon.a (mon.0) 856 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:32.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:32 smithi133 bash[22165]: audit 2024-04-15T21:27:31.584159+0000 mon.a (mon.0) 857 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:27:32.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:32 smithi133 bash[22165]: audit 2024-04-15T21:27:31.587174+0000 mon.a (mon.0) 858 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:27:32.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:32 smithi133 bash[22165]: audit 2024-04-15T21:27:31.588101+0000 mon.a (mon.0) 859 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:27:32.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:32 smithi133 bash[22165]: audit 2024-04-15T21:27:31.595892+0000 mon.a (mon.0) 860 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:32.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:32 smithi133 bash[22165]: audit 2024-04-15T21:27:31.598397+0000 mon.a (mon.0) 861 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "quorum_status"}]: dispatch 2024-04-15T21:27:32.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:32 smithi133 bash[22165]: audit 2024-04-15T21:27:31.604392+0000 mon.a (mon.0) 862 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:32.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:32 smithi133 bash[22165]: audit 2024-04-15T21:27:32.017608+0000 mon.a (mon.0) 863 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:32.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:32 smithi133 bash[22165]: audit 2024-04-15T21:27:32.025740+0000 mon.a (mon.0) 864 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:32.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:32 smithi133 bash[22165]: audit 2024-04-15T21:27:32.033836+0000 mon.a (mon.0) 865 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:32.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:32 smithi132 bash[21536]: audit 2024-04-15T21:27:30.786495+0000 mgr.a (mgr.14152) 335 : audit [DBG] from='client.14385 -' entity='client.admin' cmd=[{"prefix": "orch ps", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:27:32.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:32 smithi132 bash[21536]: audit 2024-04-15T21:27:31.150540+0000 mgr.a (mgr.14152) 336 : audit [DBG] from='client.14391 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_name": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:27:32.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:32 smithi132 bash[21536]: cluster 2024-04-15T21:27:31.154934+0000 mgr.a (mgr.14152) 337 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:32.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:32 smithi132 bash[21536]: audit 2024-04-15T21:27:31.541338+0000 mon.a (mon.0) 856 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:32.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:32 smithi132 bash[21536]: audit 2024-04-15T21:27:31.584159+0000 mon.a (mon.0) 857 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:27:32.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:32 smithi132 bash[21536]: audit 2024-04-15T21:27:31.587174+0000 mon.a (mon.0) 858 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:27:32.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:32 smithi132 bash[21536]: audit 2024-04-15T21:27:31.588101+0000 mon.a (mon.0) 859 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:27:32.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:32 smithi132 bash[21536]: audit 2024-04-15T21:27:31.595892+0000 mon.a (mon.0) 860 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:32.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:32 smithi132 bash[21536]: audit 2024-04-15T21:27:31.598397+0000 mon.a (mon.0) 861 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "quorum_status"}]: dispatch 2024-04-15T21:27:32.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:32 smithi132 bash[21536]: audit 2024-04-15T21:27:31.604392+0000 mon.a (mon.0) 862 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:32.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:32 smithi132 bash[21536]: audit 2024-04-15T21:27:32.017608+0000 mon.a (mon.0) 863 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:32.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:32 smithi132 bash[21536]: audit 2024-04-15T21:27:32.025740+0000 mon.a (mon.0) 864 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:32.877 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:32 smithi132 bash[21536]: audit 2024-04-15T21:27:32.033836+0000 mon.a (mon.0) 865 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:33.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:33 smithi187 bash[22200]: audit 2024-04-15T21:27:31.523983+0000 mgr.a (mgr.14152) 338 : audit [DBG] from='client.14397 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:27:33.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:33 smithi187 bash[22200]: cephadm 2024-04-15T21:27:31.533250+0000 mgr.a (mgr.14152) 339 : cephadm [INF] Saving service mon spec with placement count:3 2024-04-15T21:27:33.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:33 smithi133 bash[22165]: audit 2024-04-15T21:27:31.523983+0000 mgr.a (mgr.14152) 338 : audit [DBG] from='client.14397 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:27:33.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:33 smithi133 bash[22165]: cephadm 2024-04-15T21:27:31.533250+0000 mgr.a (mgr.14152) 339 : cephadm [INF] Saving service mon spec with placement count:3 2024-04-15T21:27:33.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:33 smithi132 bash[21536]: audit 2024-04-15T21:27:31.523983+0000 mgr.a (mgr.14152) 338 : audit [DBG] from='client.14397 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:27:33.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:33 smithi132 bash[21536]: cephadm 2024-04-15T21:27:31.533250+0000 mgr.a (mgr.14152) 339 : cephadm [INF] Saving service mon spec with placement count:3 2024-04-15T21:27:34.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:34 smithi132 bash[21536]: cluster 2024-04-15T21:27:33.155446+0000 mgr.a (mgr.14152) 340 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:34.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:34 smithi187 bash[22200]: cluster 2024-04-15T21:27:33.155446+0000 mgr.a (mgr.14152) 340 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:34.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:34 smithi133 bash[22165]: cluster 2024-04-15T21:27:33.155446+0000 mgr.a (mgr.14152) 340 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:36.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:36 smithi187 bash[22200]: cluster 2024-04-15T21:27:35.156000+0000 mgr.a (mgr.14152) 341 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:36.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:36 smithi133 bash[22165]: cluster 2024-04-15T21:27:35.156000+0000 mgr.a (mgr.14152) 341 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:36.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:36 smithi132 bash[21536]: cluster 2024-04-15T21:27:35.156000+0000 mgr.a (mgr.14152) 341 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:38.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:38 smithi187 bash[22200]: cluster 2024-04-15T21:27:37.156550+0000 mgr.a (mgr.14152) 342 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:38.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:38 smithi133 bash[22165]: cluster 2024-04-15T21:27:37.156550+0000 mgr.a (mgr.14152) 342 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:38.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:38 smithi132 bash[21536]: cluster 2024-04-15T21:27:37.156550+0000 mgr.a (mgr.14152) 342 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:40.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:40 smithi187 bash[22200]: cluster 2024-04-15T21:27:39.157113+0000 mgr.a (mgr.14152) 343 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:40.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:40 smithi187 bash[22200]: audit 2024-04-15T21:27:39.541991+0000 mon.a (mon.0) 866 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:40.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:40 smithi187 bash[22200]: audit 2024-04-15T21:27:39.551857+0000 mon.a (mon.0) 867 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:40.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:40 smithi187 bash[22200]: audit 2024-04-15T21:27:39.561785+0000 mon.a (mon.0) 868 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:40.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:40 smithi133 bash[22165]: cluster 2024-04-15T21:27:39.157113+0000 mgr.a (mgr.14152) 343 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:40.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:40 smithi133 bash[22165]: audit 2024-04-15T21:27:39.541991+0000 mon.a (mon.0) 866 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:40.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:40 smithi133 bash[22165]: audit 2024-04-15T21:27:39.551857+0000 mon.a (mon.0) 867 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:40.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:40 smithi133 bash[22165]: audit 2024-04-15T21:27:39.561785+0000 mon.a (mon.0) 868 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:40.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:40 smithi132 bash[21536]: cluster 2024-04-15T21:27:39.157113+0000 mgr.a (mgr.14152) 343 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:40.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:40 smithi132 bash[21536]: audit 2024-04-15T21:27:39.541991+0000 mon.a (mon.0) 866 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:40.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:40 smithi132 bash[21536]: audit 2024-04-15T21:27:39.551857+0000 mon.a (mon.0) 867 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:40.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:40 smithi132 bash[21536]: audit 2024-04-15T21:27:39.561785+0000 mon.a (mon.0) 868 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:42.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:42 smithi133 bash[22165]: cluster 2024-04-15T21:27:41.157636+0000 mgr.a (mgr.14152) 344 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:42.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:42 smithi132 bash[21536]: cluster 2024-04-15T21:27:41.157636+0000 mgr.a (mgr.14152) 344 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:42.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:42 smithi187 bash[22200]: cluster 2024-04-15T21:27:41.157636+0000 mgr.a (mgr.14152) 344 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:44.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:44 smithi133 bash[22165]: cluster 2024-04-15T21:27:43.158122+0000 mgr.a (mgr.14152) 345 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:44.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:44 smithi132 bash[21536]: cluster 2024-04-15T21:27:43.158122+0000 mgr.a (mgr.14152) 345 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:44.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:44 smithi187 bash[22200]: cluster 2024-04-15T21:27:43.158122+0000 mgr.a (mgr.14152) 345 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:46.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:46 smithi133 bash[22165]: cluster 2024-04-15T21:27:45.158647+0000 mgr.a (mgr.14152) 346 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:46.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:46 smithi132 bash[21536]: cluster 2024-04-15T21:27:45.158647+0000 mgr.a (mgr.14152) 346 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:46.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:46 smithi187 bash[22200]: cluster 2024-04-15T21:27:45.158647+0000 mgr.a (mgr.14152) 346 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:48.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:48 smithi133 bash[22165]: cluster 2024-04-15T21:27:47.159266+0000 mgr.a (mgr.14152) 347 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:48.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:48 smithi133 bash[22165]: audit 2024-04-15T21:27:47.694383+0000 mon.a (mon.0) 869 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:48.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:48 smithi133 bash[22165]: audit 2024-04-15T21:27:47.701221+0000 mon.a (mon.0) 870 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:48.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:48 smithi133 bash[22165]: audit 2024-04-15T21:27:47.708857+0000 mon.a (mon.0) 871 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:48.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:48 smithi132 bash[21536]: cluster 2024-04-15T21:27:47.159266+0000 mgr.a (mgr.14152) 347 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:48.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:48 smithi132 bash[21536]: audit 2024-04-15T21:27:47.694383+0000 mon.a (mon.0) 869 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:48.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:48 smithi132 bash[21536]: audit 2024-04-15T21:27:47.701221+0000 mon.a (mon.0) 870 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:48.876 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:48 smithi132 bash[21536]: audit 2024-04-15T21:27:47.708857+0000 mon.a (mon.0) 871 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:48.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:48 smithi187 bash[22200]: cluster 2024-04-15T21:27:47.159266+0000 mgr.a (mgr.14152) 347 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:48.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:48 smithi187 bash[22200]: audit 2024-04-15T21:27:47.694383+0000 mon.a (mon.0) 869 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:48.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:48 smithi187 bash[22200]: audit 2024-04-15T21:27:47.701221+0000 mon.a (mon.0) 870 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:48.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:48 smithi187 bash[22200]: audit 2024-04-15T21:27:47.708857+0000 mon.a (mon.0) 871 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:50.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:50 smithi133 bash[22165]: cluster 2024-04-15T21:27:49.159773+0000 mgr.a (mgr.14152) 348 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:50.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:50 smithi132 bash[21536]: cluster 2024-04-15T21:27:49.159773+0000 mgr.a (mgr.14152) 348 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:50.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:50 smithi187 bash[22200]: cluster 2024-04-15T21:27:49.159773+0000 mgr.a (mgr.14152) 348 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:51.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:51 smithi133 bash[22165]: cluster 2024-04-15T21:27:51.160298+0000 mgr.a (mgr.14152) 349 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:51.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:51 smithi132 bash[21536]: cluster 2024-04-15T21:27:51.160298+0000 mgr.a (mgr.14152) 349 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:51.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:51 smithi187 bash[22200]: cluster 2024-04-15T21:27:51.160298+0000 mgr.a (mgr.14152) 349 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:53.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:53 smithi133 bash[22165]: audit 2024-04-15T21:27:52.232756+0000 mon.a (mon.0) 872 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:53.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:53 smithi133 bash[22165]: audit 2024-04-15T21:27:52.242752+0000 mon.a (mon.0) 873 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:53.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:53 smithi133 bash[22165]: audit 2024-04-15T21:27:52.252406+0000 mon.a (mon.0) 874 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:53.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:53 smithi132 bash[21536]: audit 2024-04-15T21:27:52.232756+0000 mon.a (mon.0) 872 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:53.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:53 smithi132 bash[21536]: audit 2024-04-15T21:27:52.242752+0000 mon.a (mon.0) 873 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:53.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:53 smithi132 bash[21536]: audit 2024-04-15T21:27:52.252406+0000 mon.a (mon.0) 874 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:53.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:53 smithi187 bash[22200]: audit 2024-04-15T21:27:52.232756+0000 mon.a (mon.0) 872 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:53.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:53 smithi187 bash[22200]: audit 2024-04-15T21:27:52.242752+0000 mon.a (mon.0) 873 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:53.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:53 smithi187 bash[22200]: audit 2024-04-15T21:27:52.252406+0000 mon.a (mon.0) 874 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:27:54.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:54 smithi132 bash[21536]: cluster 2024-04-15T21:27:53.160803+0000 mgr.a (mgr.14152) 350 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:54.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:54 smithi187 bash[22200]: cluster 2024-04-15T21:27:53.160803+0000 mgr.a (mgr.14152) 350 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:54.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:54 smithi133 bash[22165]: cluster 2024-04-15T21:27:53.160803+0000 mgr.a (mgr.14152) 350 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:56.543 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:56 smithi187 bash[22200]: cluster 2024-04-15T21:27:55.161391+0000 mgr.a (mgr.14152) 351 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:56.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:56 smithi132 bash[21536]: cluster 2024-04-15T21:27:55.161391+0000 mgr.a (mgr.14152) 351 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:56.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:56 smithi133 bash[22165]: cluster 2024-04-15T21:27:55.161391+0000 mgr.a (mgr.14152) 351 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:58.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:27:58 smithi187 bash[22200]: cluster 2024-04-15T21:27:57.161936+0000 mgr.a (mgr.14152) 352 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:58.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:27:58 smithi132 bash[21536]: cluster 2024-04-15T21:27:57.161936+0000 mgr.a (mgr.14152) 352 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:27:58.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:27:58 smithi133 bash[22165]: cluster 2024-04-15T21:27:57.161936+0000 mgr.a (mgr.14152) 352 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:00.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:00 smithi132 bash[21536]: cluster 2024-04-15T21:27:59.162475+0000 mgr.a (mgr.14152) 353 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:00.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:00 smithi132 bash[21536]: audit 2024-04-15T21:27:59.711626+0000 mon.a (mon.0) 875 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:00.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:00 smithi132 bash[21536]: audit 2024-04-15T21:27:59.720474+0000 mon.a (mon.0) 876 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:00.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:00 smithi132 bash[21536]: audit 2024-04-15T21:27:59.730831+0000 mon.a (mon.0) 877 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:00.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:00 smithi187 bash[22200]: cluster 2024-04-15T21:27:59.162475+0000 mgr.a (mgr.14152) 353 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:00.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:00 smithi187 bash[22200]: audit 2024-04-15T21:27:59.711626+0000 mon.a (mon.0) 875 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:00.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:00 smithi187 bash[22200]: audit 2024-04-15T21:27:59.720474+0000 mon.a (mon.0) 876 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:00.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:00 smithi187 bash[22200]: audit 2024-04-15T21:27:59.730831+0000 mon.a (mon.0) 877 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:00.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:00 smithi133 bash[22165]: cluster 2024-04-15T21:27:59.162475+0000 mgr.a (mgr.14152) 353 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:00.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:00 smithi133 bash[22165]: audit 2024-04-15T21:27:59.711626+0000 mon.a (mon.0) 875 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:00.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:00 smithi133 bash[22165]: audit 2024-04-15T21:27:59.720474+0000 mon.a (mon.0) 876 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:00.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:00 smithi133 bash[22165]: audit 2024-04-15T21:27:59.730831+0000 mon.a (mon.0) 877 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:02.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:02 smithi132 bash[21536]: cluster 2024-04-15T21:28:01.163018+0000 mgr.a (mgr.14152) 354 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:02.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:02 smithi187 bash[22200]: cluster 2024-04-15T21:28:01.163018+0000 mgr.a (mgr.14152) 354 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:02.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:02 smithi133 bash[22165]: cluster 2024-04-15T21:28:01.163018+0000 mgr.a (mgr.14152) 354 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:04.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:04 smithi133 bash[22165]: cluster 2024-04-15T21:28:03.163518+0000 mgr.a (mgr.14152) 355 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:04.626 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:04 smithi132 bash[21536]: cluster 2024-04-15T21:28:03.163518+0000 mgr.a (mgr.14152) 355 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:04.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:04 smithi187 bash[22200]: cluster 2024-04-15T21:28:03.163518+0000 mgr.a (mgr.14152) 355 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:06.509 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:06 smithi132 bash[21536]: cluster 2024-04-15T21:28:05.164164+0000 mgr.a (mgr.14152) 356 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:06.549 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:06 smithi133 bash[22165]: cluster 2024-04-15T21:28:05.164164+0000 mgr.a (mgr.14152) 356 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:06.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:06 smithi187 bash[22200]: cluster 2024-04-15T21:28:05.164164+0000 mgr.a (mgr.14152) 356 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:08.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:08 smithi132 bash[21536]: cluster 2024-04-15T21:28:07.164767+0000 mgr.a (mgr.14152) 357 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:08.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:08 smithi132 bash[21536]: audit 2024-04-15T21:28:07.910665+0000 mon.a (mon.0) 878 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:08.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:08 smithi132 bash[21536]: audit 2024-04-15T21:28:07.918133+0000 mon.a (mon.0) 879 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:08.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:08 smithi132 bash[21536]: audit 2024-04-15T21:28:07.925863+0000 mon.a (mon.0) 880 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:08.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:08 smithi187 bash[22200]: cluster 2024-04-15T21:28:07.164767+0000 mgr.a (mgr.14152) 357 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:08.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:08 smithi187 bash[22200]: audit 2024-04-15T21:28:07.910665+0000 mon.a (mon.0) 878 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:08.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:08 smithi187 bash[22200]: audit 2024-04-15T21:28:07.918133+0000 mon.a (mon.0) 879 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:08.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:08 smithi187 bash[22200]: audit 2024-04-15T21:28:07.925863+0000 mon.a (mon.0) 880 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:08.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:08 smithi133 bash[22165]: cluster 2024-04-15T21:28:07.164767+0000 mgr.a (mgr.14152) 357 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:08.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:08 smithi133 bash[22165]: audit 2024-04-15T21:28:07.910665+0000 mon.a (mon.0) 878 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:08.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:08 smithi133 bash[22165]: audit 2024-04-15T21:28:07.918133+0000 mon.a (mon.0) 879 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:08.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:08 smithi133 bash[22165]: audit 2024-04-15T21:28:07.925863+0000 mon.a (mon.0) 880 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:10.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:10 smithi132 bash[21536]: cluster 2024-04-15T21:28:09.165318+0000 mgr.a (mgr.14152) 358 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:10.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:10 smithi187 bash[22200]: cluster 2024-04-15T21:28:09.165318+0000 mgr.a (mgr.14152) 358 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:10.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:10 smithi133 bash[22165]: cluster 2024-04-15T21:28:09.165318+0000 mgr.a (mgr.14152) 358 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:12.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:12 smithi132 bash[21536]: cluster 2024-04-15T21:28:11.165845+0000 mgr.a (mgr.14152) 359 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:12.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:12 smithi187 bash[22200]: cluster 2024-04-15T21:28:11.165845+0000 mgr.a (mgr.14152) 359 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:12.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:12 smithi133 bash[22165]: cluster 2024-04-15T21:28:11.165845+0000 mgr.a (mgr.14152) 359 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:13.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:13 smithi133 bash[22165]: audit 2024-04-15T21:28:12.447891+0000 mon.a (mon.0) 881 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:13.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:13 smithi133 bash[22165]: audit 2024-04-15T21:28:12.455356+0000 mon.a (mon.0) 882 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:13.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:13 smithi133 bash[22165]: audit 2024-04-15T21:28:12.465401+0000 mon.a (mon.0) 883 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:13.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:13 smithi133 bash[22165]: cluster 2024-04-15T21:28:13.166371+0000 mgr.a (mgr.14152) 360 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:13.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:13 smithi132 bash[21536]: audit 2024-04-15T21:28:12.447891+0000 mon.a (mon.0) 881 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:13.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:13 smithi132 bash[21536]: audit 2024-04-15T21:28:12.455356+0000 mon.a (mon.0) 882 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:13.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:13 smithi132 bash[21536]: audit 2024-04-15T21:28:12.465401+0000 mon.a (mon.0) 883 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:13.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:13 smithi132 bash[21536]: cluster 2024-04-15T21:28:13.166371+0000 mgr.a (mgr.14152) 360 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:13.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:13 smithi187 bash[22200]: audit 2024-04-15T21:28:12.447891+0000 mon.a (mon.0) 881 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:13.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:13 smithi187 bash[22200]: audit 2024-04-15T21:28:12.455356+0000 mon.a (mon.0) 882 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:13.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:13 smithi187 bash[22200]: audit 2024-04-15T21:28:12.465401+0000 mon.a (mon.0) 883 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:13.914 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:13 smithi187 bash[22200]: cluster 2024-04-15T21:28:13.166371+0000 mgr.a (mgr.14152) 360 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:16.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:16 smithi133 bash[22165]: cluster 2024-04-15T21:28:15.166951+0000 mgr.a (mgr.14152) 361 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:16.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:16 smithi132 bash[21536]: cluster 2024-04-15T21:28:15.166951+0000 mgr.a (mgr.14152) 361 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:16.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:16 smithi187 bash[22200]: cluster 2024-04-15T21:28:15.166951+0000 mgr.a (mgr.14152) 361 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:18.413 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:18 smithi187 bash[22200]: cluster 2024-04-15T21:28:17.167473+0000 mgr.a (mgr.14152) 362 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:18.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:18 smithi133 bash[22165]: cluster 2024-04-15T21:28:17.167473+0000 mgr.a (mgr.14152) 362 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:18.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:18 smithi132 bash[21536]: cluster 2024-04-15T21:28:17.167473+0000 mgr.a (mgr.14152) 362 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:20.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:20 smithi133 bash[22165]: cluster 2024-04-15T21:28:19.168013+0000 mgr.a (mgr.14152) 363 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:20.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:20 smithi133 bash[22165]: audit 2024-04-15T21:28:19.873696+0000 mon.a (mon.0) 884 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:20.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:20 smithi133 bash[22165]: audit 2024-04-15T21:28:19.882290+0000 mon.a (mon.0) 885 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:20.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:20 smithi133 bash[22165]: audit 2024-04-15T21:28:19.892382+0000 mon.a (mon.0) 886 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:20.542 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:20 smithi187 bash[22200]: cluster 2024-04-15T21:28:19.168013+0000 mgr.a (mgr.14152) 363 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:20.542 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:20 smithi187 bash[22200]: audit 2024-04-15T21:28:19.873696+0000 mon.a (mon.0) 884 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:20.542 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:20 smithi187 bash[22200]: audit 2024-04-15T21:28:19.882290+0000 mon.a (mon.0) 885 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:20.542 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:20 smithi187 bash[22200]: audit 2024-04-15T21:28:19.892382+0000 mon.a (mon.0) 886 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:20.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:20 smithi132 bash[21536]: cluster 2024-04-15T21:28:19.168013+0000 mgr.a (mgr.14152) 363 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:20.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:20 smithi132 bash[21536]: audit 2024-04-15T21:28:19.873696+0000 mon.a (mon.0) 884 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:20.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:20 smithi132 bash[21536]: audit 2024-04-15T21:28:19.882290+0000 mon.a (mon.0) 885 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:20.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:20 smithi132 bash[21536]: audit 2024-04-15T21:28:19.892382+0000 mon.a (mon.0) 886 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:22.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:22 smithi133 bash[22165]: cluster 2024-04-15T21:28:21.168554+0000 mgr.a (mgr.14152) 364 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:22.624 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:22 smithi132 bash[21536]: cluster 2024-04-15T21:28:21.168554+0000 mgr.a (mgr.14152) 364 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:22.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:22 smithi187 bash[22200]: cluster 2024-04-15T21:28:21.168554+0000 mgr.a (mgr.14152) 364 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:24.623 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:24 smithi133 bash[22165]: cluster 2024-04-15T21:28:23.169102+0000 mgr.a (mgr.14152) 365 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:24.624 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:24 smithi132 bash[21536]: cluster 2024-04-15T21:28:23.169102+0000 mgr.a (mgr.14152) 365 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:24.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:24 smithi187 bash[22200]: cluster 2024-04-15T21:28:23.169102+0000 mgr.a (mgr.14152) 365 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:26.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:26 smithi132 bash[21536]: cluster 2024-04-15T21:28:25.169689+0000 mgr.a (mgr.14152) 366 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:26.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:26 smithi187 bash[22200]: cluster 2024-04-15T21:28:25.169689+0000 mgr.a (mgr.14152) 366 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:26.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:26 smithi133 bash[22165]: cluster 2024-04-15T21:28:25.169689+0000 mgr.a (mgr.14152) 366 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:28.624 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:28 smithi132 bash[21536]: cluster 2024-04-15T21:28:27.170289+0000 mgr.a (mgr.14152) 367 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:28.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:28 smithi132 bash[21536]: audit 2024-04-15T21:28:28.081607+0000 mon.a (mon.0) 887 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:28.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:28 smithi132 bash[21536]: audit 2024-04-15T21:28:28.086856+0000 mon.a (mon.0) 888 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:28.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:28 smithi132 bash[21536]: audit 2024-04-15T21:28:28.091983+0000 mon.a (mon.0) 889 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:28.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:28 smithi187 bash[22200]: cluster 2024-04-15T21:28:27.170289+0000 mgr.a (mgr.14152) 367 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:28.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:28 smithi187 bash[22200]: audit 2024-04-15T21:28:28.081607+0000 mon.a (mon.0) 887 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:28.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:28 smithi187 bash[22200]: audit 2024-04-15T21:28:28.086856+0000 mon.a (mon.0) 888 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:28.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:28 smithi187 bash[22200]: audit 2024-04-15T21:28:28.091983+0000 mon.a (mon.0) 889 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:28.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:28 smithi133 bash[22165]: cluster 2024-04-15T21:28:27.170289+0000 mgr.a (mgr.14152) 367 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:28.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:28 smithi133 bash[22165]: audit 2024-04-15T21:28:28.081607+0000 mon.a (mon.0) 887 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:28.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:28 smithi133 bash[22165]: audit 2024-04-15T21:28:28.086856+0000 mon.a (mon.0) 888 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:28.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:28 smithi133 bash[22165]: audit 2024-04-15T21:28:28.091983+0000 mon.a (mon.0) 889 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:30.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:30 smithi187 bash[22200]: cluster 2024-04-15T21:28:29.170870+0000 mgr.a (mgr.14152) 368 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:30.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:30 smithi133 bash[22165]: cluster 2024-04-15T21:28:29.170870+0000 mgr.a (mgr.14152) 368 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:30.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:30 smithi132 bash[21536]: cluster 2024-04-15T21:28:29.170870+0000 mgr.a (mgr.14152) 368 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:32.632 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:32 smithi132 bash[21536]: cluster 2024-04-15T21:28:31.171416+0000 mgr.a (mgr.14152) 369 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:32.632 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:32 smithi132 bash[21536]: audit 2024-04-15T21:28:31.706840+0000 mon.a (mon.0) 890 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:28:32.632 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:32 smithi132 bash[21536]: audit 2024-04-15T21:28:31.712786+0000 mon.a (mon.0) 891 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:28:32.632 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:32 smithi132 bash[21536]: audit 2024-04-15T21:28:31.714690+0000 mon.a (mon.0) 892 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:28:32.632 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:32 smithi132 bash[21536]: audit 2024-04-15T21:28:31.725029+0000 mon.a (mon.0) 893 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:32.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:32 smithi187 bash[22200]: cluster 2024-04-15T21:28:31.171416+0000 mgr.a (mgr.14152) 369 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:32.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:32 smithi187 bash[22200]: audit 2024-04-15T21:28:31.706840+0000 mon.a (mon.0) 890 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:28:32.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:32 smithi187 bash[22200]: audit 2024-04-15T21:28:31.712786+0000 mon.a (mon.0) 891 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:28:32.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:32 smithi187 bash[22200]: audit 2024-04-15T21:28:31.714690+0000 mon.a (mon.0) 892 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:28:32.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:32 smithi187 bash[22200]: audit 2024-04-15T21:28:31.725029+0000 mon.a (mon.0) 893 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:32.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:32 smithi133 bash[22165]: cluster 2024-04-15T21:28:31.171416+0000 mgr.a (mgr.14152) 369 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:32.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:32 smithi133 bash[22165]: audit 2024-04-15T21:28:31.706840+0000 mon.a (mon.0) 890 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:28:32.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:32 smithi133 bash[22165]: audit 2024-04-15T21:28:31.712786+0000 mon.a (mon.0) 891 : audit [DBG] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:28:32.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:32 smithi133 bash[22165]: audit 2024-04-15T21:28:31.714690+0000 mon.a (mon.0) 892 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:28:32.746 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:32 smithi133 bash[22165]: audit 2024-04-15T21:28:31.725029+0000 mon.a (mon.0) 893 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:33.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:33 smithi132 bash[21536]: audit 2024-04-15T21:28:32.617655+0000 mon.a (mon.0) 894 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:33.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:33 smithi132 bash[21536]: audit 2024-04-15T21:28:32.625878+0000 mon.a (mon.0) 895 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:33.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:33 smithi132 bash[21536]: audit 2024-04-15T21:28:32.634687+0000 mon.a (mon.0) 896 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:33.875 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:33 smithi132 bash[21536]: cluster 2024-04-15T21:28:33.171947+0000 mgr.a (mgr.14152) 370 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:33.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:33 smithi187 bash[22200]: audit 2024-04-15T21:28:32.617655+0000 mon.a (mon.0) 894 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:33.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:33 smithi187 bash[22200]: audit 2024-04-15T21:28:32.625878+0000 mon.a (mon.0) 895 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:33.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:33 smithi187 bash[22200]: audit 2024-04-15T21:28:32.634687+0000 mon.a (mon.0) 896 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:33.913 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:33 smithi187 bash[22200]: cluster 2024-04-15T21:28:33.171947+0000 mgr.a (mgr.14152) 370 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:33.995 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:33 smithi133 bash[22165]: audit 2024-04-15T21:28:32.617655+0000 mon.a (mon.0) 894 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:33.995 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:33 smithi133 bash[22165]: audit 2024-04-15T21:28:32.625878+0000 mon.a (mon.0) 895 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:33.995 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:33 smithi133 bash[22165]: audit 2024-04-15T21:28:32.634687+0000 mon.a (mon.0) 896 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:33.995 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:33 smithi133 bash[22165]: cluster 2024-04-15T21:28:33.171947+0000 mgr.a (mgr.14152) 370 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:36.374 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:36 smithi132 bash[21536]: cluster 2024-04-15T21:28:35.172496+0000 mgr.a (mgr.14152) 371 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:36.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:36 smithi133 bash[22165]: cluster 2024-04-15T21:28:35.172496+0000 mgr.a (mgr.14152) 371 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:36.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:36 smithi187 bash[22200]: cluster 2024-04-15T21:28:35.172496+0000 mgr.a (mgr.14152) 371 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:38.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:38 smithi133 bash[22165]: cluster 2024-04-15T21:28:37.172972+0000 mgr.a (mgr.14152) 372 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:38.624 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:38 smithi132 bash[21536]: cluster 2024-04-15T21:28:37.172972+0000 mgr.a (mgr.14152) 372 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:38.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:38 smithi187 bash[22200]: cluster 2024-04-15T21:28:37.172972+0000 mgr.a (mgr.14152) 372 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:40.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:40 smithi133 bash[22165]: cluster 2024-04-15T21:28:39.173571+0000 mgr.a (mgr.14152) 373 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:40.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:40 smithi133 bash[22165]: audit 2024-04-15T21:28:40.059681+0000 mon.a (mon.0) 897 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:40.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:40 smithi133 bash[22165]: audit 2024-04-15T21:28:40.068361+0000 mon.a (mon.0) 898 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:40.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:40 smithi133 bash[22165]: audit 2024-04-15T21:28:40.078426+0000 mon.a (mon.0) 899 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:40.542 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:40 smithi187 bash[22200]: cluster 2024-04-15T21:28:39.173571+0000 mgr.a (mgr.14152) 373 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:40.542 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:40 smithi187 bash[22200]: audit 2024-04-15T21:28:40.059681+0000 mon.a (mon.0) 897 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:40.542 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:40 smithi187 bash[22200]: audit 2024-04-15T21:28:40.068361+0000 mon.a (mon.0) 898 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:40.542 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:40 smithi187 bash[22200]: audit 2024-04-15T21:28:40.078426+0000 mon.a (mon.0) 899 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:40.624 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:40 smithi132 bash[21536]: cluster 2024-04-15T21:28:39.173571+0000 mgr.a (mgr.14152) 373 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:40.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:40 smithi132 bash[21536]: audit 2024-04-15T21:28:40.059681+0000 mon.a (mon.0) 897 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:40.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:40 smithi132 bash[21536]: audit 2024-04-15T21:28:40.068361+0000 mon.a (mon.0) 898 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:40.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:40 smithi132 bash[21536]: audit 2024-04-15T21:28:40.078426+0000 mon.a (mon.0) 899 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:42.497 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:42 smithi133 bash[22165]: cluster 2024-04-15T21:28:41.174046+0000 mgr.a (mgr.14152) 374 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:42.624 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:42 smithi132 bash[21536]: cluster 2024-04-15T21:28:41.174046+0000 mgr.a (mgr.14152) 374 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:42.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:42 smithi187 bash[22200]: cluster 2024-04-15T21:28:41.174046+0000 mgr.a (mgr.14152) 374 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:44.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:44 smithi133 bash[22165]: cluster 2024-04-15T21:28:43.174566+0000 mgr.a (mgr.14152) 375 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:44.624 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:44 smithi132 bash[21536]: cluster 2024-04-15T21:28:43.174566+0000 mgr.a (mgr.14152) 375 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:44.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:44 smithi187 bash[22200]: cluster 2024-04-15T21:28:43.174566+0000 mgr.a (mgr.14152) 375 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:46.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:46 smithi133 bash[22165]: cluster 2024-04-15T21:28:45.175123+0000 mgr.a (mgr.14152) 376 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:46.497 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:46 smithi132 bash[21536]: cluster 2024-04-15T21:28:45.175123+0000 mgr.a (mgr.14152) 376 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:46.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:46 smithi187 bash[22200]: cluster 2024-04-15T21:28:45.175123+0000 mgr.a (mgr.14152) 376 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:48.541 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:48 smithi132 bash[21536]: cluster 2024-04-15T21:28:47.175626+0000 mgr.a (mgr.14152) 377 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:48.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:48 smithi187 bash[22200]: cluster 2024-04-15T21:28:47.175626+0000 mgr.a (mgr.14152) 377 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:48.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:48 smithi133 bash[22165]: cluster 2024-04-15T21:28:47.175626+0000 mgr.a (mgr.14152) 377 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:49.624 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:49 smithi132 bash[21536]: audit 2024-04-15T21:28:48.295433+0000 mon.a (mon.0) 900 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:49.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:49 smithi132 bash[21536]: audit 2024-04-15T21:28:48.304894+0000 mon.a (mon.0) 901 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:49.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:49 smithi132 bash[21536]: audit 2024-04-15T21:28:48.315162+0000 mon.a (mon.0) 902 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:49.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:49 smithi187 bash[22200]: audit 2024-04-15T21:28:48.295433+0000 mon.a (mon.0) 900 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:49.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:49 smithi187 bash[22200]: audit 2024-04-15T21:28:48.304894+0000 mon.a (mon.0) 901 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:49.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:49 smithi187 bash[22200]: audit 2024-04-15T21:28:48.315162+0000 mon.a (mon.0) 902 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:49.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:49 smithi133 bash[22165]: audit 2024-04-15T21:28:48.295433+0000 mon.a (mon.0) 900 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:49.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:49 smithi133 bash[22165]: audit 2024-04-15T21:28:48.304894+0000 mon.a (mon.0) 901 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:49.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:49 smithi133 bash[22165]: audit 2024-04-15T21:28:48.315162+0000 mon.a (mon.0) 902 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:50.624 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:50 smithi132 bash[21536]: cluster 2024-04-15T21:28:49.175953+0000 mgr.a (mgr.14152) 378 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:50.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:50 smithi187 bash[22200]: cluster 2024-04-15T21:28:49.175953+0000 mgr.a (mgr.14152) 378 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:50.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:50 smithi133 bash[22165]: cluster 2024-04-15T21:28:49.175953+0000 mgr.a (mgr.14152) 378 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:52.624 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:52 smithi132 bash[21536]: cluster 2024-04-15T21:28:51.176442+0000 mgr.a (mgr.14152) 379 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:52.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:52 smithi187 bash[22200]: cluster 2024-04-15T21:28:51.176442+0000 mgr.a (mgr.14152) 379 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:52.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:52 smithi133 bash[22165]: cluster 2024-04-15T21:28:51.176442+0000 mgr.a (mgr.14152) 379 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:54.124 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:53 smithi132 bash[21536]: audit 2024-04-15T21:28:52.783513+0000 mon.a (mon.0) 903 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:54.125 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:53 smithi132 bash[21536]: audit 2024-04-15T21:28:52.789337+0000 mon.a (mon.0) 904 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:54.125 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:53 smithi132 bash[21536]: audit 2024-04-15T21:28:52.797772+0000 mon.a (mon.0) 905 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:54.125 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:53 smithi132 bash[21536]: cluster 2024-04-15T21:28:53.176969+0000 mgr.a (mgr.14152) 380 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:54.163 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:53 smithi187 bash[22200]: audit 2024-04-15T21:28:52.783513+0000 mon.a (mon.0) 903 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:54.163 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:53 smithi187 bash[22200]: audit 2024-04-15T21:28:52.789337+0000 mon.a (mon.0) 904 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:54.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:53 smithi187 bash[22200]: audit 2024-04-15T21:28:52.797772+0000 mon.a (mon.0) 905 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:54.164 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:53 smithi187 bash[22200]: cluster 2024-04-15T21:28:53.176969+0000 mgr.a (mgr.14152) 380 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:54.245 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:53 smithi133 bash[22165]: audit 2024-04-15T21:28:52.783513+0000 mon.a (mon.0) 903 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:54.245 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:53 smithi133 bash[22165]: audit 2024-04-15T21:28:52.789337+0000 mon.a (mon.0) 904 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:54.245 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:53 smithi133 bash[22165]: audit 2024-04-15T21:28:52.797772+0000 mon.a (mon.0) 905 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:28:54.245 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:53 smithi133 bash[22165]: cluster 2024-04-15T21:28:53.176969+0000 mgr.a (mgr.14152) 380 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:56.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:56 smithi133 bash[22165]: cluster 2024-04-15T21:28:55.177449+0000 mgr.a (mgr.14152) 381 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:56.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:56 smithi132 bash[21536]: cluster 2024-04-15T21:28:55.177449+0000 mgr.a (mgr.14152) 381 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:56.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:56 smithi187 bash[22200]: cluster 2024-04-15T21:28:55.177449+0000 mgr.a (mgr.14152) 381 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:58.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:28:58 smithi133 bash[22165]: cluster 2024-04-15T21:28:57.177938+0000 mgr.a (mgr.14152) 382 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:58.624 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:28:58 smithi132 bash[21536]: cluster 2024-04-15T21:28:57.177938+0000 mgr.a (mgr.14152) 382 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:28:58.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:28:58 smithi187 bash[22200]: cluster 2024-04-15T21:28:57.177938+0000 mgr.a (mgr.14152) 382 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:29:00.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:29:00 smithi133 bash[22165]: cluster 2024-04-15T21:28:59.178488+0000 mgr.a (mgr.14152) 383 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:29:00.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:29:00 smithi133 bash[22165]: audit 2024-04-15T21:29:00.219030+0000 mon.a (mon.0) 906 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:29:00.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:29:00 smithi133 bash[22165]: audit 2024-04-15T21:29:00.227522+0000 mon.a (mon.0) 907 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:29:00.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:29:00 smithi133 bash[22165]: audit 2024-04-15T21:29:00.237529+0000 mon.a (mon.0) 908 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:29:00.624 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:29:00 smithi132 bash[21536]: cluster 2024-04-15T21:28:59.178488+0000 mgr.a (mgr.14152) 383 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:29:00.624 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:29:00 smithi132 bash[21536]: audit 2024-04-15T21:29:00.219030+0000 mon.a (mon.0) 906 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:29:00.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:29:00 smithi132 bash[21536]: audit 2024-04-15T21:29:00.227522+0000 mon.a (mon.0) 907 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:29:00.625 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:29:00 smithi132 bash[21536]: audit 2024-04-15T21:29:00.237529+0000 mon.a (mon.0) 908 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:29:00.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:29:00 smithi187 bash[22200]: cluster 2024-04-15T21:28:59.178488+0000 mgr.a (mgr.14152) 383 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:29:00.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:29:00 smithi187 bash[22200]: audit 2024-04-15T21:29:00.219030+0000 mon.a (mon.0) 906 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:29:00.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:29:00 smithi187 bash[22200]: audit 2024-04-15T21:29:00.227522+0000 mon.a (mon.0) 907 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:29:00.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:29:00 smithi187 bash[22200]: audit 2024-04-15T21:29:00.237529+0000 mon.a (mon.0) 908 : audit [INF] from='mgr.14152 172.21.15.132:0/3849986495' entity='mgr.a' 2024-04-15T21:29:01.554 INFO:teuthology.orchestra.run.smithi132.stderr:+ ceph mon dump 2024-04-15T21:29:01.985 INFO:teuthology.orchestra.run.smithi132.stdout:epoch 6 2024-04-15T21:29:01.986 INFO:teuthology.orchestra.run.smithi132.stdout:fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:29:01.986 INFO:teuthology.orchestra.run.smithi132.stdout:last_changed 2024-04-15T21:26:05.570016+0000 2024-04-15T21:29:01.986 INFO:teuthology.orchestra.run.smithi132.stdout:created 2024-04-15T21:18:17.192210+0000 2024-04-15T21:29:01.986 INFO:teuthology.orchestra.run.smithi132.stdout:min_mon_release 19 (squid) 2024-04-15T21:29:01.986 INFO:teuthology.orchestra.run.smithi132.stdout:election_strategy: 1 2024-04-15T21:29:01.986 INFO:teuthology.orchestra.run.smithi132.stdout:0: [v2:172.21.15.132:3300/0,v1:172.21.15.132:6789/0] mon.a; crush_location {datacenter=a} 2024-04-15T21:29:01.986 INFO:teuthology.orchestra.run.smithi132.stdout:1: [v2:172.21.15.187:3300/0,v1:172.21.15.187:6789/0] mon.c; crush_location {datacenter=a,rack=3} 2024-04-15T21:29:01.986 INFO:teuthology.orchestra.run.smithi132.stdout:2: [v2:172.21.15.133:3300/0,v1:172.21.15.133:6789/0] mon.b; crush_location {datacenter=b,rack=2} 2024-04-15T21:29:01.989 INFO:teuthology.orchestra.run.smithi132.stderr:dumped monmap epoch 6 2024-04-15T21:29:01.999 INFO:teuthology.orchestra.run.smithi132.stderr:+ ceph mon dump --format json 2024-04-15T21:29:02.418 INFO:teuthology.orchestra.run.smithi132.stdout: 2024-04-15T21:29:02.418 INFO:teuthology.orchestra.run.smithi132.stdout:{"epoch":6,"fsid":"7ac1dc10-fb6d-11ee-bc8f-c7b262605968","modified":"2024-04-15T21:26:05.570016Z","created":"2024-04-15T21:18:17.192210Z","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.132:3300","nonce":0},{"type":"v1","addr":"172.21.15.132:6789","nonce":0}]},"addr":"172.21.15.132:6789/0","public_addr":"172.21.15.132:6789/0","priority":0,"weight":0,"crush_location":"{datacenter=a}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.187:3300","nonce":0},{"type":"v1","addr":"172.21.15.187:6789","nonce":0}]},"addr":"172.21.15.187:6789/0","public_addr":"172.21.15.187:6789/0","priority":0,"weight":0,"crush_location":"{datacenter=a,rack=3}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.133:3300","nonce":0},{"type":"v1","addr":"172.21.15.133:6789","nonce":0}]},"addr":"172.21.15.133:6789/0","public_addr":"172.21.15.133:6789/0","priority":0,"weight":0,"crush_location":"{datacenter=b,rack=2}"}],"quorum":[0,1,2]} 2024-04-15T21:29:02.421 INFO:teuthology.orchestra.run.smithi132.stderr:dumped monmap epoch 6 2024-04-15T21:29:02.431 INFO:teuthology.orchestra.run.smithi132.stderr:+ read monid 2024-04-15T21:29:02.432 INFO:teuthology.orchestra.run.smithi132.stderr:+ read crushloc 2024-04-15T21:29:02.432 INFO:teuthology.orchestra.run.smithi132.stderr:+ ceph mon dump --format json 2024-04-15T21:29:02.432 INFO:teuthology.orchestra.run.smithi132.stderr:+ jq --arg monid a --arg crushloc '{datacenter=a}' -e '.mons | .[] | select(.name == $monid) | .crush_location == $crushloc' 2024-04-15T21:29:02.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:29:02 smithi133 bash[22165]: cluster 2024-04-15T21:29:01.179086+0000 mgr.a (mgr.14152) 384 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:29:02.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:29:02 smithi133 bash[22165]: audit 2024-04-15T21:29:01.990360+0000 mon.a (mon.0) 909 : audit [DBG] from='client.? 172.21.15.132:0/544807993' entity='client.admin' cmd=[{"prefix": "mon dump"}]: dispatch 2024-04-15T21:29:02.624 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:29:02 smithi132 bash[21536]: cluster 2024-04-15T21:29:01.179086+0000 mgr.a (mgr.14152) 384 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:29:02.624 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:29:02 smithi132 bash[21536]: audit 2024-04-15T21:29:01.990360+0000 mon.a (mon.0) 909 : audit [DBG] from='client.? 172.21.15.132:0/544807993' entity='client.admin' cmd=[{"prefix": "mon dump"}]: dispatch 2024-04-15T21:29:02.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:29:02 smithi187 bash[22200]: cluster 2024-04-15T21:29:01.179086+0000 mgr.a (mgr.14152) 384 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:29:02.664 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:29:02 smithi187 bash[22200]: audit 2024-04-15T21:29:01.990360+0000 mon.a (mon.0) 909 : audit [DBG] from='client.? 172.21.15.132:0/544807993' entity='client.admin' cmd=[{"prefix": "mon dump"}]: dispatch 2024-04-15T21:29:02.835 INFO:teuthology.orchestra.run.smithi132.stderr:dumped monmap epoch 6 2024-04-15T21:29:02.844 INFO:teuthology.orchestra.run.smithi132.stdout:true 2024-04-15T21:29:02.845 INFO:teuthology.orchestra.run.smithi132.stderr:+ read monid 2024-04-15T21:29:02.845 INFO:teuthology.orchestra.run.smithi132.stderr:+ read crushloc 2024-04-15T21:29:02.845 INFO:teuthology.orchestra.run.smithi132.stderr:+ ceph mon dump --format json 2024-04-15T21:29:02.845 INFO:teuthology.orchestra.run.smithi132.stderr:+ jq --arg monid b --arg crushloc '{datacenter=b,rack=2}' -e '.mons | .[] | select(.name == $monid) | .crush_location == $crushloc' 2024-04-15T21:29:03.245 INFO:teuthology.orchestra.run.smithi132.stderr:dumped monmap epoch 6 2024-04-15T21:29:03.256 INFO:teuthology.orchestra.run.smithi132.stdout:true 2024-04-15T21:29:03.257 INFO:teuthology.orchestra.run.smithi132.stderr:+ read monid 2024-04-15T21:29:03.257 INFO:teuthology.orchestra.run.smithi132.stderr:+ read crushloc 2024-04-15T21:29:03.257 INFO:teuthology.orchestra.run.smithi132.stderr:+ ceph mon dump --format json 2024-04-15T21:29:03.257 INFO:teuthology.orchestra.run.smithi132.stderr:+ jq --arg monid c --arg crushloc '{datacenter=a,rack=3}' -e '.mons | .[] | select(.name == $monid) | .crush_location == $crushloc' 2024-04-15T21:29:03.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:29:03 smithi133 bash[22165]: audit 2024-04-15T21:29:02.423274+0000 mon.a (mon.0) 910 : audit [DBG] from='client.? 172.21.15.132:0/124049704' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:29:03.495 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:29:03 smithi133 bash[22165]: audit 2024-04-15T21:29:02.836537+0000 mon.a (mon.0) 911 : audit [DBG] from='client.? 172.21.15.132:0/892736081' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:29:03.624 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:29:03 smithi132 bash[21536]: audit 2024-04-15T21:29:02.423274+0000 mon.a (mon.0) 910 : audit [DBG] from='client.? 172.21.15.132:0/124049704' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:29:03.624 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:29:03 smithi132 bash[21536]: audit 2024-04-15T21:29:02.836537+0000 mon.a (mon.0) 911 : audit [DBG] from='client.? 172.21.15.132:0/892736081' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:29:03.658 INFO:teuthology.orchestra.run.smithi132.stderr:dumped monmap epoch 6 2024-04-15T21:29:03.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:29:03 smithi187 bash[22200]: audit 2024-04-15T21:29:02.423274+0000 mon.a (mon.0) 910 : audit [DBG] from='client.? 172.21.15.132:0/124049704' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:29:03.663 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:29:03 smithi187 bash[22200]: audit 2024-04-15T21:29:02.836537+0000 mon.a (mon.0) 911 : audit [DBG] from='client.? 172.21.15.132:0/892736081' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:29:03.667 INFO:teuthology.orchestra.run.smithi132.stdout:true 2024-04-15T21:29:03.668 INFO:teuthology.orchestra.run.smithi132.stderr:+ read monid 2024-04-15T21:29:04.366 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-15T21:29:04.376 INFO:tasks.cephadm:Teardown begin 2024-04-15T21:29:04.376 DEBUG:teuthology.orchestra.run.smithi132:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-15T21:29:04.421 DEBUG:teuthology.orchestra.run.smithi133:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-15T21:29:04.435 DEBUG:teuthology.orchestra.run.smithi187:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-15T21:29:04.450 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-04-15T21:29:04.451 DEBUG:teuthology.orchestra.run.smithi132:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-15T21:29:04.468 DEBUG:teuthology.orchestra.run.smithi133:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-15T21:29:04.482 DEBUG:teuthology.orchestra.run.smithi187:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-15T21:29:04.498 INFO:tasks.cephadm:Stopping all daemons... 2024-04-15T21:29:04.498 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-04-15T21:29:04.498 DEBUG:teuthology.orchestra.run.smithi132:> sudo systemctl stop ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mon.a 2024-04-15T21:29:04.521 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:29:04 smithi132 bash[21536]: cluster 2024-04-15T21:29:03.179705+0000 mgr.a (mgr.14152) 385 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:29:04.521 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:29:04 smithi132 bash[21536]: audit 2024-04-15T21:29:03.245887+0000 mon.a (mon.0) 912 : audit [DBG] from='client.? 172.21.15.132:0/439309943' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:29:04.521 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:29:04 smithi132 bash[21536]: audit 2024-04-15T21:29:03.659369+0000 mon.a (mon.0) 913 : audit [DBG] from='client.? 172.21.15.132:0/99243079' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:29:04.624 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:29:04 smithi132 systemd[1]: Stopping Ceph mon.a for 7ac1dc10-fb6d-11ee-bc8f-c7b262605968... 2024-04-15T21:29:04.629 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:29:04 smithi187 bash[22200]: cluster 2024-04-15T21:29:03.179705+0000 mgr.a (mgr.14152) 385 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:29:04.629 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:29:04 smithi187 bash[22200]: audit 2024-04-15T21:29:03.245887+0000 mon.a (mon.0) 912 : audit [DBG] from='client.? 172.21.15.132:0/439309943' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:29:04.629 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:29:04 smithi187 bash[22200]: audit 2024-04-15T21:29:03.659369+0000 mon.a (mon.0) 913 : audit [DBG] from='client.? 172.21.15.132:0/99243079' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:29:04.739 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:29:04 smithi133 bash[22165]: cluster 2024-04-15T21:29:03.179705+0000 mgr.a (mgr.14152) 385 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:29:04.739 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:29:04 smithi133 bash[22165]: audit 2024-04-15T21:29:03.245887+0000 mon.a (mon.0) 912 : audit [DBG] from='client.? 172.21.15.132:0/439309943' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:29:04.739 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:29:04 smithi133 bash[22165]: audit 2024-04-15T21:29:03.659369+0000 mon.a (mon.0) 913 : audit [DBG] from='client.? 172.21.15.132:0/99243079' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:29:04.797 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:29:04 smithi132 bash[21536]: debug 2024-04-15T21:29:04.627+0000 7fe224195700 -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-04-15T21:29:04.797 INFO:journalctl@ceph.mon.a.smithi132.stdout:Apr 15 21:29:04 smithi132 bash[21536]: debug 2024-04-15T21:29:04.627+0000 7fe224195700 -1 mon.a@0(leader) e6 *** Got Signal Terminated *** 2024-04-15T21:29:05.446 DEBUG:teuthology.orchestra.run.smithi132:> sudo pkill -f 'journalctl -f -n 0 -u ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mon.a.service' 2024-04-15T21:29:05.522 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T21:29:05.522 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-04-15T21:29:05.522 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-04-15T21:29:05.522 DEBUG:teuthology.orchestra.run.smithi133:> sudo systemctl stop ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mon.b 2024-04-15T21:29:05.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:29:05 smithi133 systemd[1]: Stopping Ceph mon.b for 7ac1dc10-fb6d-11ee-bc8f-c7b262605968... 2024-04-15T21:29:05.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:29:05 smithi133 bash[22165]: debug 2024-04-15T21:29:05.667+0000 7fc8ec6eb700 -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-04-15T21:29:05.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:29:05 smithi133 bash[22165]: debug 2024-04-15T21:29:05.667+0000 7fc8ec6eb700 -1 mon.b@2(peon) e6 *** Got Signal Terminated *** 2024-04-15T21:29:06.745 INFO:journalctl@ceph.mon.b.smithi133.stdout:Apr 15 21:29:06 smithi133 bash[32326]: ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968-mon-b 2024-04-15T21:29:06.757 DEBUG:teuthology.orchestra.run.smithi133:> sudo pkill -f 'journalctl -f -n 0 -u ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mon.b.service' 2024-04-15T21:29:06.838 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T21:29:06.839 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-04-15T21:29:06.839 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-04-15T21:29:06.839 DEBUG:teuthology.orchestra.run.smithi187:> sudo systemctl stop ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mon.c 2024-04-15T21:29:07.109 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:29:06 smithi187 systemd[1]: Stopping Ceph mon.c for 7ac1dc10-fb6d-11ee-bc8f-c7b262605968... 2024-04-15T21:29:07.109 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:29:06 smithi187 bash[22200]: debug 2024-04-15T21:29:06.992+0000 7f2ad3a7a700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.c -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-04-15T21:29:07.109 INFO:journalctl@ceph.mon.c.smithi187.stdout:Apr 15 21:29:06 smithi187 bash[22200]: debug 2024-04-15T21:29:06.992+0000 7f2ad3a7a700 -1 mon.c@1(peon) e6 *** Got Signal Terminated *** 2024-04-15T21:29:07.927 DEBUG:teuthology.orchestra.run.smithi187:> sudo pkill -f 'journalctl -f -n 0 -u ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mon.c.service' 2024-04-15T21:29:07.958 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T21:29:07.959 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-04-15T21:29:07.959 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-04-15T21:29:07.959 DEBUG:teuthology.orchestra.run.smithi132:> sudo systemctl stop ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mgr.a 2024-04-15T21:29:08.337 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:29:07 smithi132 systemd[1]: Stopping Ceph mgr.a for 7ac1dc10-fb6d-11ee-bc8f-c7b262605968... 2024-04-15T21:29:08.624 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:29:08 smithi132 bash[21820]: debug 2024-04-15T21:29:08.335+0000 7f05e956a700 -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-04-15T21:29:08.624 INFO:journalctl@ceph.mgr.a.smithi132.stdout:Apr 15 21:29:08 smithi132 bash[21820]: debug 2024-04-15T21:29:08.335+0000 7f05e956a700 -1 mgr handle_mgr_signal *** Got signal Terminated *** 2024-04-15T21:29:09.347 DEBUG:teuthology.orchestra.run.smithi132:> sudo pkill -f 'journalctl -f -n 0 -u ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mgr.a.service' 2024-04-15T21:29:09.370 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T21:29:09.370 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-04-15T21:29:09.370 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-04-15T21:29:09.370 DEBUG:teuthology.orchestra.run.smithi133:> sudo systemctl stop ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mgr.b 2024-04-15T21:29:09.705 INFO:journalctl@ceph.mgr.b.smithi133.stdout:Apr 15 21:29:09 smithi133 systemd[1]: Stopping Ceph mgr.b for 7ac1dc10-fb6d-11ee-bc8f-c7b262605968... 2024-04-15T21:29:10.216 DEBUG:teuthology.orchestra.run.smithi133:> sudo pkill -f 'journalctl -f -n 0 -u ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@mgr.b.service' 2024-04-15T21:29:10.237 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T21:29:10.237 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-04-15T21:29:10.237 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-04-15T21:29:10.237 DEBUG:teuthology.orchestra.run.smithi132:> sudo systemctl stop ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@osd.0 2024-04-15T21:29:10.530 INFO:journalctl@ceph.osd.0.smithi132.stdout:Apr 15 21:29:10 smithi132 systemd[1]: Stopping Ceph osd.0 for 7ac1dc10-fb6d-11ee-bc8f-c7b262605968... 2024-04-15T21:29:10.530 INFO:journalctl@ceph.osd.0.smithi132.stdout:Apr 15 21:29:10 smithi132 bash[31851]: debug 2024-04-15T21:29:10.359+0000 7f596bee8700 -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-04-15T21:29:10.530 INFO:journalctl@ceph.osd.0.smithi132.stdout:Apr 15 21:29:10 smithi132 bash[31851]: debug 2024-04-15T21:29:10.359+0000 7f596bee8700 -1 osd.0 21 *** Got signal Terminated *** 2024-04-15T21:29:10.530 INFO:journalctl@ceph.osd.0.smithi132.stdout:Apr 15 21:29:10 smithi132 bash[31851]: debug 2024-04-15T21:29:10.359+0000 7f596bee8700 -1 osd.0 21 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-15T21:29:16.624 INFO:journalctl@ceph.osd.0.smithi132.stdout:Apr 15 21:29:16 smithi132 bash[41792]: ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968-osd-0 2024-04-15T21:29:16.624 INFO:journalctl@ceph.osd.0.smithi132.stdout:Apr 15 21:29:16 smithi132 bash[41948]: Error response from daemon: No such container: ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968-osd-0 2024-04-15T21:29:18.097 DEBUG:teuthology.orchestra.run.smithi132:> sudo pkill -f 'journalctl -f -n 0 -u ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@osd.0.service' 2024-04-15T21:29:18.133 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T21:29:18.133 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-04-15T21:29:18.133 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-04-15T21:29:18.133 DEBUG:teuthology.orchestra.run.smithi133:> sudo systemctl stop ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@osd.1 2024-04-15T21:29:18.495 INFO:journalctl@ceph.osd.1.smithi133.stdout:Apr 15 21:29:18 smithi133 systemd[1]: Stopping Ceph osd.1 for 7ac1dc10-fb6d-11ee-bc8f-c7b262605968... 2024-04-15T21:29:18.496 INFO:journalctl@ceph.osd.1.smithi133.stdout:Apr 15 21:29:18 smithi133 bash[27091]: debug 2024-04-15T21:29:18.282+0000 7fa2cac58700 -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-04-15T21:29:18.496 INFO:journalctl@ceph.osd.1.smithi133.stdout:Apr 15 21:29:18 smithi133 bash[27091]: debug 2024-04-15T21:29:18.282+0000 7fa2cac58700 -1 osd.1 21 *** Got signal Terminated *** 2024-04-15T21:29:18.496 INFO:journalctl@ceph.osd.1.smithi133.stdout:Apr 15 21:29:18 smithi133 bash[27091]: debug 2024-04-15T21:29:18.282+0000 7fa2cac58700 -1 osd.1 21 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-15T21:29:24.745 INFO:journalctl@ceph.osd.1.smithi133.stdout:Apr 15 21:29:24 smithi133 bash[32918]: ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968-osd-1 2024-04-15T21:29:24.745 INFO:journalctl@ceph.osd.1.smithi133.stdout:Apr 15 21:29:24 smithi133 bash[32986]: Error response from daemon: No such container: ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968-osd-1 2024-04-15T21:29:26.361 DEBUG:teuthology.orchestra.run.smithi133:> sudo pkill -f 'journalctl -f -n 0 -u ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@osd.1.service' 2024-04-15T21:29:26.403 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T21:29:26.404 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-04-15T21:29:26.404 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-04-15T21:29:26.404 DEBUG:teuthology.orchestra.run.smithi187:> sudo systemctl stop ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@osd.2 2024-04-15T21:29:26.914 INFO:journalctl@ceph.osd.2.smithi187.stdout:Apr 15 21:29:26 smithi187 systemd[1]: Stopping Ceph osd.2 for 7ac1dc10-fb6d-11ee-bc8f-c7b262605968... 2024-04-15T21:29:26.914 INFO:journalctl@ceph.osd.2.smithi187.stdout:Apr 15 21:29:26 smithi187 bash[27502]: debug 2024-04-15T21:29:26.572+0000 7f39dae69700 -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-04-15T21:29:26.914 INFO:journalctl@ceph.osd.2.smithi187.stdout:Apr 15 21:29:26 smithi187 bash[27502]: debug 2024-04-15T21:29:26.572+0000 7f39dae69700 -1 osd.2 21 *** Got signal Terminated *** 2024-04-15T21:29:26.914 INFO:journalctl@ceph.osd.2.smithi187.stdout:Apr 15 21:29:26 smithi187 bash[27502]: debug 2024-04-15T21:29:26.572+0000 7f39dae69700 -1 osd.2 21 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-15T21:29:32.864 INFO:journalctl@ceph.osd.2.smithi187.stdout:Apr 15 21:29:32 smithi187 bash[32426]: ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968-osd-2 2024-04-15T21:29:32.864 INFO:journalctl@ceph.osd.2.smithi187.stdout:Apr 15 21:29:32 smithi187 bash[32630]: Error response from daemon: No such container: ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968-osd-2 2024-04-15T21:29:34.565 DEBUG:teuthology.orchestra.run.smithi187:> sudo pkill -f 'journalctl -f -n 0 -u ceph-7ac1dc10-fb6d-11ee-bc8f-c7b262605968@osd.2.service' 2024-04-15T21:29:34.610 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T21:29:34.613 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-04-15T21:29:34.613 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 --force --keep-logs 2024-04-15T21:29:34.780 INFO:teuthology.orchestra.run.smithi132.stdout:Deleting cluster with fsid: 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:29:37.289 DEBUG:teuthology.orchestra.run.smithi133:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 --force --keep-logs 2024-04-15T21:29:37.456 INFO:teuthology.orchestra.run.smithi133.stdout:Deleting cluster with fsid: 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:29:39.900 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 --force --keep-logs 2024-04-15T21:29:40.067 INFO:teuthology.orchestra.run.smithi187.stdout:Deleting cluster with fsid: 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:29:42.365 DEBUG:teuthology.orchestra.run.smithi132:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-15T21:29:42.380 DEBUG:teuthology.orchestra.run.smithi133:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-15T21:29:42.394 DEBUG:teuthology.orchestra.run.smithi187:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-15T21:29:42.406 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-15T21:29:42.408 DEBUG:teuthology.misc:Transferring archived files from smithi132:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657350/remote/smithi132/crash 2024-04-15T21:29:42.409 DEBUG:teuthology.orchestra.run.smithi132:> sudo tar c -f - -C /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T21:29:42.434 INFO:teuthology.orchestra.run.smithi132.stderr:tar: /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T21:29:42.434 INFO:teuthology.orchestra.run.smithi132.stderr:tar: Error is not recoverable: exiting now 2024-04-15T21:29:42.436 DEBUG:teuthology.misc:Transferring archived files from smithi133:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657350/remote/smithi133/crash 2024-04-15T21:29:42.437 DEBUG:teuthology.orchestra.run.smithi133:> sudo tar c -f - -C /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T21:29:42.449 INFO:teuthology.orchestra.run.smithi133.stderr:tar: /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T21:29:42.449 INFO:teuthology.orchestra.run.smithi133.stderr:tar: Error is not recoverable: exiting now 2024-04-15T21:29:42.451 DEBUG:teuthology.misc:Transferring archived files from smithi187:/var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657350/remote/smithi187/crash 2024-04-15T21:29:42.452 DEBUG:teuthology.orchestra.run.smithi187:> sudo tar c -f - -C /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T21:29:42.462 INFO:teuthology.orchestra.run.smithi187.stderr:tar: /var/lib/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T21:29:42.462 INFO:teuthology.orchestra.run.smithi187.stderr:tar: Error is not recoverable: exiting now 2024-04-15T21:29:42.463 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-15T21:29:42.463 DEBUG:teuthology.orchestra.run.smithi132:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v POOL_APP_NOT_ENABLED | egrep -v 'mon down' | egrep -v 'mons down' | egrep -v 'out of quorum' | head -n 1 2024-04-15T21:29:42.493 INFO:teuthology.orchestra.run.smithi132.stdout:2024-04-15T21:22:26.389324+0000 mon.a (mon.0) 437 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-15T21:29:42.494 WARNING:tasks.cephadm:Found errors (ERR|WRN|SEC) in cluster log 2024-04-15T21:29:42.494 DEBUG:teuthology.orchestra.run.smithi132:> sudo egrep '\[SEC\]' /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v POOL_APP_NOT_ENABLED | egrep -v 'mon down' | egrep -v 'mons down' | egrep -v 'out of quorum' | head -n 1 2024-04-15T21:29:42.548 DEBUG:teuthology.orchestra.run.smithi132:> sudo egrep '\[ERR\]' /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v POOL_APP_NOT_ENABLED | egrep -v 'mon down' | egrep -v 'mons down' | egrep -v 'out of quorum' | head -n 1 2024-04-15T21:29:42.604 DEBUG:teuthology.orchestra.run.smithi132:> sudo egrep '\[WRN\]' /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v POOL_APP_NOT_ENABLED | egrep -v 'mon down' | egrep -v 'mons down' | egrep -v 'out of quorum' | head -n 1 2024-04-15T21:29:42.659 INFO:teuthology.orchestra.run.smithi132.stdout:2024-04-15T21:22:26.389324+0000 mon.a (mon.0) 437 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-15T21:29:42.659 INFO:tasks.cephadm:Compressing logs... 2024-04-15T21:29:42.660 DEBUG:teuthology.orchestra.run.smithi132:> 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-04-15T21:29:42.705 DEBUG:teuthology.orchestra.run.smithi133:> 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-04-15T21:29:42.707 DEBUG:teuthology.orchestra.run.smithi187:> 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-04-15T21:29:42.713 INFO:teuthology.orchestra.run.smithi132.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-04-15T21:29:42.718 INFO:teuthology.orchestra.run.smithi133.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-04-15T21:29:42.720 INFO:teuthology.orchestra.run.smithi187.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-04-15T21:29:42.727 INFO:teuthology.orchestra.run.smithi187.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T21:29:42.728 INFO:teuthology.orchestra.run.smithi187.stderr:gzip -5 --verbose -- /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-osd.2.log 2024-04-15T21:29:42.729 INFO:teuthology.orchestra.run.smithi187.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.cephadm.log 2024-04-15T21:29:42.729 INFO:teuthology.orchestra.run.smithi187.stderr:/var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.log 2024-04-15T21:29:42.730 INFO:teuthology.orchestra.run.smithi187.stderr:/var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-volume.log 2024-04-15T21:29:42.730 INFO:teuthology.orchestra.run.smithi187.stderr:/var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.log: 82.0% -- replaced with /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.cephadm.log.gz 2024-04-15T21:29:42.730 INFO:teuthology.orchestra.run.smithi187.stderr:gzip -5 --verbose -- /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-mon.c.log 2024-04-15T21:29:42.730 INFO:teuthology.orchestra.run.smithi187.stderr:gzip -5 --verbose -- /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.audit.log 2024-04-15T21:29:42.731 INFO:teuthology.orchestra.run.smithi187.stderr:/var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-volume.log: /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-mon.c.log: 87.8% -- replaced with /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.log.gz 2024-04-15T21:29:42.731 INFO:teuthology.orchestra.run.smithi187.stderr:/var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.audit.log: 84.7% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T21:29:42.733 INFO:teuthology.orchestra.run.smithi132.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T21:29:42.733 INFO:teuthology.orchestra.run.smithi132.stderr:gzip -5 --verbose -- /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-osd.0.log 2024-04-15T21:29:42.733 INFO:teuthology.orchestra.run.smithi132.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-mon.a.log 2024-04-15T21:29:42.733 INFO:teuthology.orchestra.run.smithi132.stderr:/var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.cephadm.log 2024-04-15T21:29:42.733 INFO:teuthology.orchestra.run.smithi132.stderr:/var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-mon.a.log: gzip -5 --verbose -- /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.log 2024-04-15T21:29:42.733 INFO:teuthology.orchestra.run.smithi132.stderr:/var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-volume.log 2024-04-15T21:29:42.733 INFO:teuthology.orchestra.run.smithi132.stderr: 82.7% -- replaced with /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.cephadm.log.gz 2024-04-15T21:29:42.733 INFO:teuthology.orchestra.run.smithi132.stderr:/var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.audit.log 2024-04-15T21:29:42.733 INFO:teuthology.orchestra.run.smithi132.stderr:/var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-mgr.a.log 2024-04-15T21:29:42.734 INFO:teuthology.orchestra.run.smithi187.stderr: 90.6% -- replaced with /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.audit.log.gz 2024-04-15T21:29:42.735 INFO:teuthology.orchestra.run.smithi132.stderr:/var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.audit.log: /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-mgr.a.log: 87.8% -- replaced with /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.log.gz 2024-04-15T21:29:42.735 INFO:teuthology.orchestra.run.smithi132.stderr: 87.4% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T21:29:42.736 INFO:teuthology.orchestra.run.smithi132.stderr: 90.3% -- replaced with /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.audit.log.gz 2024-04-15T21:29:42.736 INFO:teuthology.orchestra.run.smithi133.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T21:29:42.736 INFO:teuthology.orchestra.run.smithi133.stderr:gzip -5 --verbose -- /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.cephadm.log 2024-04-15T21:29:42.736 INFO:teuthology.orchestra.run.smithi133.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-osd.1.log 2024-04-15T21:29:42.737 INFO:teuthology.orchestra.run.smithi133.stderr:/var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.log 2024-04-15T21:29:42.737 INFO:teuthology.orchestra.run.smithi133.stderr: 82.0% -- replaced with /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.cephadm.log.gz 2024-04-15T21:29:42.737 INFO:teuthology.orchestra.run.smithi133.stderr:gzip -5 --verbose -- /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-volume.log 2024-04-15T21:29:42.737 INFO:teuthology.orchestra.run.smithi133.stderr:/var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-osd.1.log: /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-mgr.b.log 2024-04-15T21:29:42.738 INFO:teuthology.orchestra.run.smithi133.stderr: 85.2% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T21:29:42.738 INFO:teuthology.orchestra.run.smithi133.stderr:/var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-volume.log: 87.8% -- replaced with /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.log.gz 2024-04-15T21:29:42.738 INFO:teuthology.orchestra.run.smithi133.stderr:gzip -5 --verbose -- /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.audit.log 2024-04-15T21:29:42.738 INFO:teuthology.orchestra.run.smithi133.stderr:/var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-mgr.b.log: gzip -5 --verbose -- /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-mon.b.log 2024-04-15T21:29:42.739 INFO:teuthology.orchestra.run.smithi133.stderr:/var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.audit.log: /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-mon.b.log: 90.6% -- replaced with /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph.audit.log.gz 2024-04-15T21:29:42.740 INFO:teuthology.orchestra.run.smithi133.stderr: 91.6% -- replaced with /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-mgr.b.log.gz 2024-04-15T21:29:42.745 INFO:teuthology.orchestra.run.smithi187.stderr: 91.8% -- replaced with /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-volume.log.gz 2024-04-15T21:29:42.750 INFO:teuthology.orchestra.run.smithi132.stderr: 91.7% -- replaced with /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-volume.log.gz 2024-04-15T21:29:42.755 INFO:teuthology.orchestra.run.smithi133.stderr: 91.9% -- replaced with /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-volume.log.gz 2024-04-15T21:29:42.764 INFO:teuthology.orchestra.run.smithi187.stderr: 93.9% -- replaced with /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-osd.2.log.gz 2024-04-15T21:29:42.785 INFO:teuthology.orchestra.run.smithi132.stderr: 93.9% -- replaced with /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-osd.0.log.gz 2024-04-15T21:29:42.818 INFO:teuthology.orchestra.run.smithi187.stderr: 93.1% -- replaced with /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-mon.c.log.gz 2024-04-15T21:29:42.819 INFO:teuthology.orchestra.run.smithi187.stderr: 2024-04-15T21:29:42.819 INFO:teuthology.orchestra.run.smithi187.stderr:real 0m0.108s 2024-04-15T21:29:42.819 INFO:teuthology.orchestra.run.smithi187.stderr:user 0m0.144s 2024-04-15T21:29:42.819 INFO:teuthology.orchestra.run.smithi187.stderr:sys 0m0.025s 2024-04-15T21:29:42.823 INFO:teuthology.orchestra.run.smithi133.stderr: 94.1% -- replaced with /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-osd.1.log.gz 2024-04-15T21:29:42.840 INFO:teuthology.orchestra.run.smithi132.stderr: 87.9% -- replaced with /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-mgr.a.log.gz 2024-04-15T21:29:42.851 INFO:teuthology.orchestra.run.smithi133.stderr: 92.8% -- replaced with /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-mon.b.log.gz 2024-04-15T21:29:42.853 INFO:teuthology.orchestra.run.smithi133.stderr: 2024-04-15T21:29:42.853 INFO:teuthology.orchestra.run.smithi133.stderr:real 0m0.143s 2024-04-15T21:29:42.853 INFO:teuthology.orchestra.run.smithi133.stderr:user 0m0.223s 2024-04-15T21:29:42.853 INFO:teuthology.orchestra.run.smithi133.stderr:sys 0m0.029s 2024-04-15T21:29:43.021 INFO:teuthology.orchestra.run.smithi132.stderr: 91.4% -- replaced with /var/log/ceph/7ac1dc10-fb6d-11ee-bc8f-c7b262605968/ceph-mon.a.log.gz 2024-04-15T21:29:43.023 INFO:teuthology.orchestra.run.smithi132.stderr: 2024-04-15T21:29:43.023 INFO:teuthology.orchestra.run.smithi132.stderr:real 0m0.316s 2024-04-15T21:29:43.023 INFO:teuthology.orchestra.run.smithi132.stderr:user 0m0.461s 2024-04-15T21:29:43.023 INFO:teuthology.orchestra.run.smithi132.stderr:sys 0m0.032s 2024-04-15T21:29:43.023 INFO:tasks.cephadm:Archiving logs... 2024-04-15T21:29:43.023 DEBUG:teuthology.misc:Transferring archived files from smithi132:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657350/remote/smithi132/log 2024-04-15T21:29:43.024 DEBUG:teuthology.orchestra.run.smithi132:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T21:29:43.149 DEBUG:teuthology.misc:Transferring archived files from smithi133:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657350/remote/smithi133/log 2024-04-15T21:29:43.150 DEBUG:teuthology.orchestra.run.smithi133:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T21:29:43.189 DEBUG:teuthology.misc:Transferring archived files from smithi187:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657350/remote/smithi187/log 2024-04-15T21:29:43.190 DEBUG:teuthology.orchestra.run.smithi187:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T21:29:43.225 INFO:tasks.cephadm:Removing cluster... 2024-04-15T21:29:43.225 DEBUG:teuthology.orchestra.run.smithi132:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 --force 2024-04-15T21:29:43.392 INFO:teuthology.orchestra.run.smithi132.stdout:Deleting cluster with fsid: 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:29:44.723 DEBUG:teuthology.orchestra.run.smithi133:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 --force 2024-04-15T21:29:44.893 INFO:teuthology.orchestra.run.smithi133.stdout:Deleting cluster with fsid: 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:29:46.232 DEBUG:teuthology.orchestra.run.smithi187:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 --force 2024-04-15T21:29:46.400 INFO:teuthology.orchestra.run.smithi187.stdout:Deleting cluster with fsid: 7ac1dc10-fb6d-11ee-bc8f-c7b262605968 2024-04-15T21:29:47.749 INFO:tasks.cephadm:Removing cephadm ... 2024-04-15T21:29:47.750 DEBUG:teuthology.orchestra.run.smithi132:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T21:29:47.756 DEBUG:teuthology.orchestra.run.smithi133:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T21:29:47.762 DEBUG:teuthology.orchestra.run.smithi187:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T21:29:47.767 INFO:tasks.cephadm:Teardown complete 2024-04-15T21:29:47.768 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-04-15T21:29:47.777 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-04-15T21:29:47.777 DEBUG:teuthology.orchestra.run.smithi132:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-15T21:29:47.801 DEBUG:teuthology.orchestra.run.smithi133:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-15T21:29:47.808 DEBUG:teuthology.orchestra.run.smithi187:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-15T21:29:47.893 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-15T21:29:47.901 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-15T21:29:47.902 DEBUG:teuthology.orchestra.run.smithi132:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T21:29:47.904 DEBUG:teuthology.orchestra.run.smithi133:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T21:29:47.906 DEBUG:teuthology.orchestra.run.smithi187:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T21:29:47.915 INFO:teuthology.orchestra.run.smithi132.stdout: remote refid st t when poll reach delay offset jitter 2024-04-15T21:29:47.915 INFO:teuthology.orchestra.run.smithi132.stdout:============================================================================== 2024-04-15T21:29:47.915 INFO:teuthology.orchestra.run.smithi132.stdout:*hv01.front.sepi 67.205.162.81 3 u 36 64 377 0.081 -6.738 3.629 2024-04-15T21:29:47.915 INFO:teuthology.orchestra.run.smithi132.stdout:+hv02.front.sepi 63.231.80.2 3 u 36 64 377 0.098 -1.267 2.492 2024-04-15T21:29:47.915 INFO:teuthology.orchestra.run.smithi132.stdout:+hv03.front.sepi 74.6.168.72 3 u 34 64 377 0.108 -5.218 3.595 2024-04-15T21:29:47.915 INFO:teuthology.orchestra.run.smithi132.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-04-15T21:29:47.917 INFO:teuthology.orchestra.run.smithi133.stdout: remote refid st t when poll reach delay offset jitter 2024-04-15T21:29:47.917 INFO:teuthology.orchestra.run.smithi133.stdout:============================================================================== 2024-04-15T21:29:47.917 INFO:teuthology.orchestra.run.smithi133.stdout:+hv01.front.sepi 67.205.162.81 3 u 35 64 377 0.071 -3.497 1.488 2024-04-15T21:29:47.917 INFO:teuthology.orchestra.run.smithi133.stdout:*hv02.front.sepi 63.231.80.2 3 u 35 64 377 0.114 -2.562 1.575 2024-04-15T21:29:47.917 INFO:teuthology.orchestra.run.smithi133.stdout:+hv03.front.sepi 74.6.168.72 3 u 35 64 377 0.079 -1.772 1.318 2024-04-15T21:29:47.917 INFO:teuthology.orchestra.run.smithi133.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-04-15T21:29:47.923 INFO:teuthology.orchestra.run.smithi187.stdout: remote refid st t when poll reach delay offset jitter 2024-04-15T21:29:47.924 INFO:teuthology.orchestra.run.smithi187.stdout:============================================================================== 2024-04-15T21:29:47.924 INFO:teuthology.orchestra.run.smithi187.stdout:*hv01.front.sepi 67.205.162.81 3 u 35 64 377 0.104 -2.867 1.084 2024-04-15T21:29:47.924 INFO:teuthology.orchestra.run.smithi187.stdout:+hv02.front.sepi 63.231.80.2 3 u 37 64 377 0.109 -1.822 1.145 2024-04-15T21:29:47.924 INFO:teuthology.orchestra.run.smithi187.stdout:+hv03.front.sepi 74.6.168.72 3 u 38 64 377 0.128 -1.377 1.036 2024-04-15T21:29:47.924 INFO:teuthology.orchestra.run.smithi187.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-04-15T21:29:47.925 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-15T21:29:47.933 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-15T21:29:47.934 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-15T21:29:47.979 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-15T21:29:48.021 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-15T21:29:48.068 INFO:teuthology.task.internal:Duration was 1323.525532 seconds 2024-04-15T21:29:48.069 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-15T21:29:48.097 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-15T21:29:48.097 DEBUG:teuthology.orchestra.run.smithi132:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T21:29:48.099 DEBUG:teuthology.orchestra.run.smithi133:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T21:29:48.101 DEBUG:teuthology.orchestra.run.smithi187:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T21:29:48.137 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-15T21:29:48.137 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi132.front.sepia.ceph.com 2024-04-15T21:29:48.137 DEBUG:teuthology.orchestra.run.smithi132:> 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-04-15T21:29:48.184 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi133.front.sepia.ceph.com 2024-04-15T21:29:48.185 DEBUG:teuthology.orchestra.run.smithi133:> 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-04-15T21:29:48.195 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi187.front.sepia.ceph.com 2024-04-15T21:29:48.195 DEBUG:teuthology.orchestra.run.smithi187:> 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-04-15T21:29:48.205 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-15T21:29:48.205 DEBUG:teuthology.orchestra.run.smithi132:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T21:29:48.233 DEBUG:teuthology.orchestra.run.smithi133:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T21:29:48.240 DEBUG:teuthology.orchestra.run.smithi187:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T21:29:48.282 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-15T21:29:48.282 DEBUG:teuthology.orchestra.run.smithi132:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T21:29:48.317 DEBUG:teuthology.orchestra.run.smithi133:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T21:29:48.320 DEBUG:teuthology.orchestra.run.smithi187:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T21:29:48.404 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-15T21:29:48.415 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-15T21:29:48.415 DEBUG:teuthology.orchestra.run.smithi132:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T21:29:48.428 DEBUG:teuthology.orchestra.run.smithi133:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T21:29:48.440 DEBUG:teuthology.orchestra.run.smithi187:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T21:29:48.452 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-15T21:29:48.510 DEBUG:teuthology.orchestra.run.smithi132:> 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-04-15T21:29:48.513 DEBUG:teuthology.orchestra.run.smithi133:> 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-04-15T21:29:48.515 DEBUG:teuthology.orchestra.run.smithi187:> 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-04-15T21:29:48.523 INFO:teuthology.orchestra.run.smithi132.stdout:kernel.core_pattern = core 2024-04-15T21:29:48.524 INFO:teuthology.orchestra.run.smithi133.stdout:kernel.core_pattern = core 2024-04-15T21:29:48.528 INFO:teuthology.orchestra.run.smithi187.stdout:kernel.core_pattern = core 2024-04-15T21:29:48.559 DEBUG:teuthology.orchestra.run.smithi132:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T21:29:48.588 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:29:48.588 DEBUG:teuthology.orchestra.run.smithi133:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T21:29:48.592 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:29:48.593 DEBUG:teuthology.orchestra.run.smithi187:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T21:29:48.605 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:29:48.606 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-15T21:29:48.616 INFO:teuthology.task.internal:Transferring archived files... 2024-04-15T21:29:48.616 DEBUG:teuthology.misc:Transferring archived files from smithi132:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657350/remote/smithi132 2024-04-15T21:29:48.617 DEBUG:teuthology.orchestra.run.smithi132:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T21:29:48.655 DEBUG:teuthology.misc:Transferring archived files from smithi133:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657350/remote/smithi133 2024-04-15T21:29:48.655 DEBUG:teuthology.orchestra.run.smithi133:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T21:29:48.677 DEBUG:teuthology.misc:Transferring archived files from smithi187:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657350/remote/smithi187 2024-04-15T21:29:48.677 DEBUG:teuthology.orchestra.run.smithi187:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T21:29:48.700 INFO:teuthology.task.internal:Removing archive directory... 2024-04-15T21:29:48.700 DEBUG:teuthology.orchestra.run.smithi132:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T21:29:48.703 DEBUG:teuthology.orchestra.run.smithi133:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T21:29:48.715 DEBUG:teuthology.orchestra.run.smithi187:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T21:29:48.742 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-15T21:29:48.753 INFO:teuthology.task.internal:Not uploading archives. 2024-04-15T21:29:48.753 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-15T21:29:48.802 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-15T21:29:48.802 DEBUG:teuthology.orchestra.run.smithi132:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T21:29:48.804 DEBUG:teuthology.orchestra.run.smithi133:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T21:29:48.806 DEBUG:teuthology.orchestra.run.smithi187:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T21:29:48.808 INFO:teuthology.orchestra.run.smithi132.stdout: 658640 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 21:29 /home/ubuntu/cephtest 2024-04-15T21:29:48.810 INFO:teuthology.orchestra.run.smithi133.stdout: 658637 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 21:29 /home/ubuntu/cephtest 2024-04-15T21:29:48.813 INFO:teuthology.orchestra.run.smithi187.stdout: 658641 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 21:29 /home/ubuntu/cephtest 2024-04-15T21:29:48.814 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-15T21:29:48.833 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-15T21:29:48.948 INFO:teuthology.nuke:Checking targets against current locks 2024-04-15T21:29:48.975 DEBUG:teuthology.nuke:shortname: smithi132 2024-04-15T21:29:48.975 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T21:29:48.998 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi132.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657350', '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-04-15 20:59:19.963215', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBL4Ubs1LsF56kJty9wvAMAkQWwfUH6vBLEcwCNb5hDLbwvgclz8VTUrM4wDU2fIbm2Qq4Mx7tzitMuZ6usysN2o='} 2024-04-15T21:29:49.002 DEBUG:teuthology.nuke:shortname: smithi133 2024-04-15T21:29:49.002 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T21:29:49.026 DEBUG:teuthology.nuke:shortname: smithi187 2024-04-15T21:29:49.026 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T21:29:49.029 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi133.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657350', '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-04-15 20:59:19.960017', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEBKXSKhIVr/d5my/cgVkBS7tClllSCF2QSpVsNEyXt10+SVJ+j8296DzVZOpDdU/fyLICn3t2wN4kWW9VgM0jU='} 2024-04-15T21:29:49.058 INFO:teuthology.orchestra.console.smithi132:Power off 2024-04-15T21:29:49.058 DEBUG:teuthology.orchestra.console.smithi132:pexpect command: ipmitool -H smithi132.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T21:29:49.072 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi187.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657350', '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-04-15 20:59:19.961955', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGHoyUc09J1g87pTb0WStfUY5z7aOPk4S2KeuPUOPTAx0XmkMw9z9pGSip5SfowreHDBb3gPOAHZV1k8laIuHHs='} 2024-04-15T21:29:49.081 DEBUG:teuthology.orchestra.console.smithi132:power off output: Chassis Power Control: Down/Off 2024-04-15T21:29:49.081 DEBUG:teuthology.orchestra.console.smithi132:pexpect command: ipmitool -H smithi132.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:29:49.106 INFO:teuthology.orchestra.console.smithi133:Power off 2024-04-15T21:29:49.106 DEBUG:teuthology.orchestra.console.smithi133:pexpect command: ipmitool -H smithi133.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T21:29:49.116 DEBUG:teuthology.orchestra.console.smithi132:check power output: Chassis Power is on 2024-04-15T21:29:49.129 DEBUG:teuthology.orchestra.console.smithi133:power off output: Chassis Power Control: Down/Off 2024-04-15T21:29:49.129 DEBUG:teuthology.orchestra.console.smithi133:pexpect command: ipmitool -H smithi133.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:29:49.148 INFO:teuthology.orchestra.console.smithi187:Power off 2024-04-15T21:29:49.148 DEBUG:teuthology.orchestra.console.smithi187:pexpect command: ipmitool -H smithi187.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T21:29:49.157 DEBUG:teuthology.orchestra.console.smithi133:check power output: Chassis Power is on 2024-04-15T21:29:49.170 DEBUG:teuthology.orchestra.console.smithi187:power off output: Chassis Power Control: Down/Off 2024-04-15T21:29:49.170 DEBUG:teuthology.orchestra.console.smithi187:pexpect command: ipmitool -H smithi187.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:29:49.194 DEBUG:teuthology.orchestra.console.smithi187:check power output: Chassis Power is on 2024-04-15T21:29:53.117 DEBUG:teuthology.orchestra.console.smithi132:pexpect command: ipmitool -H smithi132.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:29:53.158 DEBUG:teuthology.orchestra.console.smithi133:pexpect command: ipmitool -H smithi133.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:29:53.194 DEBUG:teuthology.orchestra.console.smithi187:pexpect command: ipmitool -H smithi187.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:29:53.227 DEBUG:teuthology.orchestra.console.smithi132:check power output: Chassis Power is on 2024-04-15T21:29:53.268 DEBUG:teuthology.orchestra.console.smithi133:check power output: Chassis Power is on 2024-04-15T21:29:53.303 DEBUG:teuthology.orchestra.console.smithi187:check power output: Chassis Power is on 2024-04-15T21:29:57.230 DEBUG:teuthology.orchestra.console.smithi132:pexpect command: ipmitool -H smithi132.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:29:57.269 DEBUG:teuthology.orchestra.console.smithi133:pexpect command: ipmitool -H smithi133.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:29:57.304 DEBUG:teuthology.orchestra.console.smithi187:pexpect command: ipmitool -H smithi187.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:29:57.340 DEBUG:teuthology.orchestra.console.smithi132:check power output: Chassis Power is off 2024-04-15T21:29:57.379 DEBUG:teuthology.orchestra.console.smithi133:check power output: Chassis Power is off 2024-04-15T21:29:57.414 DEBUG:teuthology.orchestra.console.smithi187:check power output: Chassis Power is on 2024-04-15T21:29:57.441 INFO:teuthology.orchestra.console.smithi132:Power off completed 2024-04-15T21:29:57.479 INFO:teuthology.orchestra.console.smithi133:Power off completed 2024-04-15T21:30:01.421 DEBUG:teuthology.orchestra.console.smithi187:pexpect command: ipmitool -H smithi187.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:30:01.532 DEBUG:teuthology.orchestra.console.smithi187:check power output: Chassis Power is off 2024-04-15T21:30:01.632 INFO:teuthology.orchestra.console.smithi187:Power off completed 2024-04-15T21:30:01.736 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/ubuntu_22.04 agent/on mon_election/classic task/test_set_mon_crush_locations} duration: 1323.525532245636 failure_reason: '"2024-04-15T21:22:26.389324+0000 mon.a (mon.0) 437 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON)" in cluster log' flavor: default owner: scheduled_teuthology@teuthology success: false 2024-04-15T21:30:01.737 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-15T21:30:01.824 INFO:teuthology.run:FAIL